﻿@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #000000;
  --bg-2: #000000;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 183, 0, 0.42);
  --text: #ffffff;
  --muted: #92929d;
  --soft: #c7c7cf;
  --orange: #e48100;
  --orange-2: #f0a000;
  --gold: #ffc400;
  --cyan: #55d8ff;
  --green: #5ee18c;
  --danger: #ff5d5d;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 44px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --glow:
    inset 4px 4px 10px rgba(255, 212, 60, 0.25),
    inset -4px -4px 12px rgba(128, 60, 0, 0.26);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

::selection {
  background: rgba(255, 196, 0, 0.28);
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: #000000;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  /* Removida animação gridDrift para melhorar a fluidez */
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 40px;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition:
    background 300ms ease,
    backdrop-filter 300ms ease,
    border-bottom 300ms ease,
    padding 300ms ease;
  animation: navDrop 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 40px;
}

.nav-shell {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(240, 160, 0, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links-center {
  display: flex;
  align-items: center;
  gap: 26px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: #150c02;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(
    67.54deg,
    var(--gold) 0%,
    var(--orange-2) 50%,
    var(--orange) 100%
  );
  box-shadow: var(--glow);
  border: none;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
  z-index: 1;
}

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

.nav-cta::before,
.button-primary::before,
.button-secondary::before {
  content: "";
  height: 100%;
  width: 100px;
  position: absolute;
  top: 0;
  left: -150px;
  background: #ffffff;
  box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  mix-blend-mode: plus-lighter;
  pointer-events: none;
  animation: brilho 3s linear infinite;
  z-index: 10;
}

@keyframes brilho {
  0% {
    opacity: 0;
    left: -150px;
  }
  20% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
    left: 50%;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    left: 150%;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-dark {
  position: relative;
  overflow: hidden;
}

.section-light {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #111111;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-light p,
.section-light .section-heading h2,
.section-light .section-copy p:not(.eyebrow) {
  color: #111111;
}

.section-light .flip-card h2,
.section-light .flip-card h3,
.section-light .flip-card p {
  color: #ffffff;
}

.section-light .eyebrow {
  color: var(--orange);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.hero {
  padding: 300px 0 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1200px;
  background-image:
    radial-gradient(
      ellipse 80% 70% at 50% 0%,
      rgba(255, 140, 30, 0.45),
      transparent 70%
    ),
    radial-gradient(
      ellipse 120% 100% at 50% -10%,
      rgba(200, 70, 10, 0.3),
      transparent 70%
    );
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(103, 231, 154, 0.7);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 auto;
  max-width: 930px;
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--soft);
  font-size: 1.18rem;
  line-height: 1.75;
  font-weight: 500;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .button-primary {
  height: 80px;
  padding: 0 54px;
  font-size: 1.15rem;
  border-radius: 34px;
}

.button-primary,
.button-secondary {
  position: relative;
  overflow: hidden;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 0 40px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
  z-index: 1;
}

.button-primary {
  color: #150c02;
  background: linear-gradient(
    67.54deg,
    var(--gold) 0%,
    var(--orange-2) 25.48%,
    var(--orange) 62.5%,
    #cc7300 100%
  );
  box-shadow: var(--glow);
  border: none;
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.trust-row {
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(14px);
}

.product-stage {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

.dashboard-mockup {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(10, 10, 11, 0.9);
  box-shadow:
    var(--shadow),
    0 0 70px rgba(255, 183, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  padding: 18px;
  backdrop-filter: blur(12px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 150ms ease-out,
    border-color 300ms ease;
}

.dashboard-mockup::before,
.dashboard-mockup::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dashboard-mockup::before {
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.16),
    transparent 16%,
    transparent 76%,
    rgba(255, 196, 0, 0.18)
  );
  mask-image: linear-gradient(#000, #000);
  opacity: 0.75;
}

.dashboard-mockup::after {
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: skewX(-18deg);
  /* Animação dashboardSweep removida por causar repaints custosos */
}

.dashboard-mockup:hover {
  border-color: rgba(255, 196, 0, 0.26);
}

.dashboard-real {
  padding: 10px;
}

.real-dashboard-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: #050506;
  aspect-ratio: 1893 / 785;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 24px 68px rgba(0, 0, 0, 0.46);
}

.real-dashboard-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      transparent 18%,
      transparent 70%,
      rgba(0, 0, 0, 0.18)
    ),
    linear-gradient(
      90deg,
      rgba(255, 196, 0, 0.08),
      transparent 18%,
      transparent 78%,
      rgba(255, 196, 0, 0.06)
    );
}

.real-dashboard-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dashboard-caption {
  position: absolute;
  z-index: 4;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(5, 5, 6, 0.54);
  backdrop-filter: blur(8px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.dashboard-caption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.dashboard-caption strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: right;
}

.mockup-topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 18px;
}

.mockup-topbar div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-topbar strong {
  font-size: 1.08rem;
}

.mockup-topbar span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.mockup-topbar button {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--orange-2),
    var(--orange)
  );
  color: #150c02;
  font-weight: 900;
  padding: 12px 16px;
  box-shadow: var(--glow);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 16px;
}

.mockup-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(255, 255, 255, 0.035);
  padding: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.mockup-panel::after,
.step-card::after,
.category-card::after,
.feature-card::after,
.compare-card::after,
.audience-card::after,
.bonus-card::after,
.offer-shell::after,
.faq-item::after {
  content: "";
  position: absolute;
  left: -90%;
  top: 0;
  width: 56%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.055),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-panel:hover::after,
.step-card:hover::after,
.category-card:hover::after,
.feature-card:hover::after,
.compare-card:hover::after,
.audience-card:hover::after,
.bonus-card:hover::after,
.offer-shell:hover::after,
.faq-item:hover::after {
  left: 130%;
}

.panel-large {
  grid-row: span 2;
}

.panel-heading,
.store-hero,
.metrics-panel,
.flow-panel {
  display: flex;
  flex-direction: column;
}

.panel-heading {
  gap: 6px;
  margin-bottom: 16px;
}

.panel-heading span,
.mini-label,
.store-stack span,
.compare-card span,
.bonus-card span {
  color: var(--orange-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-heading strong {
  font-size: 1.25rem;
}

.store-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}

.store-hero {
  position: relative;
  justify-content: flex-end;
  min-height: 260px;
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(165deg, rgba(240, 160, 0, 0.24), rgba(255, 196, 0, 0.08)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48)), #111113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.store-hero::before {
  content: "slot para imagem real";
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255, 196, 0, 0.22);
  border-radius: 18px;
  opacity: 0.55;
}

.store-hero span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.store-hero strong {
  margin-top: 10px;
  font-size: 1.55rem;
  line-height: 1.14;
}

.store-products {
  display: grid;
  gap: 12px;
}

.store-products article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    background 260ms ease;
}

