:root {
  --bg: #0A0E1A;
  --surface: #131A2E;
  --surface-2: #1A2238;
  --surface-3: #232C45;
  --border: rgba(255,255,255,0.06);
  --border-2: rgba(255,255,255,0.10);
  --cyan: #06B6D4;
  --violet: #A855F7;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --muted-2: #64748B;
  --grad: linear-gradient(135deg, #06B6D4 0%, #A855F7 100%);
  --grad-soft: linear-gradient(135deg, rgba(6,182,212,0.18) 0%, rgba(168,85,247,0.18) 100%);
}

* { box-sizing: border-box; }
html, body { background: var(--bg); color: var(--text); }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11','ss01','ss03';
  overflow-x: hidden;
}

a { color: inherit; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  color: var(--text);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 6px 20px -8px rgba(168,85,247,0.6), 0 2px 8px -2px rgba(6,182,212,0.4);
}
.btn-primary:hover { box-shadow: 0 10px 28px -8px rgba(168,85,247,0.8), 0 4px 12px -2px rgba(6,182,212,0.5); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.18); }
.btn-soft {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.btn-soft:hover { background: rgba(255,255,255,0.08); }

/* ----- Card / surfaces ----- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

/* ----- Badges ----- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}
.badge-success { background: rgba(16,185,129,0.10); border-color: rgba(16,185,129,0.25); color: #34D399; }
.badge-cyan { background: rgba(6,182,212,0.10); border-color: rgba(6,182,212,0.25); color: #22D3EE; }
.badge-violet { background: rgba(168,85,247,0.10); border-color: rgba(168,85,247,0.25); color: #C084FC; }
.badge-warn { background: rgba(245,158,11,0.10); border-color: rgba(245,158,11,0.25); color: #FBBF24; }
.badge-danger { background: rgba(239,68,68,0.10); border-color: rgba(239,68,68,0.25); color: #F87171; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-success { background: var(--success); box-shadow: 0 0 0 4px rgba(16,185,129,0.15); }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.pulse { animation: pulse-dot 1.8s ease-in-out infinite; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.glow-cyan, .glow-violet {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.glow-cyan { background: radial-gradient(circle, rgba(6,182,212,0.35) 0%, transparent 60%); }
.glow-violet { background: radial-gradient(circle, rgba(168,85,247,0.35) 0%, transparent 60%); }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ===========================================================
   TOPNAV
   =========================================================== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,14,26,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topnav-left { display: flex; align-items: center; gap: 32px; }
.topnav-links { display: flex; gap: 22px; }
.topnav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.topnav-links a:hover { color: var(--text); }
.topnav-right { display: flex; align-items: center; gap: 10px; }
.topnav-right .login {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 9px 12px;
}
.topnav-right .login:hover { color: var(--text); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: 80px 64px 100px;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero h1 {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 22px 0 0;
  color: var(--text);
}
.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
  margin: 26px 0 0;
}
.hero-lead s { color: var(--muted-2); }
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-ctas .btn { padding: 14px 22px; font-size: 15px; }
.hero-checks {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  color: var(--muted-2);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-checks .icon { color: var(--success); }

/* Hero dashboard mock */
.hero-mock {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19,26,46,0.95), rgba(10,14,26,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -30px rgba(6,182,212,0.25), 0 20px 40px -20px rgba(168,85,247,0.25);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.hero-mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-mock-chrome span.dot-chrome {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.hero-mock-chrome .red { background: #EF4444; }
.hero-mock-chrome .amber { background: #F59E0B; }
.hero-mock-chrome .green { background: #10B981; }
.hero-mock-chrome .url { margin-left: 12px; font-size: 11px; color: var(--muted-2); }
.hero-mock-body { padding: 22px; }
.hero-mock-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hero-mock-eyebrow {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.hero-mock-counter {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-mock-sub { font-size: 12px; color: var(--muted-2); margin-top: 6px; }
.hero-mock-search {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-mock-search-cell {
  flex: 1;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.hero-mock-search-cell + .hero-mock-search-cell {
  border-left: 1px solid rgba(255,255,255,0.06);
}
.hero-mock-search button {
  background: var(--grad);
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.hero-mock-feed-title {
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 16px 0 8px;
}
.hero-mock-feed { display: flex; flex-direction: column; gap: 6px; }
.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 12px;
}
.feed-item.first {
  background: rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.2);
  animation: slide-up 0.4s ease;
}
.feed-item-left { display: flex; align-items: center; gap: 10px; }
.feed-dot { width: 6px; height: 6px; border-radius: 50%; background: #475569; }
.feed-item.first .feed-dot { background: var(--cyan); }
.feed-name { color: var(--text); font-weight: 500; }
.feed-city { color: var(--muted-2); font-size: 11px; }
.feed-item .badge { font-size: 10px; padding: 2px 8px; }

/* ===========================================================
   SECTION COMMON
   =========================================================== */
.section {
  padding: 100px 64px;
  position: relative;
}
.section--bordered { border-top: 1px solid var(--border); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--big { margin-bottom: 56px; }
.section-head h2 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 18px 0 14px;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0;
  line-height: 1.5;
}
.muted-h2 { color: var(--muted); }

/* ===========================================================
   COMPARISON TABLE
   =========================================================== */
.comp-table { overflow: hidden; }
.comp-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
}
.comp-grid > div {
  padding: 18px 22px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.comp-grid > div:not(:nth-child(5n+1)) {
  border-left: 1px solid var(--border);
}
.comp-grid .comp-head-label,
.comp-grid .comp-head-col {
  padding: 20px 22px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.comp-grid .comp-head-col { font-size: 14px; text-transform: none; color: var(--muted); }
.comp-grid .comp-head-col-self {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  background: linear-gradient(180deg, rgba(6,182,212,0.08), rgba(168,85,247,0.06));
  text-transform: lowercase;
}
.comp-grid .comp-head-col-self .nous {
  display: block;
  font-size: 11px;
  color: #22D3EE;
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.comp-grid .comp-cell-self {
  background: linear-gradient(180deg, rgba(6,182,212,0.04), rgba(168,85,247,0.03));
}
.comp-grid .comp-row:last-child > div,
.comp-grid > div.last-row {
  border-bottom: none;
}
.comp-cell-x { color: #475569; }
.comp-cell-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10B981;
  font-weight: 600;
  font-size: 13px;
}
.comp-cell-check.self { color: #22D3EE; }
.comp-cell-num { color: var(--muted); font-weight: 500; }
.comp-cell-num.self { color: var(--text); font-weight: 700; }

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  padding: 28px;
  position: relative;
  min-height: 240px;
}
.step-num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.step-meta {
  position: absolute;
  bottom: 24px;
  left: 28px;
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===========================================================
   WHY CHEAPER
   =========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.why-item { padding: 28px 4px; }
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.why-item h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.why-item h3 .first { color: var(--text); display: block; }
.why-item h3 .second { color: var(--muted); display: block; }
.why-item p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.55;
  margin: 14px 0 0;
}

/* ===========================================================
   PRICING
   =========================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.tier {
  padding: 24px;
  position: relative;
}
.tier.tier-highlight {
  background: linear-gradient(180deg, rgba(6,182,212,0.08), rgba(168,85,247,0.06));
  border-color: rgba(168,85,247,0.35);
  box-shadow: 0 20px 60px -20px rgba(168,85,247,0.4);
}
.tier-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tier-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tier.tier-highlight .tier-name { color: #22D3EE; }
.tier-price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.tier-price .amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}
.tier-price .period { font-size: 13px; color: var(--muted-2); }
.tier-sub {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
  margin-bottom: 14px;
  min-height: 16px;
}
.tier-leads {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tier.tier-highlight .tier-leads { color: #C084FC; }
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.tier-features li {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  list-style: none;
}
.tier-features { padding: 0; }
.tier-features .icon { color: #10B981; width: 14px; height: 14px; margin-top: 2px; }
.tier.tier-highlight .tier-features .icon { color: #C084FC; }
.tier .btn { width: 100%; padding: 10px 12px; font-size: 13px; }

.pricing-custom {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-custom-text strong { font-size: 14px; color: var(--text); font-weight: 600; margin-right: 8px; }
.pricing-custom-text span { font-size: 14px; color: var(--muted-2); }

/* ===========================================================
   SOCIAL PROOF
   =========================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 64px;
}
.stat { padding: 24px 22px; }
.stat-val {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial { padding: 28px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #F59E0B; font-size: 14px; }
.testimonial p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.testimonial-author {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.author-name { font-size: 13px; font-weight: 600; color: var(--text); }
.author-role { font-size: 11px; color: var(--muted-2); }

.logo-strip {
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip-title {
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}
.logo-strip-row {
  display: flex;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.55;
}
.logo-strip-row span {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.02em;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-head h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 18px 0 14px;
}
.faq-head p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
}
.faq-head a { color: #22D3EE; text-decoration: none; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-question .icon { transition: transform 0.2s; font-size: 18px; }
.faq-item[data-open="true"] .faq-question .icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}
.faq-item[data-open="true"] .faq-answer { display: block; }

/* ===========================================================
   FINAL CTA
   =========================================================== */
.final-cta {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta-card {
  position: relative;
  padding: 64px 56px;
  text-align: center;
  background: linear-gradient(180deg, rgba(6,182,212,0.10), rgba(168,85,247,0.10));
  border-color: rgba(168,85,247,0.25);
}
.final-cta-card h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}
.final-cta-card p {
  font-size: 17px;
  color: var(--muted);
  margin: 20px 0 36px;
}
.final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-buttons .btn { padding: 16px 28px; font-size: 16px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  padding: 64px 64px 48px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 16px;
  line-height: 1.55;
  max-width: 280px;
}
.footer-brand-badges { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.footer-col-links a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left { font-size: 12px; color: var(--muted-2); }
.footer-bottom-right { font-size: 11px; color: #475569; }

/* ===========================================================
   MOBILE (<768px)
   =========================================================== */
@media (max-width: 1023px) {
  .topnav { padding: 12px 18px; }
  .topnav-links { display: none; }
  .topnav-right .login { display: none; }
  .topnav-right .btn { padding: 7px 12px; font-size: 12px; }

  /* Hero */
  .hero { padding: 36px 22px 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 48px; line-height: 0.96; margin-top: 14px; }
  .hero-lead { font-size: 14px; margin-top: 14px; }
  .hero-lead .desktop-only { display: none; }
  .hero-lead br { display: none; }
  .hero-ctas { flex-direction: column; gap: 8px; margin-top: 22px; }
  .hero-ctas .btn { padding: 12px; font-size: 14px; width: 100%; }
  .hero-checks { display: none; }
  .hero-mock { transform: none; }
  .hero-mock-counter { font-size: 38px; }
  .hero-mock-feed-title, .hero-mock-feed { display: none; }

  /* Sections */
  .section { padding: 40px 22px; }
  .section-head, .section-head--big { margin-bottom: 18px; }
  .section-head h2 { font-size: 32px; line-height: 1.05; margin: 14px 0 18px; }
  .section-head p { font-size: 14px; }

  /* Comparison: simplified mobile list */
  .comp-table-desktop { display: none; }
  .comp-table-mobile { display: block; }

  /* How it works */
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .step { padding: 20px; min-height: 0; }
  .step-num { font-size: 28px; margin-bottom: 0; }
  .step h3 { font-size: 16px; margin: 8px 0 4px; }
  .step p { font-size: 13px; }
  .step-meta { display: none; }

  /* Why cheaper */
  .why-grid { grid-template-columns: 1fr; gap: 8px; }
  .why-item { padding: 14px 0; }
  .why-item h3 { font-size: 18px; }
  .why-item p { font-size: 13px; }

  /* Pricing — condensed mobile list */
  .pricing-grid-desktop { display: none; }
  .pricing-grid-mobile { display: flex; flex-direction: column; gap: 8px; }
  .pricing-grid-mobile .tier {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .pricing-grid-mobile .tier-name { font-size: 13px; }
  .pricing-grid-mobile .tier-leads {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    padding: 0;
    border: none;
    margin-top: 2px;
  }
  .pricing-grid-mobile .tier-price .amount { font-size: 24px; }
  .pricing-grid-mobile .tier-price .period { font-size: 11px; }
  .pricing-custom { flex-direction: column; align-items: flex-start; }

  /* Social proof: hide stats + logo strip on mobile to keep length close to spec */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 24px; }
  .stat { padding: 16px; }
  .stat-val { font-size: 24px; }
  .stat-label { font-size: 11px; }
  .testimonials { grid-template-columns: 1fr; gap: 10px; }
  .testimonial { padding: 18px; }
  .testimonial p { font-size: 14px; }
  .logo-strip { margin-top: 32px; padding: 20px 0; }
  .logo-strip-row { gap: 16px; }
  .logo-strip-row span { font-size: 14px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 18px; }
  .faq-head h2 { font-size: 28px; }
  .faq-question { padding: 16px; font-size: 14px; }
  .faq-answer { padding: 0 16px 16px; font-size: 13px; }

  /* Final CTA */
  .final-cta { padding: 40px 22px; }
  .final-cta-card {
    padding: 32px 20px;
    border: none;
    background: transparent;
  }
  .final-cta-card h2 { font-size: 36px; letter-spacing: -0.035em; }
  .final-cta-card p { display: none; }
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn { padding: 13px 22px; font-size: 14px; width: 100%; }
  .final-cta-buttons .btn:nth-child(2) { display: none; }

  /* Footer */
  .footer { padding: 24px 22px; }
  .footer-grid { display: none; }
  .footer-bottom {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-bottom-right { display: none; }
}

@media (min-width: 1024px) {
  .comp-table-mobile { display: none; }
  .pricing-grid-mobile { display: none; }
}
