:root {
  --red: #d5091a;
  --red-dark: #95000d;
  --ink: #17191f;
  --muted: #69707d;
  --line: #eceef3;
  --soft: #fff4f5;
  --paper: #ffffff;
  --dark: #111318;
  --shadow: 0 24px 70px rgba(24, 26, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 224, 232, 0.85);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #343946;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px rgba(213, 9, 26, 0.25);
}

.button-ghost {
  color: var(--red-dark);
  background: #fff;
  border: 1px solid rgba(213, 9, 26, 0.22);
}

.button-light {
  color: var(--red-dark);
  background: #fff;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 9, 26, 0.14), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff8f8 44%, #f5f7fb 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: min(760px, calc(100svh - 92px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 44px;
  padding: 40px 0 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.5vw, 4.75rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #434958;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.voucher-card {
  width: min(460px, 100%);
  padding: 18px;
  border: 1px solid rgba(213, 9, 26, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(110, 10, 20, 0.1);
}

.voucher-card span,
.voucher-card small {
  display: block;
  color: var(--muted);
}

.voucher-card strong {
  display: block;
  margin: 6px 0;
  color: var(--red);
  font-size: 2rem;
  letter-spacing: 0.12em;
}

.hero-visual {
  position: relative;
  min-height: min(590px, calc(100svh - 170px));
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(410px, 88%);
  aspect-ratio: 1;
  bottom: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3548, #791019);
  box-shadow: 0 38px 90px rgba(166, 0, 14, 0.28);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  max-height: min(620px, calc(100svh - 120px));
  object-fit: contain;
  filter: drop-shadow(0 32px 36px rgba(40, 30, 36, 0.25));
}

.stat-card {
  position: absolute;
  z-index: 2;
  width: 172px;
  padding: 16px;
  border-radius: 22px;
  color: #fff;
  background: rgba(18, 20, 26, 0.88);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.stat-card-top {
  top: 100px;
  right: 2%;
}

.stat-card-bottom {
  left: 0;
  bottom: 118px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.intro-grid,
.pricing-grid,
.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.feature-card,
.pricing-card,
.commission-grid article,
.conclusion-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(30, 33, 42, 0.07);
}

.feature-card {
  padding: 28px;
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--red);
  font-weight: 850;
}

.feature-card h3,
.pricing-card h3,
.commission-grid h3,
.conclusion-card h3 {
  margin: 20px 0 10px;
  font-size: 1.25rem;
}

.feature-card p,
.commission-grid p,
.pricing-card li,
.conclusion-card li,
.promo-content p,
.legal-content p,
.final-cta p,
.accordion-content p {
  color: var(--muted);
  line-height: 1.75;
}

.promo-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 42px;
}

.promo-media {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.promo-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.promo-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.promo-content .button {
  margin-top: 16px;
}

.commission-section,
.logic-section,
.testimonials-section,
.video-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: #f7f8fb;
}

.video-section {
  background: #fff;
}

.sound-toggle {
  display: none;
  min-height: 44px;
  margin: 18px auto 0;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px rgba(213, 9, 26, 0.22);
  font-weight: 850;
  cursor: pointer;
}

.sound-toggle.active {
  background: linear-gradient(135deg, #17191f, #3a3f49);
}

.tabs {
  width: min(900px, 100%);
  margin: 0 auto;
}

.tab-list {
  display: flex;
  gap: 8px;
  width: min(420px, 100%);
  margin: 0 auto 22px;
  padding: 6px;
  border-radius: 999px;
  background: var(--dark);
}

.tab-button {
  flex: 1;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.tab-button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #f15c65);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.commission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commission-grid article {
  padding: 28px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
}

.pricing-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #1a1013, #b50012);
  transform: translateY(-14px);
}

.pricing-card.featured .period,
.pricing-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

.price small {
  font-size: 1rem;
}

.period {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-card ul,
.conclusion-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 10px;
  padding: 0;
  list-style: none;
}

.pricing-card li::before,
.conclusion-card li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--red);
  font-weight: 900;
}

.pricing-card.featured li::before {
  color: #fff;
}

.pricing-card .muted {
  opacity: 0.58;
}

.pricing-card .button {
  margin-top: auto;
}

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--red-dark);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.accordion-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.accordion-header {
  width: 100%;
  min-height: 72px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.accordion-header strong {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.accordion-content {
  display: none;
  padding: 0 22px 22px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-header strong {
  transform: rotate(45deg);
}

.conclusion-card {
  width: min(900px, 100%);
  margin: 24px auto 0;
  padding: 28px;
}

.testimonial-carousel {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 4px 34px;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track img {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(24, 26, 32, 0.18);
}

.carousel-button {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 19, 24, 0.78);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(30, 33, 42, 0.08);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(213, 9, 26, 0.16), rgba(17, 19, 24, 0.12)),
    #16181f;
}

.video-frame::before {
  content: "Video MOVA";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.video-card h3 {
  margin: 14px 6px 4px;
  font-size: 1rem;
}

.legal-card {
  display: grid;
  grid-template-columns: 0.8fr 0.7fr;
  align-items: center;
  gap: 36px;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-card img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 22px;
  background: #f7f8fb;
}

.legal-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #14161d, #b50012);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .eyebrow {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #19b458;
  box-shadow: 0 18px 36px rgba(25, 180, 88, 0.34);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    border-color: rgba(213, 9, 26, 0.24);
    background: #fff5f6;
    box-shadow: 0 10px 24px rgba(213, 9, 26, 0.12);
  }

  .nav-toggle span {
    background: var(--red-dark);
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(213, 9, 26, 0.14);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 70;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--ink);
    font-weight: 850;
  }

  .nav-links a:hover {
    color: #fff;
    background: var(--red);
  }

  .nav-cta {
    display: none;
  }

  .hero-inner,
  .promo-section,
  .legal-card {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual img {
    max-height: 420px;
  }

  .intro-grid,
  .pricing-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav {
    min-height: 72px;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-color: transparent;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: 0 14px 30px rgba(213, 9, 26, 0.28);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .nav-links {
    top: 72px;
  }

  .hero {
    background:
      radial-gradient(circle at 12% 12%, rgba(213, 9, 26, 0.18), transparent 34%),
      linear-gradient(135deg, #fff 0%, #fff5f6 52%, #f8fafc 100%);
  }

  .hero-inner {
    min-height: auto;
    display: block;
    padding: 34px 0 54px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    margin: 20px 0;
  }

  .voucher-card {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
  }

  .voucher-card strong {
    font-size: 1.6rem;
  }

  .voucher-card small {
    display: none;
  }

  .hero-visual {
    display: flex;
    position: relative;
    min-height: 360px;
    margin-top: 26px;
    overflow: hidden;
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 38%, rgba(213, 9, 26, 0.22), transparent 42%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 231, 234, 0.88));
    box-shadow: 0 24px 54px rgba(166, 0, 14, 0.16);
  }

  .hero-visual::before {
    width: 250px;
    bottom: 22px;
    opacity: 0.95;
  }

  .hero-visual img {
    max-height: 390px;
    margin-inline: auto;
  }

  .stat-card {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .commission-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .pricing-card,
  .conclusion-card,
  .legal-card,
  .final-cta {
    border-radius: 22px;
    padding: 22px;
  }

  .testimonial-track img {
    flex-basis: 78%;
  }

  .video-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .sound-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

  .carousel-button {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }
}