.store-products article:hover {
  transform: translateX(4px);
  border-color: rgba(255, 196, 0, 0.24);
  background: rgba(255, 255, 255, 0.065);
}

.product-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  font-weight: 900;
  color: #050506;
}

.badge-blue {
  background: linear-gradient(135deg, var(--cyan), #c8f4ff);
}

.badge-green {
  background: linear-gradient(135deg, var(--green), #e8ffef);
}

.badge-gold {
  background: linear-gradient(135deg, var(--gold), #fff1c6);
}

.store-products strong,
.store-products small {
  display: block;
}

.store-products small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.metrics-panel {
  min-height: 190px;
  justify-content: space-between;
}

.metrics-panel strong {
  font-size: 2.5rem;
  margin-top: 10px;
}

.metric-bars {
  height: 74px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.metric-bars span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 0 16px rgba(240, 160, 0, 0.3);
  animation: barPulse 3.8s ease-in-out infinite;
}

.metric-bars span:nth-child(2) {
  animation-delay: -0.7s;
}

.metric-bars span:nth-child(3) {
  animation-delay: -1.4s;
}

.metric-bars span:nth-child(4) {
  animation-delay: -2.1s;
}

.metric-bars span:nth-child(5) {
  animation-delay: -2.8s;
}

.flow-panel {
  min-height: 190px;
  justify-content: space-between;
}

.flow-panel ol {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.flow-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 800;
}

.flow-panel li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050506;
  background: var(--gold);
  font-size: 0.8rem;
}

section:not(.hero) {
  padding: 112px 0;
}

.section-dark:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(
      90deg,
      rgba(255, 196, 0, 0.04),
      transparent 28%,
      transparent 72%,
      rgba(255, 196, 0, 0.035)
    ),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size:
    auto,
    42px 42px,
    42px 42px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 18%, transparent 82%);
}

