*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e0e;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f0ede8;
  --text-secondary: #888880;
  --text-muted: #555550;
  --accent: #c8f135;
  --accent-dark: #a8d020;
  --accent-subtle: rgba(200,241,53,0.08);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1280px;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  padding-top: calc(20px + env(safe-area-inset-top, 0px));
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img { height: 24px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #0e0e0e;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent-dark); transform: scale(1.02); }
.nav-menu-cta-item { display: none; }
.nav-cta-desktop { display: inline-block; }

.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.07); }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle-bar + .nav-toggle-bar { margin-top: 5px; }
nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #0e0e0e;
  font-weight: 500;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--accent-dark); transform: scale(1.02); }
.btn-ghost {
  color: var(--text-secondary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.hero-card-header {
  background: var(--accent-subtle);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot-row { display: flex; gap: 6px; }
.dot-r { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-title {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  margin-left: 4px;
}
.hero-card-body { padding: 24px 20px; }
/* ── ANIMATED FLIP PANE ── */
.before-after { margin-bottom: 20px; }

.ba-flip-pane {
  border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  background: #1a1a1a;
  border: 1px solid var(--border);
  transition: background 0.9s ease, border-color 0.9s ease;
  position: relative;
}
.ba-flip-pane.is-after {
  background: #0c1b03;
  border-color: rgba(200,241,53,0.22);
}
/* Shimmer sweep on transition to "after" */
.ba-flip-pane.is-after::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200,241,53,0.05), transparent);
  animation: ba-shimmer 3.5s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes ba-shimmer {
  0%   { left: -60%; }
  60%  { left: 110%; }
  100% { left: 110%; }
}

.ba-bar {
  height: 26px; flex-shrink: 0;
  display: flex; align-items: center;
  padding: 0 10px; gap: 5px;
  border-bottom: 1px solid var(--border);
  background: #222;
  transition: background 0.9s ease, border-color 0.9s ease;
  position: relative; z-index: 1;
}
.ba-flip-pane.is-after .ba-bar {
  background: rgba(200,241,53,0.05);
  border-color: rgba(200,241,53,0.12);
}
.ba-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.9s ease;
}
.ba-flip-pane.is-after .ba-dot { background: rgba(200,241,53,0.35); }
.ba-url {
  flex: 1; background: rgba(255,255,255,0.04);
  border-radius: 3px; height: 10px; margin: 0 4px;
  transition: background 0.9s;
}
.ba-flip-pane.is-after .ba-url { background: rgba(200,241,53,0.07); }

/* Inner two-column: tags left, wireframe right */
.ba-inner {
  display: flex; flex: 1; min-height: 0;
  position: relative; z-index: 1;
}
.ba-tags {
  width: 54%; padding: 10px 8px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  transition: border-color 0.9s;
}
.ba-flip-pane.is-after .ba-tags { border-color: rgba(200,241,53,0.12); }

/* ── Flip tag ── */
.ba-flip-tag {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
}
.ba-flip-tag.flipped { transform: rotateY(180deg); }
.ba-flip-face {
  font-size: 11.5px; font-family: var(--font-mono);
  letter-spacing: 0.01em; padding: 4px 8px;
  border-radius: 5px; line-height: 1.3;
  display: flex; align-items: center; gap: 5px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  white-space: nowrap;
}
.ba-flip-face::before { flex-shrink: 0; font-size: 9px; }
.ba-flip-front {
  background: rgba(255,55,45,0.15);
  color: #ff9080;
  border: 1px solid rgba(255,65,55,0.28);
}
.ba-flip-front::before { content: '✕'; color: rgba(255,75,55,0.75); }
.ba-flip-back {
  position: absolute; inset: 0;
  transform: rotateY(180deg);
  background: rgba(200,241,53,0.11);
  color: rgba(200,241,53,0.92);
  border: 1px solid rgba(200,241,53,0.22);
}
.ba-flip-back::before { content: '✓'; color: rgba(200,241,53,0.75); }

/* Sparkle glow burst on flip */
.ba-flip-tag.sparking::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 8px;
  animation: ba-spark 0.65s ease-out forwards;
  pointer-events: none; z-index: 3;
}
@keyframes ba-spark {
  0%   { box-shadow: 0 0 0 0 rgba(200,241,53,0.0); opacity: 0; transform: scale(0.85); }
  25%  { box-shadow: 0 0 10px 4px rgba(200,241,53,0.55); opacity: 1; transform: scale(1.04); }
  100% { box-shadow: 0 0 18px 8px rgba(200,241,53,0); opacity: 0; transform: scale(1.08); }
}

