/* =========================================================
   45 INNOVATION — Conquest Intelligence
   Design direction: Sam Pack 5-Star Chevy (navy + gold) meets
   premium fintech (clean cards, restrained type, real density)
   ========================================================= */

:root {
  --navy-950: #06101F;
  --navy-900: #0C1B2E;
  --navy-800: #0E2240;
  --navy-700: #15355F;
  --navy-600: #1E4B82;
  --gold-500: #D4AF37;
  --gold-400: #E5C25A;
  --gold-300: #F0D982;
  --ink: #0B1220;
  --slate-900: #1A2333;
  --slate-700: #3F4B61;
  --slate-500: #6B7C95;
  --slate-300: #B9C3D2;
  --slate-100: #EEF1F6;
  --slate-50:  #F7F8FB;
  --white: #FFFFFF;
  --red: #C3002F;
  --green: #1F7A4A;
  --amber: #B6770C;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.06), 0 1px 1px rgba(11,18,32,.04);
  --shadow-md: 0 4px 10px rgba(11,18,32,.07), 0 2px 4px rgba(11,18,32,.05);
  --shadow-lg: 0 20px 50px rgba(11,18,32,.16), 0 6px 16px rgba(11,18,32,.10);
  --radius: 14px;
  --radius-sm: 8px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 16, 31, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-weight: 700; letter-spacing: 0.06em; font-size: 14px; }
.brand em { font-style: normal; font-size: 11px; color: var(--slate-300); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 13px; color: var(--slate-300); transition: color .15s; font-weight: 500; }
.nav-links a:hover { color: var(--gold-300); }
.nav-cta {
  padding: 8px 16px; background: var(--gold-500); color: var(--navy-900) !important;
  border-radius: 8px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-400); }