section.product-showcase {
  padding: 0 0 76px;
}

.section-band {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading::before {
  content: "";
  display: block;
  width: min(520px, 90%);
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 196, 0, 0.44),
    transparent
  );
}

.section-heading.no-line::before {
  display: none;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
}

.glass-pill span {
  color: var(--orange-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-copy h2,
.section-heading h2,
.fomo-copy h2,
.offer-copy h2,
.guarantee-box h2,
.final-cta h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.08;
  font-weight: 800;
}

.section-copy p:not(.eyebrow),
.pain-copy p,
.fomo-copy p,
.offer-copy p,
.guarantee-box p:not(.eyebrow),
.final-cta p {
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 500;
}

.perspective-box {
  perspective: 2000px;
  width: 100%;
  height: 480px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flip-card-front {
  background: #050506;
  border: 1px solid var(--line);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.4);
}

.flip-front-bg {
  position: absolute;
  inset: 0;
}
.flip-front-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 300ms ease;
}
.flip-card:hover .flip-front-bg img {
  opacity: 0.8;
}

.flip-front-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.flip-front-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}
.flip-front-content p {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 4px 0 0;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #050506;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--orange-2);
}

.back-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  z-index: 10;
}
.back-text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
  border-left: 2px solid var(--orange-2);
  padding-left: 20px;
  margin-top: 40px;
}

.footer-line {
  width: 48px;
  height: 4px;
  background-color: var(--orange-2);
  margin-bottom: 16px;
}
.footer-title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.footer-subtitle {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.steps.perspective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 820px) {
  .steps.perspective-grid {
    grid-template-columns: 1fr;
  }
}

.pain-copy {
  display: grid;
  gap: 20px;
}

.steps,
.category-grid,
.feature-grid,
.comparison-grid,
.audience-grid,
.bonus-grid {
  display: grid;
  gap: 18px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.category-card,
.feature-card,
.compare-card,
.audience-card,
.bonus-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.022)
    ),
    var(--panel);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-width: 0;
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.step-card:hover,
.category-card:hover,
.feature-card:hover,
.bonus-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 183, 0, 0.36);
  background: var(--panel-strong);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 196, 0, 0.08);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(240, 160, 0, 0.13);
  color: var(--orange-2);
  border: 1px solid rgba(255, 183, 0, 0.3);
  font-weight: 900;
  margin-bottom: 28px;
}

.step-card h3,
.category-card h3,
.feature-card h3,
.audience-card h3,
.bonus-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.step-card p,
.category-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.features-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 1024px) {
  .features-layout-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .col-left {
    margin-top: 48px;
  }
  .col-right {
    justify-content: center;
    height: 100%;
  }
}

.new-category-card {
  background: #151515;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #2a2a2a;
  transition: all 700ms ease-out;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.new-category-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.new-category-icon-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.new-category-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.new-category-card p {
  color: #a1a1aa;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.mockup-frame {
  border-radius: 34px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 540px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mockup-dark {
  background: #1d1d1d;
}

.mockup-blue {
  background: #3ebeff;
}

.mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opacity-0 {
  opacity: 0;
}

.translate-y-8 {
  transform: translateY(32px);
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes subtle-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.is-floating {
  animation: subtle-float 5s ease-in-out infinite;
  opacity: 1 !important;
  transform: none;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 205px;
}

.comparison-grid,
.audience-grid {
  grid-template-columns: repeat(2, 1fr);
}

.compare-card {
  padding: 34px;
}

.compare-card.active {
  border-color: var(--line-strong);
  background:
    linear-gradient(
      145deg,
      rgba(240, 160, 0, 0.14),
      rgba(255, 255, 255, 0.035)
    ),
    var(--panel);
}

.compare-card.muted {
  opacity: 0.82;
}

.compare-card ul,
.audience-card ul,
.offer-list ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.compare-card li,
.audience-card li,
.offer-list li {
  position: relative;
  padding-left: 24px;
  color: var(--soft);
  line-height: 1.65;
  font-weight: 600;
}

.compare-card li::before,
.audience-card li::before,
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-2);
}

.compare-card.muted li::before,
.audience-card.outline li::before {
  background: var(--danger);
}

.fomo-section {
  background:
    linear-gradient(90deg, rgba(240, 160, 0, 0.16), transparent 42%),
    linear-gradient(180deg, #050506, #09090a);
}

.fomo-copy {
  max-width: 820px;
}

.fomo-copy p {
  max-width: 660px;
  margin: 24px 0 30px;
}

.demo-section .section-copy p:not(.eyebrow) {
  margin-top: 24px;
}

.store-stack {
  display: grid;
  gap: 16px;
}

.store-stack article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.store-stack article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 196, 0, 0.48),
    transparent
  );
}