/* Mini wireframe (right column) */
.ba-mini-wrap {
  flex: 1; position: relative; overflow: hidden;
}
.ba-mini {
  padding: 8px; display: flex; flex-direction: column;
  gap: 4px; transition: opacity 0.7s ease;
}
.ba-mini-after-state {
  position: absolute; inset: 0;
  padding: 8px; display: flex; flex-direction: column;
  gap: 4px; opacity: 0; transition: opacity 0.7s ease;
}
.ba-flip-pane.is-after .ba-mini { opacity: 0; }
.ba-flip-pane.is-after .ba-mini-after-state { opacity: 1; }

/* Wireframe elements */
.ba-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.07); }
.ba-line-accent { background: rgba(200,241,53,0.22); }
.ba-line-w100 { width: 100%; }
.ba-line-w70  { width: 70%; }
.ba-line-w45  { width: 45%; }
.ba-line-w30  { width: 30%; }
.ba-mini-logo {
  width: 14px; height: 14px; border-radius: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  align-self: flex-end; margin-bottom: 2px;
}
.ba-mini-img {
  height: 16px; width: 85%; border-radius: 2px;
  background: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 6px,
    rgba(255,255,255,0.02) 6px, rgba(255,255,255,0.02) 12px
  );
}
.ba-mini-cta {
  height: 14px; width: 55%; border-radius: 4px;
  background: rgba(200,241,53,0.15);
  border: 1px solid rgba(200,241,53,0.18);
  margin: 2px 0;
}

/* Label transitions */
.ba-label {
  text-align: center; font-size: 10px;
  font-family: var(--font-mono);
  padding: 5px 0; letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.ba-lbl-before {
  color: var(--text-muted);
  transition: opacity 0.4s;
}
.ba-lbl-after {
  color: var(--accent);
  opacity: 0; transition: opacity 0.4s;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.ba-flip-pane.is-after .ba-lbl-before { opacity: 0; }
.ba-flip-pane.is-after .ba-lbl-after  { opacity: 1; }
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  animation: subtlePulse 3s ease-in-out infinite;
}
@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.3;
}

/* ── SOCIAL PROOF STRIP (ticker) ── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}
.proof-strip:hover .proof-ticker-track { animation-play-state: paused; }
.proof-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}
.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.proof-ticker {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
}
.proof-ticker-track {
  display: flex;
  width: max-content;
  animation: proof-ticker-marquee 38s linear infinite;
  will-change: transform;
}
@keyframes proof-ticker-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .proof-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 12px;
  }
  .proof-ticker-group--duplicate { display: none; }
  .proof-ticker-group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    max-width: 100%;
  }
}
.proof-ticker-group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
}
.proof-ticker-item {
  flex-shrink: 0;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.proof-ticker-item:hover { opacity: 1; }
.proof-ticker-wordmark {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.proof-ticker-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.15);
  opacity: 0.9;
}
.proof-ticker-item:hover .proof-ticker-logo {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── PROOF: BEFORE/AFTER + VIDEO ── */
.proof-media-section { background: #0a0a0a; padding: 100px 0; }
.proof-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.proof-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 28px;
  transition: border-color 0.2s;
}
.proof-case-card:hover { border-color: rgba(200,241,53,0.15); }
.proof-case-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.proof-case-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.proof-ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.proof-ba-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  aspect-ratio: 16 / 10;
}
.proof-ba-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-ba-label {
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 0 8px;
  color: var(--text-muted);
}
.proof-ba-label.is-after { color: var(--accent); }
.proof-case-metric {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.proof-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proof-video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 20px 24px;
}
.proof-video-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.proof-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
}
.proof-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.proof-video-caption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* click hint on before/after cards */
.proof-case-card { cursor: pointer; position: relative; }
.proof-expand-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-family: var(--font-mono);
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 12px;
  opacity: 0.6; transition: opacity 0.2s;
}
.proof-case-card:hover .proof-expand-hint { opacity: 1; }
.proof-expand-hint svg { flex-shrink: 0; }

/* ── BEFORE/AFTER LIGHTBOX ── */
.ba-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.ba-lightbox.is-open { opacity: 1; pointer-events: auto; }

.ba-lightbox-header {
  width: 100%; max-width: 960px;
  padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.ba-lightbox-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
}
.ba-lightbox-meta {
  font-size: 12px; color: var(--text-muted);
  font-family: var(--font-mono); margin-top: 4px;
}
.ba-lightbox-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text); font-size: 20px;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ba-lightbox-close:hover { background: rgba(255,255,255,0.15); }

