/* ══════════════════════════════════════════════════════
   FLEETSHOP CRM — SALES SITE
   Colors pulled directly from the CRM design system
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy-950: #060d1f;
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #1a3358;
  --navy-600: #234470;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 17px;
}
.logo-eagle { font-size: 20px; }
.nav-logo strong { color: var(--gold-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-login {
  color: rgba(255,255,255,.8) !important;
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 6px;
}
.nav-login:hover { border-color: rgba(255,255,255,.5) !important; }

.nav-cta {
  background: var(--gold-500) !important;
  color: var(--navy-950) !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-400) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  padding: 80px 24px 90px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-primary.large { font-size: 17px; padding: 16px 36px; }

.btn-ghost {
  color: rgba(255,255,255,.8);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); }

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.proof-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.proof-dot.green { background: var(--green-500); }
.proof-dot.gold  { background: var(--gold-400); }
.proof-dot.blue  { background: var(--blue-500); }

/* Mock UI */
.mock-ui {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.mock-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); }
.mock-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.mock-result {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 12px;
}
.mock-result.hot  { border-color: rgba(251,191,36,.3); background: rgba(251,191,36,.05); }
.mock-result.warm { border-color: rgba(59,130,246,.2); background: rgba(59,130,246,.04); }
.mock-result-top  { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.mock-co-name { font-size: 13px; font-weight: 700; color: var(--white); }
.mock-co-sub  { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.mock-prob    { font-size: 18px; font-weight: 900; color: var(--green-500); line-height: 1; }
.mock-note    { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.4; margin-bottom: 8px; }
.mock-tags    { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 10px; font-weight: 600;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  padding: 2px 8px; border-radius: 20px;
}
.mock-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 4px; }
.mock-footer span { font-size: 11px; color: rgba(255,255,255,.4); }
.mock-btn {
  background: var(--gold-500); color: var(--navy-950);
  border: none; padding: 6px 14px; border-radius: 5px;
  font-size: 11px; font-weight: 700; cursor: pointer;
}
.mock-stage-pill {
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.mock-stage-pill.hot  { background: rgba(251,191,36,.2); color: #fbbf24; border: 1px solid rgba(251,191,36,.4); }
.mock-stage-pill.warm { background: rgba(59,130,246,.2); color: #93c5fd; border: 1px solid rgba(59,130,246,.3); }
.mock-stage-pill.new  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.15); }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
  background: var(--gray-900);
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 40px; }
.stat-item strong { font-size: 28px; font-weight: 900; color: var(--gold-400); line-height: 1.1; }
.stat-item span   { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; max-width: 140px; }
.stat-divider     { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ── PROBLEM ─────────────────────────────────────────── */
.problem { padding: 80px 24px; background: var(--gray-50); }
.eyebrow-dark {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px;
}
.problem h2 {
  font-size: 34px; font-weight: 800; line-height: 1.2;
  color: var(--gray-900); max-width: 680px; margin-bottom: 48px; letter-spacing: -.01em;
}
.problem-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.problem-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 24px; }
.problem-icon { font-size: 28px; margin-bottom: 12px; }
.problem-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── FEATURES ────────────────────────────────────────── */
.features { padding: 80px 24px; background: var(--white); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: 36px; font-weight: 800; color: var(--gray-900); letter-spacing: -.02em; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.feature-card.featured {
  grid-column: span 3;
  background: var(--navy-950); border-color: var(--navy-700);
  display: grid; grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr auto; gap: 0 24px; color: var(--white);
}
.feature-icon { font-size: 28px; margin-bottom: 14px; grid-row: 1; grid-column: 1; }
.feature-badge {
  grid-row: 1; grid-column: 2; display: inline-block; align-self: center;
  background: var(--gold-500); color: var(--navy-950);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
  width: fit-content; margin-bottom: 10px;
}
.feature-card.featured h3 { grid-column: 2; grid-row: 2; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.feature-card.featured p  { grid-column: 2; grid-row: 3; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.feature-card.featured .feature-list { grid-column: 2; grid-row: 4; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.feature-list li { font-size: 13px; color: rgba(255,255,255,.6); padding-left: 16px; position: relative; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-400); }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%); padding: 80px 24px; }
.eyebrow-light { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 14px; }
.section-head h2.light { color: var(--white); }
.section-sub.light { color: rgba(255,255,255,.5); }
.steps { display: flex; gap: 0; align-items: flex-start; margin-top: 56px; }
.step {
  flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 28px;
}
.step-num { font-size: 36px; font-weight: 900; color: var(--gold-400); opacity: .6; margin-bottom: 14px; }
.step h3  { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p   { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.step-arrow { color: rgba(255,255,255,.2); font-size: 24px; padding: 0 10px; padding-top: 40px; flex-shrink: 0; }

/* ── FLEET FINDER SPOTLIGHT ───────────────────────────── */
.finder-section { padding: 80px 24px; background: var(--gray-50); }
.finder-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.finder-left h2 { font-size: 32px; font-weight: 800; color: var(--gray-900); letter-spacing: -.01em; margin-bottom: 16px; }
.finder-left p  { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.finder-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.finder-list li { font-size: 13px; color: var(--gray-700); font-weight: 500; }

.finder-mock { background: var(--navy-900); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.finder-mock-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.finder-mock-label { font-size: 11px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; }
.finder-mock-val   { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); }
.finder-mock-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.filter-pill { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1); }
.filter-pill.active { background: rgba(251,191,36,.15); color: var(--gold-400); border-color: rgba(251,191,36,.3); }
.finder-mock-searching { margin-bottom: 14px; }
.search-bar { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: 10px 14px; }
.search-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); flex-shrink: 0; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.8); } }
.search-bar span { font-size: 11px; color: rgba(255,255,255,.4); }
.finder-result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.fr-name { font-size: 13px; font-weight: 600; color: var(--white); }
.fr-score { font-size: 13px; font-weight: 800; padding: 2px 10px; border-radius: 20px; }
.fr-score.high { background: rgba(22,163,74,.15); color: var(--green-500); }
.fr-score.mid  { background: rgba(217,119,6,.15);  color: #f59e0b; }
.finder-import-btn { margin-top: 16px; }
.finder-import-btn button { width: 100%; background: var(--gold-500); color: var(--navy-950); border: none; padding: 11px; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer; }

/* ── PIPELINE SECTION ─────────────────────────────────── */
.pipeline-section { padding: 80px 24px; background: var(--white); }
.pipeline-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pipeline-mock { display: flex; gap: 12px; }
.pipeline-col { flex: 1; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.pipeline-col-header { padding: 10px 12px; font-size: 12px; font-weight: 700; border-bottom: 1px solid var(--gray-200); }
.pipeline-col-header.call  { background: #eff6ff; color: #1e40af; }
.pipeline-col-header.mail  { background: #ecfdf5; color: #065f46; }
.pipeline-col-header.visit { background: #fffbeb; color: #92400e; }
.pipeline-card-item { padding: 12px; border-bottom: 1px solid var(--gray-100); }
.pci-name { font-size: 12px; font-weight: 700; color: var(--gray-800); }
.pci-info { font-size: 11px; color: var(--gray-400); margin-top: 3px; }
.pci-tag  { display: inline-block; font-size: 9px; font-weight: 700; padding: 1px 7px; border-radius: 20px; margin-top: 6px; }
.pci-tag.hot  { background: #fef3c7; color: #92400e; }
.pci-tag.warm { background: #dbeafe; color: #1e40af; }
.pipeline-text h2 { font-size: 32px; font-weight: 800; color: var(--gray-900); letter-spacing: -.01em; margin-bottom: 16px; margin-top: 10px; }
.pipeline-text p  { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }

/* ── GOALS SECTION ────────────────────────────────────── */
.goals-section { padding: 80px 24px; background: var(--gray-50); }
.goals-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.goals-text h2 { font-size: 32px; font-weight: 800; color: var(--gray-900); letter-spacing: -.01em; margin-bottom: 16px; margin-top: 10px; }
.goals-text p  { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.goals-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 28px; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.goals-card-title { font-size: 14px; font-weight: 700; color: var(--gray-700); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-100); }
.goal-row-item { margin-bottom: 16px; }
.goal-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.goal-label span   { font-size: 13px; color: var(--gray-600); }
.goal-label strong { font-size: 13px; font-weight: 700; color: var(--gray-800); }
.goal-bar  { height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.goal-fill { height: 100%; border-radius: 3px; transition: width .4s; }
.goal-hit  { font-size: 11px; color: var(--green-600); font-weight: 600; margin-top: 4px; }

/* ── PRICING ──────────────────────────────────────────── */
.pricing { padding: 80px 24px; background: var(--white); }
.pricing-card-wrap { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.pricing-card { background: var(--navy-950); border: 1px solid var(--navy-600); border-radius: 16px; overflow: hidden; }
.pricing-top { padding: 36px 40px 28px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: center; }
.pricing-name { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 16px; }
.pricing-price { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 12px; }
.price-dollar { font-size: 24px; font-weight: 700; color: var(--white); margin-top: 8px; }
.price-num    { font-size: 72px; font-weight: 900; color: var(--white); line-height: 1; }
.price-per    { font-size: 18px; color: rgba(255,255,255,.4); margin-top: 20px; }
.pricing-sub  { font-size: 14px; color: rgba(255,255,255,.5); }
.pricing-list { list-style: none; padding: 28px 40px; display: flex; flex-direction: column; gap: 12px; }
.pricing-list li { font-size: 14px; color: rgba(255,255,255,.75); }
.pricing-cta {
  display: block; margin: 0 40px 20px;
  background: var(--gold-500); color: var(--navy-950);
  text-align: center; padding: 16px; border-radius: 8px;
  font-weight: 800; font-size: 16px; text-decoration: none; transition: background .2s;
}
.pricing-cta:hover { background: var(--gold-400); }
.pricing-note { text-align: center; font-size: 12px; color: rgba(255,255,255,.3); padding-bottom: 24px; }
.pricing-addons { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px; padding: 24px 28px; }
.addon-title { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.pricing-addons p { font-size: 14px; color: var(--gray-500); margin-bottom: 14px; }
.addon-pill { display: inline-block; background: var(--blue-600); color: var(--white); font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 6px; }

/* ── FINAL CTA ────────────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%); padding: 90px 24px; text-align: center; }
.final-cta h2 { font-size: 38px; font-weight: 900; color: var(--white); letter-spacing: -.02em; max-width: 700px; margin: 0 auto 16px; line-height: 1.15; }
.final-cta p  { font-size: 17px; color: rgba(255,255,255,.5); margin-bottom: 36px; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { background: var(--gray-900); padding: 32px 24px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo  { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 15px; }
.footer-logo strong { color: var(--gold-400); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-left h1   { font-size: 36px; }
  .hero-right     { display: none; }
  .problem-grid   { grid-template-columns: 1fr 1fr; }
  .feature-grid   { grid-template-columns: 1fr 1fr; }
  .feature-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .feature-card.featured .feature-icon,
  .feature-card.featured .feature-badge,
  .feature-card.featured h3,
  .feature-card.featured p,
  .feature-card.featured .feature-list { grid-column: 1; grid-row: auto; }
  .steps          { flex-direction: column; gap: 16px; }
  .step-arrow     { display: none; }
  .finder-inner   { grid-template-columns: 1fr; }
  .pipeline-inner { grid-template-columns: 1fr; }
  .goals-inner    { grid-template-columns: 1fr; }
  .stats-bar      { flex-direction: column; gap: 20px; padding: 32px 24px; }
  .stat-divider   { display: none; }
  .finder-list    { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }
  .finder-left h2 { font-size: 26px; }
  .pipeline-text h2 { font-size: 26px; }
  .goals-text h2  { font-size: 26px; }
  .final-cta h2   { font-size: 30px; }
}

@media (max-width: 600px) {
  /* Nav */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--navy-950); padding: 16px 24px;
    gap: 14px; border-bottom: 1px solid rgba(255,255,255,.07);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-login, .nav-cta { width: 100%; text-align: center; }

  /* Hero */
  .hero { padding: 44px 20px 52px; }
  .hero-left h1 { font-size: 28px; letter-spacing: -.01em; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; width: 100%; }

  /* Sections */
  .problem { padding: 56px 20px; }
  .features { padding: 56px 20px; }
  .how { padding: 56px 20px; }
  .finder-section { padding: 56px 20px; }
  .pipeline-section { padding: 56px 20px; }
  .goals-section { padding: 56px 20px; }
  .pricing { padding: 56px 20px; }
  .final-cta { padding: 60px 20px; }

  /* Grids */
  .problem-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }

  /* Pipeline mock */
  .pipeline-mock { flex-direction: column; gap: 8px; }

  /* Typography */
  .section-head h2 { font-size: 24px; }
  .final-cta h2    { font-size: 24px; }
  .final-cta p     { font-size: 15px; }
  .problem h2      { font-size: 24px; }
  .finder-left h2  { font-size: 24px; }
  .pipeline-text h2 { font-size: 24px; }
  .goals-text h2   { font-size: 24px; }

  /* Pricing */
  .price-num       { font-size: 56px; }
  .pricing-top     { padding: 28px 20px 20px; }
  .pricing-list    { padding: 20px; }
  .pricing-cta     { margin: 0 20px 16px; }

  /* Footer */
  .footer-inner    { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links    { flex-wrap: wrap; gap: 16px; }

  /* Steps */
  .step { padding: 20px; }
  .step-num { font-size: 28px; }
}