.store-stack article:nth-child(2) {
  transform: translateX(34px);
  border-color: rgba(255, 183, 0, 0.3);
}

.store-stack article:nth-child(3) {
  transform: translateX(68px);
}

.store-stack strong,
.store-stack small {
  display: block;
}

.store-stack strong {
  margin-top: 8px;
  font-size: 1.35rem;
}

.store-stack small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.audience-card {
  padding: 36px;
}

.audience-card.outline {
  background: rgba(255, 255, 255, 0.018);
}

.offer-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      140deg,
      rgba(240, 160, 0, 0.16),
      rgba(255, 255, 255, 0.04) 48%,
      rgba(255, 196, 0, 0.05)
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.offer-copy {
  padding: 26px;
}

.offer-copy p {
  margin: 22px 0 30px;
}

.offer-list {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
}

.offer-list h3 {
  margin: 0;
  font-size: 1.45rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  padding: 0 10px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 555px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 196, 0, 0.08), transparent 34%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition:
    transform 300ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  left: -90%;
  top: 0;
  width: 56%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover::after {
  left: 130%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 196, 0, 0.28);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(255, 196, 0, 0.08);
}

.pricing-card.featured {
  border: 2px solid var(--line-strong);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 196, 0, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(240, 160, 0, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 58px rgba(255, 196, 0, 0.16);
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: translateY(-16px);
}

.popular-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 22px;
  border-radius: 0 0 16px 16px;
  color: #150c02;
  background: linear-gradient(135deg, var(--gold), var(--orange-2));
  box-shadow: var(--glow);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-header {
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 1.85rem;
}

.pricing-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 30px 0 22px;
}

.price small {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.08rem;
}

.price strong {
  color: #fff;
  font-size: 5.2rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 0 28px rgba(255, 196, 0, 0.12);
}

.price span {
  align-self: flex-end;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-kicker,
.price-note {
  margin: 28px 0 0;
  color: var(--soft);
  font-weight: 850;
}

.price-note {
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.installment-price {
  align-items: baseline;
  gap: 7px;
  margin: 8px 0 16px;
}

.installment-price span {
  align-self: baseline;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  text-transform: none;
}

.installment-price small {
  margin-top: 0;
}

.installment-price strong {
  font-size: clamp(3.8rem, 5.2vw, 5.2rem);
  letter-spacing: -0.03em;
}

.monthly-price {
  margin-top: 40px;
}

.pricing-benefits {
  width: 100%;
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.pricing-benefits li {
  position: relative;
  min-height: 28px;
  padding-left: 38px;
  color: var(--soft);
  line-height: 1.55;
  font-weight: 600;
}

.pricing-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 196, 0, 0.08);
  box-shadow: 0 0 16px rgba(255, 196, 0, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.pricing-card .button-primary,
.pricing-card .button-secondary {
  margin-top: auto;
  width: 100%;
}

.bonus-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 22px;
}

.bonus-card {
  min-height: 170px;
  padding: 24px;
}

.bonus-card h3 {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.guarantee-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
  padding: 42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.guarantee-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--green), #e8ffef);
  color: #061107;
  font-weight: 900;
}

.guarantee-box p:not(.eyebrow) {
  margin: 22px 0 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition:
    border-color 260ms ease,
    background 260ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(255, 196, 0, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  font-size: 1.05rem;
}

.faq-item button::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #050506;
  background: var(--orange-2);
  font-weight: 900;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open div {
  grid-template-rows: 1fr;
}

.faq-item p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
  color: var(--soft);
  line-height: 1.7;
  font-weight: 600;
}

.faq-item.is-open p {
  padding-bottom: 24px;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, transparent, rgba(240, 160, 0, 0.1)), #050506;
}