.ba-slider-container {
  position: relative; width: 100%; max-width: 960px;
  aspect-ratio: 16 / 10; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
  user-select: none; -webkit-user-select: none;
}
.ba-slider-container img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; pointer-events: none;
}
.ba-slider-before {
  clip-path: inset(0 0 0 0);
}
.ba-slider-after {
  clip-path: inset(0 0 0 50%);
}
/* "before" is full base layer; "after" is on top, revealed from the right */
.ba-slider-handle {
  position: absolute; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
  left: 50%; transform: translateX(-50%);
  cursor: ew-resize; z-index: 3;
}
.ba-slider-handle::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(200,241,53,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ba-slider-handle-arrows {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4; pointer-events: none;
  color: #0a0a0a; font-size: 16px; font-weight: 700;
  letter-spacing: 4px;
}
.ba-slider-tag {
  position: absolute; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 100px;
  z-index: 2; pointer-events: none;
}
.ba-slider-tag.is-before {
  left: 16px; background: rgba(0,0,0,0.85);
  color: #fff; border: 1px solid rgba(255,255,255,0.25);
}
.ba-slider-tag.is-after {
  right: 16px; background: rgba(200,241,53,0.15);
  color: var(--accent); border: 1px solid rgba(200,241,53,0.2);
}

.ba-lightbox-instruction {
  margin-top: 16px; font-size: 12px;
  color: var(--text-muted); font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.06em;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .ba-slider-container { max-width: 95vw; border-radius: 12px; }
  .ba-lightbox-header { padding: 0 16px; }
  .ba-lightbox-title { font-size: 16px; }
  .ba-slider-handle::after { width: 36px; height: 36px; }
}

/* ── SECTIONS ── */
section { padding: 100px 0; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { margin-bottom: 64px; }

/* ── GROWTH LADDER ── */
.ladder-section { background: #0a0a0a; }
.ladder-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.ladder-stage {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  position: relative;
}
.ladder-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
.ladder-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--border-strong);
  color: var(--text-secondary);
  background: var(--bg-card);
  position: relative;
  z-index: 2;
}
.ladder-stage.active .ladder-num {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,241,53,0.08);
}
.ladder-line {
  width: 2px;
  flex: 1;
  background: var(--border-strong);
  margin-top: 8px;
}
.ladder-stage:last-child .ladder-line { display: none; }
.ladder-stage.active .ladder-line { background: rgba(200,241,53,0.3); }
.ladder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.ladder-card:hover { border-color: var(--border-strong); }
.ladder-stage.active .ladder-card {
  border-color: rgba(200,241,53,0.25);
  background: #0f1a02;
}
.ladder-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.ladder-stage.active .ladder-label { color: var(--accent); }
.ladder-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ladder-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 24px;
}
.ladder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ladder-tag {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
}
.ladder-stage.active .ladder-tag {
  background: rgba(200,241,53,0.06);
  border-color: rgba(200,241,53,0.15);
  color: var(--text);
}
.ladder-price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
}
.ladder-entry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,241,53,0.1);
  color: var(--accent);
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Ladder card inner layout: visual + text side by side */
.ladder-card-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.ladder-visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  aspect-ratio: 4/3;
}
.ladder-visual:has(.lv-auto) {
  aspect-ratio: 3/4;
}
.ladder-stage.active .ladder-visual {
  border-color: rgba(200,241,53,0.2);
}
.ladder-text { min-width: 0; }

/* ── Visual 1: Mini browser mockup ── */
.lv-browser {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lv-browser-bar {
  height: 24px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 4px;
}
.lv-browser-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
}
.lv-browser-url {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  margin-left: 6px;
}
.lv-browser-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #0f1f04;
  position: relative;
  overflow: hidden;
}
.lv-browser-body::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(200,241,53,0.08) 0%, transparent 100%);
  animation: browserScan 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes browserScan {
  0% { top: -40px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.lv-hero-block {
  height: 28px;
  border-radius: 4px;
  background: rgba(200,241,53,0.15);
  width: 80%;
  animation: blockFadeIn 2s ease-out infinite alternate;
}
.lv-text-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(200,241,53,0.1);
  animation: blockFadeIn 2s ease-out infinite alternate;
}
.lv-text-line:nth-child(2) { animation-delay: 0.15s; }
.lv-text-line:nth-child(3) { animation-delay: 0.3s; }
.lv-text-w100 { width: 100%; }
.lv-text-w70 { width: 70%; }
.lv-text-w50 { width: 50%; }
.lv-cta-block {
  width: 45%;
  height: 16px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.3;
  margin-top: 4px;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes blockFadeIn {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.25; transform: scaleX(1); }
  50% { opacity: 0.5; transform: scaleX(1.02); }
}
.lv-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}
.lv-grid-card {
  height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  animation: cardShimmer 3s ease-in-out infinite;
}
.lv-grid-card:nth-child(2) { animation-delay: 0.4s; }
.lv-grid-card:nth-child(3) { animation-delay: 0.8s; }
@keyframes cardShimmer {
  0%, 100% { border-color: rgba(255,255,255,0.06); }
  50% { border-color: rgba(200,241,53,0.15); }
}

