/* ── RESET & VARS ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #06080b;
  --bg2: #0b0e13;
  --bg3: #10141c;
  --surface: #141920;
  --surface2: #1a2030;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);

  /* Primary Theme Color: Vibrant Orange */
  --mint: #ff6a00;
  --mint-dim: #cc5500;
  --mint-glow: rgba(255, 106, 0, 0.15);
  --mint-glow2: rgba(255, 106, 0, 0.06);

  /* Accents & Text */
  --gold: #e8b84b;
  --gold-dim: rgba(232, 184, 75, 0.15);
  --white: #ffffff; /* Pure white as requested */
  --white2: #f0f4ff;
  --muted: #6b7a99;
  --muted2: #8892aa;
  --red: #ff4d6a;

  /* Typography */
  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Outfit", sans-serif;
  --ff-mono: "JetBrains Mono", monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--white2);
  line-height: 1.6;
  overflow-x: hidden;
}
/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
p {
  font-weight: 300;
  line-height: 1.75;
}
.mono {
  font-family: var(--ff-mono);
}
.mint {
  color: var(--mint);
}
.gold {
  color: var(--gold);
}
.muted {
  color: var(--muted);
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-sm {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 100px 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
@keyframes glow {
  0%,
  100% {
    /* Subtle, tight glow */
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.25);
  }
  50% {
    /* Brighter, wider radiation */
    box-shadow: 0 0 35px rgba(255, 106, 0, 0.5);
  }
}
@keyframes borderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 8, 11, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo span {
  color: var(--mint);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted2);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--mint);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: #ff8533;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(0, 214, 143, 0.04) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 70%,
      rgba(232, 184, 75, 0.03) 0%,
      transparent 60%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 100%
  );
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-glow2);
  border: 1px solid rgba(0, 214, 143, 0.2);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--mint);
  display: block;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted2);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-sub strong {
  color: var(--white2);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 60px;
}
.btn-primary {
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--mint);
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  animation: glow 3s ease-in-out infinite;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 214, 143, 0.3);
}
.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  padding: 16px 0;
}
.btn-ghost:hover {
  color: var(--white);
}
.hero-trust {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeUp 0.7s 0.35s ease both;
}
.hero-trust::before {
  content: "🔒";
  font-size: 11px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  animation: fadeUp 0.7s 0.4s ease both;
  max-width: 600px;
}
.hero-stat {
  background: var(--bg2);
  padding: 24px 28px;
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span {
  color: var(--mint);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 12px 0;
  margin: 60px 0 0;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  gap: 0;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item .dot {
  color: var(--mint);
  font-size: 8px;
}

/* ── PROBLEM ── */
.problem {
  background: var(--bg);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--mint);
}
.problem h2 {
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.problem-desc {
  font-size: 16px;
  color: var(--muted2);
  margin-bottom: 32px;
}
.problem-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted2);
}
.problem-item .x {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.pain-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover::before {
  opacity: 1;
}
.pain-icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.pain-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.pain-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--bg2);
}
.how-header {
  text-align: center;
  margin-bottom: 72px;
}
.how-header h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.how-header p {
  font-size: 16px;
  color: var(--muted2);
  max-width: 500px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.step {
  background: var(--bg2);
  padding: 48px 36px;
  position: relative;
}
.step-num {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 106, 0, 0.06);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
  letter-spacing: -3px;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--mint-glow);
  border: 1px solid rgba(0, 214, 143, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
}
.step-detail {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--ff-mono);
}
.step-detail-item::before {
  content: "→";
  color: var(--mint);
  font-size: 11px;
}

/* ── RESULTS ── */
.results {
  background: var(--bg);
}
.results-header {
  text-align: center;
  margin-bottom: 64px;
}
.results-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition:
    border-color 0.3s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.case-card:hover {
  border-color: var(--mint-dim);
  transform: translateY(-3px);
}
.case-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.case-card:hover::after {
  transform: scaleX(1);
}
.case-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-glow2);
  border: 1px solid rgba(0, 214, 143, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.case-quote {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--white2);
  line-height: 1.5;
  margin-bottom: 24px;
}
.case-author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.case-author strong {
  color: var(--white2);
  display: block;
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
}
.case-metric {
  background: var(--bg2);
  padding: 14px 16px;
  text-align: center;
}
.case-metric-num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 4px;
}
.case-metric-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.results-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.result-num-card {
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
}
.result-num-card .num {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.result-num-card .num span {
  color: var(--mint);
}
.result-num-card .lbl {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── PRICING ── */
.pricing {
  background: var(--bg2);
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-card.popular {
  border-color: var(--mint-dim);
  background: var(--surface);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--mint);
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount .dollar {
  font-size: 20px;
  color: var(--muted2);
  font-weight: 500;
  margin-top: 8px;
}
.price-amount .num {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}
.price-amount .per {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-guarantee {
  font-size: 13px;
  color: var(--mint);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-guarantee::before {
  content: "⚡";
  font-size: 12px;
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted2);
}
.price-feature .check {
  color: var(--mint);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.btn-price {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-price-outline {
  color: var(--white2);
  border: 1px solid var(--border2);
}
.btn-price-outline:hover {
  background: var(--surface2);
  border-color: var(--white2);
}
.btn-price-solid {
  color: var(--bg);
  background: var(--mint);
}
.btn-price-solid:hover {
  background: #ff8533;
  box-shadow: 0 8px 30px rgba(0, 214, 143, 0.25);
}

/* GUARANTEE BANNER */
.guarantee-banner {
  margin-top: 40px;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.guarantee-icon {
  font-size: 40px;
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}
.guarantee-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--ff-display);
}
.guarantee-desc {
  font-size: 14px;
  color: var(--muted2);
}

/* ── FAQ ── */
.faq {
  background: var(--bg);
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--border2);
}
.faq-q {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white2);
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--white);
}
.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
  color: var(--muted2);
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--mint-glow);
  color: var(--mint);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 28px;
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 28px 22px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--bg2);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 214, 143, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1;
}
.final-cta h2 em {
  color: var(--mint);
  font-style: italic;
  font-weight: 300;
}
.final-cta p {
  font-size: 17px;
  color: var(--muted2);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-sub {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-sub span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(232, 184, 75, 0.2);
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 32px;
}
.scarcity::before {
  content: "⚠";
  font-size: 12px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span {
  color: var(--mint);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problem-inner {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .results-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 72px 0;
  }
}
@media (max-width: 600px) {
  .container,
  .container-sm {
    padding: 0 20px;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
  }
  nav {
    padding: 0 20px;
  }
  .case-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  .results-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}