.final-cta p {
  max-width: 620px;
  margin: 22px auto 30px;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050506;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.footer button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible:nth-child(2) {
  transition-delay: 80ms;
}

.reveal.is-visible:nth-child(3) {
  transition-delay: 140ms;
}

.reveal.is-visible:nth-child(4) {
  transition-delay: 200ms;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gridDrift {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      46px 46px,
      46px 46px;
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.13;
    transform: scale(1);
  }
  50% {
    opacity: 0.24;
    transform: scale(1.04);
  }
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(28px, 18px, 0) rotate(-5deg);
  }
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes buttonGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes dashboardSweep {
  0%,
  54% {
    left: -30%;
  }
  82%,
  100% {
    left: 108%;
  }
}

@keyframes barPulse {
  0%,
  100% {
    opacity: 0.86;
    filter: saturate(0.9);
  }
  50% {
    opacity: 1;
    filter: saturate(1.25);
  }
}

.pain-section-new {
  /* Fundo escuro principal */
  background: radial-gradient(circle at 50% 50%, #1a1105 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 250px;
  padding-top: 100px;
}

/* Fundo branco curvo na parte inferior */
.pain-curve-bg {
  position: absolute;
  bottom: -5%;
  left: -10%;
  width: 120%;
  height: 50%;
  background-color: #ffffff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  z-index: 0;
}

/* Fundo branco curvo na parte superior (invertido) */
.pain-curve-bg-bottom {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 120%;
  height: 50%;
  background-color: #ffffff;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  z-index: 0;
}

.pain-container {
  background: linear-gradient(
    180deg,
    rgba(40, 28, 15, 0.2) 0%,
    rgba(10, 10, 10, 0.4) 100%
  );
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 40px;
  max-width: 960px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
  border: 1px solid rgba(254, 173, 53, 0.4);
}

.pain-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(254, 173, 53, 0.15) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  z-index: -1;
}

.pain-left-content,
.pain-right-content {
  flex: 1;
  padding: 20px;
  z-index: 1;
}

.pain-left-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pain-product-image {
  max-width: 100%;
  height: auto;
}

.pain-right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-badge {
  background-color: rgba(254, 173, 53, 0.2);
  color: #fead35;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.pain-badge::before {
  content: "•";
  margin-right: 8px;
}

.pain-right-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.pain-right-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.pain-highlight-text {
  color: #fead35;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pain-container {
    flex-direction: column;
    padding: 20px;
    width: 95%;
  }
  .pain-left-content,
  .pain-right-content {
    padding: 10px;
  }
  .pain-right-content h2 {
    font-size: 28px;
  }
  .pain-curve-bg {
    bottom: -5%;
    height: 35%;
  }
  .pain-curve-bg-bottom {
    top: -5%;
    height: 35%;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 2.8rem;
  }

  .section-copy h2,
  .section-heading h2,
  .fomo-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .final-cta h2 {
    font-size: 2.55rem;
  }

  .category-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
  }

  .pricing-card {
    padding: 30px;
  }

  .installment-price strong {
    font-size: clamp(3rem, 4.4vw, 4.3rem);
  }

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