/* ── Visual 2: Dashboard/analytics ── */
.lv-dashboard {
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #111;
}
.lv-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lv-dash-title {
  height: 6px;
  width: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.lv-dash-badge {
  height: 14px;
  width: 40px;
  background: rgba(200,241,53,0.15);
  border-radius: 8px;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { background: rgba(200,241,53,0.15); }
  50% { background: rgba(200,241,53,0.25); }
}
.lv-chart-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-top: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.lv-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(200,241,53,0.2);
  min-height: 8px;
  animation: barGrow 2.5s ease-out infinite alternate;
  transform-origin: bottom;
}
.lv-bar:nth-child(1) { height: 25%; animation-delay: 0s; }
.lv-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.lv-bar:nth-child(3) { height: 35%; animation-delay: 0.2s; }
.lv-bar:nth-child(4) { height: 55%; animation-delay: 0.3s; }
.lv-bar:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.lv-bar:nth-child(6) { height: 70%; animation-delay: 0.5s; }
.lv-bar:nth-child(7) { height: 65%; background: var(--accent); opacity: 0.5; animation-delay: 0.6s; }
.lv-bar:nth-child(8) { height: 85%; background: var(--accent); opacity: 0.6; animation-delay: 0.7s; }
@keyframes barGrow {
  0% { transform: scaleY(0.3); opacity: 0.3; }
  100% { transform: scaleY(1); opacity: 1; }
}
.lv-stat-row {
  display: flex;
  gap: 8px;
}
.lv-stat-box {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
}
.lv-stat-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  animation: statPulse 3s ease-in-out infinite;
}
.lv-stat-box:nth-child(2) .lv-stat-num { animation-delay: 0.5s; }
.lv-stat-box:nth-child(3) .lv-stat-num { animation-delay: 1s; }
@keyframes statPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(200,241,53,0.3); }
}
.lv-stat-label {
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Visual 3: Automation carousel ── */
.lv-auto {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #111;
  padding: 16px;
}
.lv-auto-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.lv-auto-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lv-auto-title {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lv-auto-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c8f135;
  animation: liveBlink 2s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 0.4; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 8px rgba(200,241,53,0.5); }
}
.lv-auto-counter {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
}
.lv-auto-counter span { color: #c8f135; }
.lv-auto-viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.lv-auto-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.lv-auto-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lv-auto-card.exit {
  opacity: 0;
  transform: translateY(-20px);
}
.lv-auto-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.lv-auto-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.lv-auto-card-icon.payslip { background: rgba(200,241,53,0.1); }
.lv-auto-card-icon.leads { background: rgba(96,165,250,0.1); }
.lv-auto-card-icon.outreach { background: rgba(251,146,60,0.1); }
.lv-auto-card-icon.social { background: rgba(192,132,252,0.1); }
.lv-auto-card-icon.invoice { background: rgba(52,211,153,0.1); }
.lv-auto-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.lv-auto-detail {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.lv-auto-status {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
}
.lv-auto-status.done {
  background: rgba(200,241,53,0.1);
  color: #c8f135;
}
.lv-auto-status.running {
  background: rgba(96,165,250,0.1);
  color: #60a5fa;
  animation: statusPulse 1.5s ease-in-out infinite;
}
.lv-auto-status.queued {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}
@keyframes statusPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.lv-auto-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 14px;
  margin-top: auto;
}
.lv-auto-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}
.lv-auto-dot.active {
  background: #c8f135;
  box-shadow: 0 0 6px rgba(200,241,53,0.3);
}
.lv-auto-footer {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 10px;
}
.lv-auto-saved {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  opacity: 0.7;
  animation: savedPulse 3s ease-in-out infinite;
}
@keyframes savedPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  background: var(--bg-card);
  padding: 36px 28px;
  position: relative;
  transition: background 0.2s;
}
.step:first-child { border-radius: 12px 0 0 12px; }
.step:last-child { border-radius: 0 12px 12px 0; }
.step:hover { background: var(--bg-card-hover); }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.step-visual {
  width: 100%;
  aspect-ratio: 4/3;
  background: #111;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step-arrow {
  position: absolute;
  top: 50%; right: -18px;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  z-index: 2;
}
.step:last-child .step-arrow { display: none; }