.nav-burger { display: none; background: transparent; border: 0; color: #fff; font-size: 24px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  overflow: hidden;
  padding: 70px 24px 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(800px circle at 20% 0%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(700px circle at 90% 30%, rgba(30,75,130,.45), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px;
  position: relative; z-index: 1; align-items: center;
}
.kicker {
  display: inline-block; font-family: var(--font-mono);
  font-size: 11px; color: var(--gold-400);
  letter-spacing: 0.16em; font-weight: 500;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 700; margin: 0 0 22px;
}
.hero h1 strong { color: var(--gold-400); font-weight: 700; }
.lede {
  font-size: 18px; line-height: 1.6;
  color: var(--slate-300);
  max-width: 580px;
  margin: 0 0 28px;
}
.lede strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold-500); color: var(--navy-900);
  padding: 13px 22px; border-radius: 10px; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; transition: background .15s, transform .15s;
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: #fff;
  padding: 13px 22px; border-radius: 10px; font-weight: 500; font-size: 14px;
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s;
}
.btn-secondary:hover { background: rgba(255,255,255,.10); }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
}
.hero-meta strong {
  display: block; font-family: var(--font-mono);
  font-size: 28px; font-weight: 600; color: var(--gold-400);
  letter-spacing: -0.02em;
}
.hero-meta span { font-size: 12px; color: var(--slate-300); margin-top: 4px; display: block; line-height: 1.4; }

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(20px);
}
.hero-card-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--slate-300); font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 12px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.18); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }
.hero-feed { list-style: none; padding: 0; margin: 0; }
.hero-feed li {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 10px; align-items: center;
  padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.06);
  font-size: 12.5px;
}
.hero-feed li:last-child { border-bottom: 0; }
.hero-feed .stars { font-family: var(--font-mono); color: #ef4444; font-weight: 600; }
.hero-feed .stars.s2 { color: #f59e0b; }
.hero-feed .stars.s3 { color: #94a3b8; }
.hero-feed .txt { color: #fff; }
.hero-feed .meta { color: var(--slate-300); font-size: 11px; text-align: right; }
.hero-card-foot { font-size: 11px; color: var(--slate-300); margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); line-height: 1.45; }

/* ---------- SECTIONS ---------- */
.section { padding: 90px 24px; max-width: 100%; }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section.dark { background: var(--navy-950); color: #fff; }
.section.dark .sub { color: var(--slate-300); }
.section.dark h2 { color: #fff; }
.section.dark h3 { color: #fff; }
.section.cta { background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%); padding-bottom: 100px; }

.section-head { text-align: center; max-width: 760px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12; letter-spacing: -0.015em;
  font-weight: 700; margin: 8px 0 14px;
  color: var(--ink);
}
.section-head .sub { font-size: 17px; color: var(--slate-500); line-height: 1.55; margin: 0; }

/* ---------- STATS ROW ---------- */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.stat-n {
  font-family: var(--font-mono); font-size: 44px; font-weight: 700;
  color: var(--navy-900); letter-spacing: -0.03em; line-height: 1;
}
.stat-n small { font-size: 22px; color: var(--gold-500); font-weight: 600; margin-left: 4px; }
.stat-l { font-size: 14px; color: var(--slate-700); margin: 10px 0 6px; line-height: 1.4; font-weight: 500; }
.stat-d { font-size: 12px; color: var(--slate-500); }

.callout {
  background: linear-gradient(180deg, #fff8e1 0%, #fff 100%);
  border: 1px solid #f1d889;
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid; grid-template-columns: 36px 1fr; gap: 16px;
  font-size: 15px; line-height: 1.55;
  color: var(--ink);
}
.callout-i {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.callout strong { color: var(--navy-900); }
.callout em { font-style: normal; font-weight: 600; }

/* ---------- DEALERS GRID ---------- */
.dealers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 56px;
}
.dealer {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
}
.dealer-h {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.dealer-name { font-size: 14px; font-weight: 600; color: #fff; }
.dealer-brand {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 8px; border-radius: 4px; font-weight: 600;
  letter-spacing: 0.06em;
}
.bb-Toyota { background: #EB0A1E; color: #fff; }
.bb-Nissan { background: #C3002F; color: #fff; }
.bb-Ford   { background: #003478; color: #fff; }
.bb-Hyundai{ background: #002C5F; color: #fff; }
.bb-Lexus  { background: #1a1a1a; color: var(--gold-400); }
.bb-BHPH   { background: #5F5E5A; color: #fff; }
.dealer-r {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--gold-400); font-weight: 600;
}
.dealer-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dtag {
  font-size: 11px; padding: 4px 9px; border-radius: 20px;
  background: rgba(255,255,255,.06); color: var(--slate-300);
}
.dtag.high { background: rgba(195,0,47,.18); color: #ff8a9c; }
.dtag.med  { background: rgba(182,119,12,.18); color: var(--gold-300); }
.dealer-foot {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11px; color: var(--slate-300);
}
.dealer-foot a { color: var(--gold-400); border-bottom: 1px dotted rgba(212,175,55,.4); }

/* ---------- ARCHETYPE BLOCK ---------- */
.archetype-block { background: rgba(255,255,255,.03); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,.07); }
.archetype-block h3 { font-size: 20px; margin: 0 0 4px; font-weight: 700; }
.archetype-sub { font-size: 14px; color: var(--slate-300); margin: 0 0 18px; }
.archetype-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.ar-tab {
  background: rgba(255,255,255,.06); color: var(--slate-300);
  border: 1px solid transparent;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
}
.ar-tab.active { background: var(--gold-500); color: var(--navy-900); }
.ar-tab:hover:not(.active) { background: rgba(255,255,255,.10); }
.archetype-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.arrow {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.arrow:hover { border-color: var(--gold-500); background: rgba(212,175,55,.05); }
.arrow-h { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; gap: 12px; }
.arrow-id { font-family: var(--font-mono); font-size: 11px; color: var(--gold-400); }
.arrow-cat {
  font-size: 10px; font-family: var(--font-mono); padding: 2px 7px;
  border-radius: 4px; font-weight: 600;
}
.cat-Sales { background: #1a3a5c; color: #7bb8e8; }
.cat-Service { background: #1a3a1a; color: #4ade80; }
.cat-Finance { background: #3a2a1a; color: #f59e0b; }
.cat-Sales-FI, .cat-Sales-amp-FI { background: #2a1a3a; color: #c084fc; }
.arrow-name { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: 6px; }
.arrow-q { font-size: 12px; color: var(--slate-300); line-height: 1.5; }
.arrow-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11px; color: var(--slate-300);
}
.arrow-foot strong { color: var(--gold-400); font-family: var(--font-mono); }

/* ---------- SCRIPT GRID ---------- */
.script-search {
  max-width: var(--max); margin: 0 auto 28px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
#script-search {
  flex: 1; min-width: 260px;
  padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--slate-100);
  font-size: 14px; font-family: inherit;
  background: var(--white);
}
#script-cat {
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--slate-100);
  font-size: 14px; background: var(--white); font-family: inherit;
}

.script-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.script {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.script-h {
  background: var(--navy-900);
  color: #fff;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.script-h .arrow-id { color: var(--gold-400); margin-right: 4px; }
.script-h .arrow-cat { font-size: 10px; }
.script-h .title { flex: 1; font-size: 14px; font-weight: 600; }
.script-body { padding: 18px; }
.script-scen {
  font-style: italic; font-size: 13px; color: var(--slate-700);
  background: var(--slate-50);
  border-left: 3px solid var(--slate-300);
  padding: 10px 14px; border-radius: 0 6px 6px 0;
  margin-bottom: 14px;
}
.script-open {
  background: linear-gradient(180deg, #fffbed 0%, #fff 100%);
  border-left: 3px solid var(--gold-500);
  padding: 12px 14px;
  font-size: 13.5px; line-height: 1.6;
  color: var(--ink);
  border-radius: 0 6px 6px 0;
  margin-bottom: 14px;
}
.script-open .lbl {
  display: block; font-family: var(--font-mono); font-size: 10px;
  color: var(--amber); letter-spacing: 0.1em;
  margin-bottom: 6px; font-weight: 600;
}
.script-bullets { list-style: none; padding: 0; margin: 0 0 14px; font-size: 13px; }
.script-bullets li {
  padding: 5px 0 5px 22px; position: relative;
  color: var(--slate-700); line-height: 1.5;
}
.script-bullets li::before {
  content: "→"; position: absolute; left: 0; top: 5px;
  color: var(--gold-500); font-weight: 700;
}
.script-foot {
  border-top: 1px solid var(--slate-100); padding-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--slate-500);
}
.script-foot strong { color: var(--navy-900); }

/* ---------- VEHICLE MATCH ---------- */
.match-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.match {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.match-h {
  padding: 14px 18px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 12px; color: var(--gold-400);
  font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
}
.match-body { padding: 18px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; }
.match-side strong { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.match-side ul { list-style: none; padding: 0; margin: 0; font-size: 12px; color: var(--slate-300); line-height: 1.7; }
.match-vs {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.match-side.right strong { color: var(--gold-400); }
.match-side.right { padding-left: 8px; }
.match-side.right ul { color: #fff; }
.match-foot {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 18px;
  font-size: 12px; color: var(--slate-300); line-height: 1.5;
}
.match-foot .price {
  font-family: var(--font-mono); color: var(--gold-400); font-weight: 600;
}

/* ---------- VENDORS ---------- */
.vendor-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 36px;
}
.vendor {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.vendor-h { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 8px; }
.vendor-name { font-size: 15px; font-weight: 700; color: var(--navy-900); }
.vendor-cost {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--gold-500); font-weight: 600;
  background: rgba(212,175,55,.10);
  padding: 4px 10px; border-radius: 6px;
  white-space: nowrap;
}
.vendor-desc { font-size: 13px; color: var(--slate-700); line-height: 1.55; margin: 0 0 12px; }
.vendor-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.vmeta {
  font-size: 11px; padding: 3px 9px; border-radius: 20px;
  background: var(--slate-50); color: var(--slate-700); font-weight: 500;
}
.vmeta.good { background: #e7f5ec; color: var(--green); }

.compliance-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 12px;
  background: var(--slate-50); border-radius: var(--radius); padding: 22px;
}
.compliance-strip > div { font-size: 12.5px; color: var(--slate-700); line-height: 1.55; }
.compliance-strip strong { display: block; color: var(--navy-900); font-size: 13px; font-weight: 700; margin-bottom: 4px; font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ---------- TIERS / ECONOMICS ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.tier {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
}
.tier h3 { font-size: 14px; font-weight: 600; color: var(--gold-400); margin: 0; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }
.tier-price { font-size: 36px; font-weight: 700; color: #fff; margin: 12px 0 22px; line-height: 1; font-family: var(--font-mono); letter-spacing: -0.02em; }
.tier-price span { font-size: 14px; font-weight: 400; color: var(--slate-300); font-family: var(--font-sans); margin-left: 8px; letter-spacing: 0; }
.tier ul { list-style: none; padding: 0; margin: 0 0 22px; font-size: 13.5px; line-height: 1.6; flex: 1; }
.tier ul li { padding: 6px 0 6px 22px; position: relative; color: var(--slate-300); }
.tier ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-400); font-weight: 700; }
.tier .btn-primary, .tier .btn-secondary { justify-content: center; }
.tier.featured {
  background: linear-gradient(180deg, rgba(212,175,55,.10) 0%, rgba(212,175,55,.02) 100%);
  border-color: var(--gold-500);
}
.tier-flag {
  position: absolute; top: -10px; right: 20px;
  background: var(--gold-500); color: var(--navy-900);
  padding: 4px 10px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; border-radius: 4px;
  font-family: var(--font-mono);
}
.roi-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 28px;
}
.roi-box h3 { margin: 0 0 14px; font-size: 18px; font-weight: 700; color: #fff; }
.roi-box table { width: 100%; border-collapse: collapse; font-size: 14px; }
.roi-box td { padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.08); color: var(--slate-300); }
.roi-box tr:last-child td { border-bottom: 0; padding-top: 14px; font-size: 16px; }
.roi-box tr:last-child td strong { color: var(--gold-400); }
.roi-box td:last-child { text-align: right; font-family: var(--font-mono); }
.roi-box td strong { color: #fff; }
.roi-fine { font-size: 12px; color: var(--slate-300); margin-top: 16px; }

/* ---------- CTA ---------- */
.cta-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at 80% 10%, rgba(212,175,55,.15), transparent 60%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin: 8px 0 12px; line-height: 1.15; letter-spacing: -0.015em; }
.cta-card p { color: var(--slate-300); font-size: 16px; max-width: 620px; margin: 0 auto 28px; line-height: 1.6; }
.cta-form { text-align: left; max-width: 580px; margin: 0 auto; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cta-form label { display: block; font-size: 12px; color: var(--slate-300); font-weight: 500; margin-bottom: 14px; }
.cta-form input, .cta-form textarea {
  width: 100%; padding: 10px 12px; margin-top: 5px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; color: #fff;
  font-family: inherit; font-size: 14px;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,.30); }
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--gold-400); outline: none; background: rgba(255,255,255,.10); }
.cta-form button { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
.cta-fine { text-align: center; font-size: 11px; color: var(--slate-300); margin-top: 12px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-950); color: var(--slate-300);
  padding: 32px 24px; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 24px;
  font-size: 12px; line-height: 1.6;
}
.footer strong { color: #fff; display: block; font-size: 14px; margin-bottom: 4px; letter-spacing: 0.06em; }
.footer-legal { text-align: right; }
.footer-legal span { display: block; }

/* ---------- DRAWER ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6,16,31,.65);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.drawer.open { display: flex; }
.drawer-card {
  background: #fff; max-width: 720px; width: 100%;
  max-height: 86vh; overflow: auto;
  border-radius: 16px; padding: 32px 36px;
  position: relative; box-shadow: var(--shadow-lg);
}
.drawer-x {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--slate-50); border: 0;
  font-size: 20px; color: var(--slate-700);
}
.drawer-x:hover { background: var(--slate-100); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900); padding: 16px 24px;
    gap: 14px; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .hero { padding: 50px 22px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 18px; }
  .section { padding: 60px 22px; }
  .grid-3, .dealers-grid, .tier-grid, .vendor-grid { grid-template-columns: 1fr; }
  .archetype-list, .script-grid, .match-grid { grid-template-columns: 1fr; }
  .compliance-strip { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
  .cta-form .row { grid-template-columns: 1fr; }
  .match-body { grid-template-columns: 1fr; text-align: center; }
  .match-vs { margin: 0 auto; }
}