@media (max-width: 820px) {
  .site-header {
    top: 0;
    padding: 16px 20px;
  }

  .site-header.is-scrolled {
    padding: 12px 20px;
  }

  .nav-shell {
    min-height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 8, 9, 0.94);
    backdrop-filter: blur(22px);
  }

  .nav-links-center {
    position: relative;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .nav-links a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero {
    padding-top: 180px;
    padding-bottom: 22px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.12;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .product-stage {
    margin-top: 0;
  }

  .dashboard-mockup {
    border-radius: 28px;
    padding: 12px;
  }

  .dashboard-real {
    padding: 8px;
  }

  .real-dashboard-frame {
    border-radius: 22px;
  }

  .dashboard-caption {
    position: static;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-radius: 18px;
  }

  .dashboard-caption strong {
    text-align: left;
  }

  .mockup-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mockup-grid,
  .store-preview,
  .two-column,
  .offer-shell,
  .comparison-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .store-hero {
    min-height: 210px;
  }

  section:not(.hero) {
    padding: 80px 0;
  }

  section.product-showcase {
    padding: 0 0 64px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-copy h2,
  .section-heading h2,
  .fomo-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .final-cta h2 {
    font-size: 2.05rem;
  }

  .category-grid,
  .feature-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
  }

  .pricing-grid {
    padding: 0;
  }

  .pricing-card,
  .pricing-card.featured,
  .pricing-card.featured:hover {
    min-height: auto;
    transform: none;
  }

  .store-stack article:nth-child(2),
  .store-stack article:nth-child(3) {
    transform: none;
  }

  .offer-shell,
  .offer-copy {
    padding: 22px;
  }

  .guarantee-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section-inner,
  .hero-content,
  .product-stage,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 134px;
  }

  .brand-logo {
    height: 34px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .trust-row {
    justify-content: flex-start;
  }

  .mockup-panel,
  .step-card,
  .category-card,
  .feature-card,
  .compare-card,
  .audience-card,
  .pricing-card,
  .bonus-card {
    border-radius: 22px;
    padding: 22px;
  }

  .popular-ribbon {
    position: static;
    transform: none;
    margin: -4px 0 16px;
    border-radius: 999px;
  }

  .price strong {
    font-size: 4rem;
  }

  .pricing-benefits li {
    padding-left: 34px;
  }

  .store-products article {
    align-items: flex-start;
  }

  .metrics-panel strong {
    font-size: 2rem;
  }

  .section-copy h2,
  .section-heading h2,
  .fomo-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .final-cta h2 {
    font-size: 1.78rem;
  }

  .faq-item button {
    font-size: 1rem;
    padding: 18px;
  }

  .faq-item p {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Marquee Section */
.marquee-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  cursor: default;
}

.marquee-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.marquee-item:hover .marquee-icon {
  opacity: 1;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-item {
    font-size: 1.2rem;
  }
  .marquee-icon {
    width: 48px;
    height: 48px;
  }
  .marquee-content {
    gap: 40px;
    padding-right: 40px;
  }
  .marquee-container::before,
  .marquee-container::after {
    width: 60px;
  }
}

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }

  .pricing-card,
  .pricing-card.featured,
  .pricing-card.featured:hover {
    min-height: 430px;
    padding: 16px 10px;
    border-radius: 18px;
    transform: none;
  }

  .popular-ribbon {
    font-size: 0.5rem;
    padding: 5px 12px;
    margin: -6px auto 10px;
  }

  .pricing-tag {
    margin-bottom: 10px;
    padding: 5px 7px;
    font-size: 0.48rem;
  }

  .pricing-header {
    padding-bottom: 14px;
  }

  .pricing-card h3 {
    font-size: 1.05rem;
  }

  .pricing-header p,
  .pricing-benefits li,
  .price-kicker,
  .price-note {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .price {
    gap: 4px;
    margin: 18px 0 14px;
  }

  .monthly-price {
    margin-top: 26px;
  }

  .price small {
    margin-top: 8px;
    font-size: 0.68rem;
  }

  .price strong {
    font-size: clamp(2.1rem, 7.5vw, 3.4rem);
    letter-spacing: -0.02em;
  }

  .price span {
    margin-bottom: 4px;
    font-size: 0.55rem;
  }

  .installment-price {
    gap: 3px;
    margin: 6px 0 10px;
  }

  .installment-price strong {
    font-size: clamp(1.65rem, 6.3vw, 2.75rem);
  }

  .installment-price span {
    font-size: 0.58rem;
  }

  .price-note {
    margin: -4px 0 14px;
  }

  .pricing-benefits {
    gap: 7px;
    margin-bottom: 18px;
  }

  .pricing-benefits li {
    min-height: 18px;
    padding-left: 20px;
  }

  .pricing-benefits li::before {
    width: 14px;
    height: 14px;
    font-size: 0.5rem;
  }

  .pricing-card .button-primary,
  .pricing-card .button-secondary {
    min-height: 34px;
    padding: 8px 6px;
    font-size: 0.6rem;
  }
}