/* Step 1: Research — magnifying glass scanning page elements */
.sv-research {
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.sv-research-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
}
.sv-research-line:nth-child(1) { width: 75%; }
.sv-research-line:nth-child(2) { width: 100%; }
.sv-research-line:nth-child(3) { width: 60%; }
.sv-research-line:nth-child(4) { width: 85%; }
.sv-research-line:nth-child(5) { width: 45%; }
.sv-research-line:nth-child(6) { width: 90%; }
.sv-research-lens {
  position: absolute;
  width: 40px; height: 40px;
  border: 2px solid rgba(200,241,53,0.5);
  border-radius: 50%;
  animation: lensScan 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(200,241,53,0.15), inset 0 0 12px rgba(200,241,53,0.05);
}
.sv-research-lens::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 12px; height: 3px;
  background: rgba(200,241,53,0.4);
  border-radius: 2px;
  transform: rotate(45deg);
}
@keyframes lensScan {
  0% { top: 8px; left: 10px; }
  25% { top: 28px; left: 50%; }
  50% { top: 50px; left: 20%; }
  75% { top: 16px; left: 60%; }
  100% { top: 8px; left: 10px; }
}

/* Step 2: Three browser cards side by side */
.sv-three {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
}
.sv-mini-site {
  flex: 1;
  height: 85%;
  background: #0a0a0a;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.6;
  animation: siteReveal 2.4s ease-out infinite;
}
.sv-mini-site:nth-child(1) { animation-delay: 0s; }
.sv-mini-site:nth-child(2) { animation-delay: 0.4s; }
.sv-mini-site:nth-child(3) { animation-delay: 0.8s; }
@keyframes siteReveal {
  0%, 100% { opacity: 0.4; transform: scale(0.97); }
  40%, 60% { opacity: 1; transform: scale(1); }
}
.sv-mini-bar {
  height: 10px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 4px;
  gap: 2px;
}
.sv-mini-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(200,241,53,0.3);
}
.sv-mini-body {
  flex: 1;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sv-mini-hero {
  height: 14px;
  border-radius: 2px;
  background: rgba(200,241,53,0.12);
}
.sv-mini-text {
  height: 3px;
  border-radius: 1px;
  background: rgba(255,255,255,0.06);
}
.sv-mini-text:nth-child(2) { width: 80%; }
.sv-mini-text:nth-child(3) { width: 60%; }
.sv-mini-btn {
  width: 50%;
  height: 8px;
  border-radius: 2px;
  background: rgba(200,241,53,0.2);
  margin-top: 3px;
}
.sv-mini-site:nth-child(2) .sv-mini-hero { background: rgba(96,165,250,0.12); }
.sv-mini-site:nth-child(2) .sv-mini-btn { background: rgba(96,165,250,0.2); }
.sv-mini-site:nth-child(3) .sv-mini-hero { background: rgba(192,132,252,0.12); }
.sv-mini-site:nth-child(3) .sv-mini-btn { background: rgba(192,132,252,0.2); }

/* Step 3: Launch + analytics rising */
.sv-launch {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.sv-launch-domain {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sv-launch-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #c8f135;
  animation: liveBlink 2s ease-in-out infinite;
}
.sv-launch-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding-top: 6px;
  position: relative;
}
.sv-launch-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(200,241,53,0.15);
  animation: launchGrow 3s ease-out infinite alternate;
  transform-origin: bottom;
}
.sv-launch-bar:nth-child(1) { height: 15%; animation-delay: 0s; }
.sv-launch-bar:nth-child(2) { height: 22%; animation-delay: 0.1s; }
.sv-launch-bar:nth-child(3) { height: 18%; animation-delay: 0.2s; }
.sv-launch-bar:nth-child(4) { height: 30%; animation-delay: 0.3s; }
.sv-launch-bar:nth-child(5) { height: 35%; animation-delay: 0.4s; }
.sv-launch-bar:nth-child(6) { height: 42%; animation-delay: 0.5s; background: rgba(200,241,53,0.25); }
.sv-launch-bar:nth-child(7) { height: 55%; animation-delay: 0.6s; background: rgba(200,241,53,0.3); }
.sv-launch-bar:nth-child(8) { height: 50%; animation-delay: 0.7s; background: rgba(200,241,53,0.3); }
.sv-launch-bar:nth-child(9) { height: 68%; animation-delay: 0.8s; background: #c8f135; opacity: 0.4; }
.sv-launch-bar:nth-child(10) { height: 80%; animation-delay: 0.9s; background: #c8f135; opacity: 0.5; }
@keyframes launchGrow {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}
.sv-launch-stats {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.sv-launch-stat {
  flex: 1;
  text-align: center;
  padding: 4px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}
.sv-launch-stat-val {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #c8f135;
  font-weight: 600;
}
.sv-launch-stat-lbl {
  font-family: var(--font-mono);
  font-size: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Step 4: Stacked automation layers */
.sv-layers {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px;
}
.sv-layer {
  width: 85%;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  animation: layerStack 2s ease-out infinite alternate;
  transform-origin: center;
}
.sv-layer:nth-child(1) { animation-delay: 0s; }
.sv-layer:nth-child(2) { animation-delay: 0.2s; }
.sv-layer:nth-child(3) { animation-delay: 0.4s; }
.sv-layer:nth-child(4) { animation-delay: 0.6s; }
@keyframes layerStack {
  0% { opacity: 0.5; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.sv-layer-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.sv-layer:nth-child(1) .sv-layer-icon { background: rgba(200,241,53,0.12); }
.sv-layer:nth-child(2) .sv-layer-icon { background: rgba(96,165,250,0.12); }
.sv-layer:nth-child(3) .sv-layer-icon { background: rgba(251,146,60,0.12); }
.sv-layer:nth-child(4) .sv-layer-icon { background: rgba(192,132,252,0.12); }
.sv-layer-label { flex: 1; }
.sv-layer-status {
  font-size: 7px;
  color: #c8f135;
  opacity: 0.7;
}

/* ── OFFER / GUARANTEE ── */
.offer-section { background: #0a0a0a; }
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.offer-big {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.offer-big::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.12) 0%, transparent 50%);
  animation: offerShimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes offerShimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15%, 10%); }
}
.offer-big-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.5);
  margin-bottom: 16px;
}
.offer-big h3 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: #0e0e0e;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.offer-big p {
  font-size: 15px;
  color: rgba(14,14,14,0.65);
  line-height: 1.65;
  flex: 1;
}
.offer-big-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0e0e0e;
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 8px;
  margin-top: 32px;
  transition: transform 0.15s;
  width: fit-content;
}
.offer-big-cta:hover { transform: scale(1.02); }
.guarantees {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: border-color 0.3s ease;
}
.guarantee-card:hover {
  border-color: rgba(200,241,53,0.2);
}
.g-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(200,241,53,0.06);
  border: 1px solid rgba(200,241,53,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(200,241,53,0.06);
  color: #c8f135;
}
.g-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.g-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.g-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── PRICING ── */
.pricing-track-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-tabs {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 12px;
  position: relative;
}
.pricing-tab {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 7px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.25s ease;
  border: none;
  background: transparent;
  position: relative;
  z-index: 1;
}
.pricing-tab.active {
  color: #0e0e0e;
  font-weight: 500;
}
.pricing-tab:not(.active):hover {
  color: var(--text);
}
.pricing-slider {
  position: absolute;
  top: 4px; bottom: 4px;
  border-radius: 7px;
  background: var(--accent);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  box-shadow: 0 0 12px rgba(200,241,53,0.15);
}
.pricing-track-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  transition: opacity 0.2s ease;
}
.pricing-track {
  display: none;
  animation: trackFadeIn 0.35s ease-out;
}
.pricing-track.active {
  display: block;
}
@keyframes trackFadeIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.pricing-card.featured {
  border-color: var(--accent);
  background: #0f1a02;
  position: relative;
  box-shadow: 0 0 24px rgba(200,241,53,0.06), 0 8px 32px rgba(0,0,0,0.3);
}
.pricing-card.featured:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 0 32px rgba(200,241,53,0.1), 0 12px 40px rgba(0,0,0,0.4); }
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0e0e0e;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.plan-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}
.plan-price-main {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
}
.plan-price-strike {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-family: var(--font-mono);
}
.plan-savings {
  display: inline-block;
  background: rgba(200,241,53,0.1);
  color: var(--accent);
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 6px;
}
.plan-monthly {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 9px;
  color: var(--accent);
}
.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
}
.plan-btn:hover { color: var(--text); border-color: var(--text-secondary); }
.plan-btn.primary {
  background: var(--accent);
  color: #0e0e0e;
  border-color: var(--accent);
}
.plan-btn.primary:hover { background: var(--accent-dark); transform: scale(1.01); }

.pricing-special-wrap {
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-special-card {
  background: #0f1408;
  border: 1px solid rgba(200,241,53,0.15);
  border-radius: 16px;
  padding: 36px 36px 40px;
  text-align: center;
}
.pricing-special-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.25;
}
.pricing-special-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 14px;
}
.pricing-special-text:last-of-type { margin-bottom: 0; }
.pricing-special-text strong { color: var(--text); font-weight: 600; }
.pricing-special-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pricing-special-cta:hover { color: var(--accent-dark); }

/* Grow track cards */
.grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grow-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.grow-card:hover { border-color: var(--border-strong); }
.grow-card.featured {
  border-color: var(--accent);
  background: #0f1a02;
  position: relative;
}
.grow-icon {
  width: 44px; height: 44px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.grow-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.grow-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.grow-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.grow-includes li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.grow-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.grow-price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.testimonial-big {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
  transition: border-color 0.3s ease;
}
.testimonial-big:hover {
  border-color: rgba(200,241,53,0.2);
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 28px;
  opacity: 0.6;
  text-shadow: 0 0 24px rgba(200,241,53,0.15);
}
.quote-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 32px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 2px solid rgba(200,241,53,0.25);
  box-shadow: 0 0 16px rgba(200,241,53,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 500; }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.testimonials-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}
.testimonial-mini:hover {
  border-color: rgba(200,241,53,0.15);
}
.mini-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ── FINAL CTA ── */
.final-cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,241,53,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  border: 1px solid rgba(200,241,53,0.08);
  border-radius: 50%;
  animation: shapeDrift linear infinite;
}
.cta-shape:nth-child(1) {
  width: 80px; height: 80px;
  top: 15%; left: 8%;
  animation-duration: 18s;
}
.cta-shape:nth-child(2) {
  width: 120px; height: 120px;
  top: 60%; right: 5%;
  animation-duration: 22s;
  border-radius: 20%;
}
.cta-shape:nth-child(3) {
  width: 50px; height: 50px;
  top: 25%; right: 15%;
  animation-duration: 15s;
  animation-delay: -5s;
}
.cta-shape:nth-child(4) {
  width: 90px; height: 90px;
  bottom: 20%; left: 12%;
  animation-duration: 20s;
  animation-delay: -8s;
  border-radius: 30%;
}
.cta-shape:nth-child(5) {
  width: 40px; height: 40px;
  top: 45%; left: 25%;
  animation-duration: 14s;
  animation-delay: -3s;
}
.cta-shape:nth-child(6) {
  width: 60px; height: 60px;
  bottom: 30%; right: 20%;
  animation-duration: 17s;
  animation-delay: -10s;
  border-radius: 15%;
}
@keyframes shapeDrift {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  25% { opacity: 0.6; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.3; }
  75% { opacity: 0.6; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}
.final-cta-section .section-h2 {
  max-width: 700px;
  margin: 0 auto 24px;
}
.final-cta-section .section-sub {
  margin: 0 auto 44px;
}
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.cta-small-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-text {
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  font-size: 12px;
}
.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── ANIMATIONS ── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2,0.6,0.2,1), transform 0.6s cubic-bezier(0.2,0.6,0.2,1);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .proof-case-grid { grid-template-columns: 1fr; }
  .proof-video-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 500px; }
  .offer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .step:first-child { border-radius: 12px 0 0 0; }
  .step:nth-child(2) { border-radius: 0 12px 0 0; }
  .step:nth-child(3) { border-radius: 0 0 0 12px; }
  .step:last-child { border-radius: 0 0 12px 0; }
  .step-arrow { display: none !important; }
  .ladder-card-inner { grid-template-columns: 180px 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  nav { padding: 14px 0; padding-top: calc(14px + env(safe-area-inset-top, 0px)); }
  .nav-logo img { height: 18px; }
  .hero { padding: calc(90px + env(safe-area-inset-top, 0px)) 0 48px; min-height: auto; }
  .hero-inner { gap: 32px; }
  .hero-card { max-width: 100%; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-stat-row { gap: 6px; }
  .hero-stat { padding: 10px 8px; }
  .hero-stat-num { font-size: 15px; }
  .hero-stat-label { font-size: 10px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* Hide desktop CTA from nav bar on mobile — it lives inside the menu */
  .nav-cta-desktop { display: none; }
  /* CTA inside the hamburger menu */
  .nav-menu-cta-item { display: block; margin-top: 12px; }
  .nav-menu-cta {
    display: inline-block;
    background: var(--accent);
    color: #0e0e0e !important;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-menu-cta:active { background: var(--accent-dark); }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    margin: 0;
    padding: calc(72px + env(safe-area-inset-top, 0px)) 28px 32px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  nav.nav-open,
  nav.nav-open.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-logo,
  .nav-mobile-actions {
    position: relative;
    z-index: 101;
  }
  .nav-links li { width: 100%; max-width: 280px; text-align: center; }
  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 17px;
    color: var(--text);
    border-radius: 10px;
  }
  .nav-links a:active { background: rgba(255,255,255,0.06); }

  /* Section headers */
  .section-h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-sub { font-size: 15px; }
  .section-eyebrow { font-size: 10px; }

  /* How It Works */
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step { border-radius: 0; padding: 28px 22px; }
  .step:first-child { border-radius: 12px 12px 0 0; }
  .step:last-child { border-radius: 0 0 12px 12px; }
  .step-visual { aspect-ratio: 16/9; max-height: 180px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 13px; }

  /* Growth Ladder */
  .ladder-stage { grid-template-columns: 60px 1fr; }
  .ladder-num { width: 44px; height: 44px; font-size: 12px; }
  .ladder-card { padding: 28px 20px; }
  .ladder-card-inner { grid-template-columns: 1fr; gap: 16px; }
  .ladder-visual { aspect-ratio: 16/9; max-height: 200px; }
  .ladder-visual:has(.lv-auto) { aspect-ratio: 3/4; max-height: 320px; }
  .ladder-title { font-size: 20px; }
  .ladder-desc { font-size: 13px; }

  /* Offer + Guarantees */
  .offer-grid { grid-template-columns: 1fr; }
  .offer-big { padding: 36px 28px; min-height: auto; }
  .offer-big h3 { font-size: 1.8rem; }
  .offer-big p { font-size: 14px; }
  .guarantee-card { padding: 16px 18px; }
  .g-icon { width: 38px; height: 38px; font-size: 17px; }
  .g-title { font-size: 14px; }
  .g-text { font-size: 12px; }

  /* Proof media */
  .proof-media-section { padding: 64px 0; }
  .proof-ba-row { gap: 8px; }

  /* Pricing */
  .pricing-grid, .grow-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 24px; }
  .plan-price-main { font-size: 26px; }
  .pricing-tab { padding: 10px 20px; font-size: 12px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-big { padding: 32px 28px; }
  .quote-mark { font-size: 56px; margin-bottom: 20px; }
  .quote-text { font-size: 18px; margin-bottom: 24px; }
  .author-avatar { width: 44px; height: 44px; font-size: 15px; }

  /* Final CTA */
  .final-cta-section { padding: 80px 0; }
  .final-cta-section .section-h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-group { flex-direction: column; }
  .cta-group .btn-primary { width: 100%; text-align: center; }
  .cta-shape:nth-child(2),
  .cta-shape:nth-child(4),
  .cta-shape:nth-child(6) { display: none; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 1.8rem; }
  .ba-label { padding: 4px 0; }
  .ba-tags { width: 56%; padding: 8px 6px; gap: 4px; }
  .ba-flip-face { font-size: 9.5px; padding: 3px 6px; }

  /* Growth Ladder compact */
  .ladder-stage { grid-template-columns: 1fr; }
  .ladder-marker { display: none; }
  .ladder-visual:has(.lv-auto) { max-height: 280px; }

  /* Social proof ticker — full-width row below label */
  .proof-inner { flex-direction: column; gap: 14px; align-items: stretch; }
  .proof-ticker { -webkit-mask-image: none; mask-image: none; }
  .proof-ticker-group { gap: 24px; padding-right: 24px; }
  .proof-ticker-wordmark { font-size: 14px; padding: 7px 14px; }

  /* How It Works compact */
  .step-visual { max-height: 150px; }
  .sv-research-lens { width: 30px; height: 30px; }
  .sv-mini-site { height: 75%; }
  .sv-layer { padding: 6px 10px; font-size: 7px; }
  .sv-layer-icon { width: 16px; height: 16px; font-size: 8px; }

  /* Offer compact */
  .offer-big { padding: 28px 22px; }
  .offer-big h3 { font-size: 1.5rem; }
  .offer-big-cta { font-size: 13px; padding: 12px 22px; }

  /* Pricing compact */
  .pricing-card { padding: 24px 20px; }
  .plan-name { font-size: 18px; }
  .plan-price-main { font-size: 22px; }
  .featured-badge { font-size: 10px; padding: 3px 12px; }

  /* Testimonials compact */
  .testimonial-big { padding: 24px 20px; }
  .quote-mark { font-size: 44px; margin-bottom: 16px; }
  .quote-text { font-size: 16px; }

  /* Automation carousel compact */
  .lv-auto-name { font-size: 13px; }
  .lv-auto-detail { font-size: 9px; }
  .lv-auto-card-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 10px; }

  /* Final CTA compact */
  .final-cta-section { padding: 60px 0; }
  .cta-small-note { font-size: 11px; }
}
