/* DetailProof — landing page
   Dark automotive theme matching the iOS app palette. */

:root {
  --bg: #0A0E18;
  --bg-2: #0B1220;
  --bg-3: #0F172A;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --primary: #2563EB;
  --primary-2: #1D4ED8;
  --primary-soft: rgba(37,99,235,0.18);
  --teal: #14B8A6;
  --warning: #F59E0B;
  --success: #22C55E;
  --on-dark: #F8FAFC;
  --on-dark-muted: #94A3B8;
  --on-dark-dim: #64748B;
  --accent: #60A5FA;

  --shadow-card: 0 18px 48px -20px rgba(0,0,0,0.6);
  --shadow-glow: 0 22px 60px -18px rgba(37,99,235,0.55);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--on-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }

/* =================== TOP NAV =================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,24,0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--on-dark);
  font-size: 17px;
}
.nav-logo {
  width: 28px; height: 28px;
  border-radius: 7px;
  object-fit: cover;
}
.nav-brandtext { color: var(--on-dark); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: var(--on-dark-muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-mobile-toggle {
  display: none;
  background: transparent; border: none;
  color: var(--on-dark);
  cursor: pointer; padding: 6px;
}
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  flex-direction: column; gap: 14px;
  background: rgba(10,14,24,0.94);
}
.nav-mobile a { color: var(--on-dark-muted); font-size: 15px; }
.nav-mobile.open { display: flex; }

/* =================== BUTTONS =================== */
.btn-primary, .btn-ghost, .btn-light {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 600; font-size: 14px;
  padding: 9px 16px;
  border-radius: 10px;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: transform 0.12s ease, background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 24px -10px rgba(37,99,235,0.6);
}
.btn-primary:hover { background: var(--primary-2); transform: translateY(-1px); }
.btn-ghost {
  background: var(--surface);
  color: var(--on-dark);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); }
.btn-light {
  background: white; color: #0F172A;
}
.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 12px;
}
.btn-block { width: 100%; }
.play-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
  isolation: isolate;
  min-height: 720px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-car-photo {
  position: absolute;
  top: 0; right: 0;
  width: 78%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.95;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, var(--bg) 22%, rgba(10,14,24,0.85) 38%, rgba(10,14,24,0.5) 60%, rgba(10,14,24,0.7) 100%),
    linear-gradient(180deg, rgba(10,14,24,0.5) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}
.hero-light-streak {
  position: absolute;
  top: 8%; right: 4%;
  width: 3px; height: 70%;
  background: linear-gradient(180deg, transparent, rgba(96,165,250,0.6), transparent);
  filter: blur(2px);
  box-shadow: 0 0 60px 8px rgba(96,165,250,0.45);
  opacity: 0.65;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 580px;
}
.hero-headline {
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 22px;
}
.text-accent {
  background: linear-gradient(120deg, #60A5FA, #5EEAD4 60%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 15px;
  color: var(--on-dark-muted);
  max-width: 460px;
  margin: 0 0 30px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* =================== PHONE MOCKUP =================== */
.hero-phone {
  display: flex; justify-content: center;
}
.phone-frame {
  width: 290px; height: 600px;
  background: #000;
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #1a1a1a,
    0 0 0 4px #2a2a2a,
    0 40px 100px -20px rgba(0,0,0,0.7),
    0 22px 60px -18px rgba(37,99,235,0.45);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 16px;
  z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-statusbar {
  height: 34px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px 0;
  font-size: 12px; font-weight: 600;
  color: white;
}
.phone-statusbar.small { padding: 12px 18px 0; height: 28px; }
.statusbar-icons {
  display: flex; align-items: center; gap: 5px;
  color: white;
}
.phone-content {
  flex: 1;
  padding: 12px 16px 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  gap: 12px;
}
.phone-header h3 {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.phone-section-title {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px;
  color: var(--on-dark-muted);
  font-weight: 600;
}
.phone-section-title.small { font-size: 10px; }
.muted { color: var(--on-dark-muted); }
.phone-job {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 8px 10px;
}
.phone-job-thumb {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2D3B55, #1E293B);
  position: relative;
  flex-shrink: 0;
}
.phone-job-thumb::after {
  content: '';
  position: absolute; inset: 8px 6px;
  border-radius: 4px;
  background: rgba(96,165,250,0.4);
  clip-path: polygon(20% 60%, 30% 40%, 50% 35%, 70% 40%, 80% 60%, 80% 80%, 20% 80%);
}
.phone-job-text { flex: 1; min-width: 0; }
.phone-job-title { font-size: 11px; font-weight: 600; color: var(--on-dark); }
.phone-job-sub { font-size: 9px; color: var(--on-dark-muted); margin-top: 1px; }
.badge {
  font-size: 9px; font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-amber { background: rgba(245,158,11,0.18); color: #FBBF24; }
.badge-green { background: rgba(34,197,94,0.18); color: #86EFAC; }
.phone-quickgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-quick {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px;
  display: flex; flex-direction: column; gap: 3px;
}
.phone-quick-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2px;
}
.phone-quick-title { font-size: 10px; font-weight: 700; color: var(--on-dark); }
.phone-quick-sub { font-size: 8.5px; color: var(--on-dark-muted); line-height: 1.3; }
.phone-tabbar {
  height: 60px;
  background: rgba(11,18,32,0.95);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 0 8px 16px;
}
.phone-tab {
  display: flex; align-items: center; justify-content: center;
  color: var(--on-dark-muted);
  height: 28px;
}
.phone-tab.active { color: var(--on-dark); }
.phone-tab-cam {
  background: var(--primary);
  width: 44px; height: 32px;
  border-radius: 10px;
  margin: 0 auto;
  color: white;
  box-shadow: 0 6px 18px -6px rgba(37,99,235,0.7);
}

/* =================== HERO PILLARS =================== */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 60px;
}
.pillar {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(96,165,250,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-title { font-size: 14px; font-weight: 700; color: var(--on-dark); }
.pillar-sub { font-size: 12px; color: var(--on-dark-muted); margin-top: 2px; }

/* =================== TRUST BAR =================== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.trust-item {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--on-dark-muted);
}

/* =================== SECTIONS =================== */
.section { padding: 90px 0; }
.section-tight { padding: 70px 0; }
.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--on-dark);
}
.section-subtitle {
  text-align: center;
  color: var(--on-dark-muted);
  margin: 0 auto 40px;
  font-size: 15px;
  max-width: 580px;
}

/* =================== FEATURE GRID =================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96,165,250,0.3);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(96,165,250,0.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 13px;
  color: var(--on-dark-muted);
  line-height: 1.5;
  margin: 0;
}

/* =================== HOW IT WORKS =================== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
}
.how-step {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.how-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(96,165,250,0.10);
  border: 1px solid rgba(96,165,250,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.how-num {
  display: inline-flex;
  background: rgba(96,165,250,0.18);
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  width: 26px; height: 26px;
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.how-step h4 {
  margin: 4px 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-dark);
}
.how-step p {
  margin: 0;
  font-size: 12px;
  color: var(--on-dark-muted);
  max-width: 200px;
  line-height: 1.5;
}
.how-arrow { display: flex; align-items: center; justify-content: center; }

/* =================== PHONE SCREEN GRID =================== */
.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
  align-items: end;
}
.screen-cell { display: flex; flex-direction: column; align-items: center; }
.phone-mini {
  width: 220px; height: 460px;
  border-radius: 36px;
  padding: 6px;
  margin-bottom: 16px;
}
.phone-mini::before { width: 70px; height: 18px; top: 12px; }
.phone-mini .phone-screen { border-radius: 30px; }
.phone-mini .phone-content { padding: 10px 12px 10px; gap: 8px; }
.phone-mini .phone-header h3 { font-size: 14px; }
.phone-mini .phone-statusbar { padding: 10px 14px 0; height: 24px; font-size: 10px; }
.phone-card-sm {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 8px 10px;
}
.phone-card-sm-title { font-size: 11px; font-weight: 700; }
.phone-card-sm-sub { font-size: 9px; color: var(--on-dark-muted); }
.phone-checklist { display: flex; flex-direction: column; gap: 5px; }
.phone-check-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 10px;
  color: var(--on-dark-muted);
}
.phone-check-circle {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.phone-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--primary);
  color: white;
  font-size: 10px; font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  margin-top: auto;
  margin-bottom: 4px;
}
.phone-tabs-sm {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 3px;
  border-radius: 8px;
}
.phone-tabs-sm.small-pill { width: 70%; margin: 0 auto; }
.phone-tab-sm {
  flex: 1; text-align: center;
  font-size: 9px; font-weight: 600;
  padding: 5px;
  border-radius: 6px;
  color: var(--on-dark-muted);
}
.phone-tab-sm.active {
  background: rgba(255,255,255,0.10);
  color: var(--on-dark);
}
.phone-car-topdown {
  height: 130px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.2), transparent 50%),
    linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: 10px;
  position: relative;
}
.phone-car-topdown::after {
  content: '';
  position: absolute; inset: 16px 28px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  clip-path: polygon(35% 5%, 65% 5%, 70% 18%, 75% 35%, 75% 65%, 70% 82%, 65% 95%, 35% 95%, 30% 82%, 25% 65%, 25% 35%, 30% 18%);
}
.phone-finding {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 6px 8px;
}
.finding-thumb {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, #334155, #1E293B);
}
.finding-text { font-size: 9px; }
.finding-text > div:first-child { font-weight: 600; color: var(--on-dark); }
.phone-compare {
  height: 200px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.phone-compare::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(37,99,235,0.3), transparent 60%);
}
.compare-divider {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: white;
  transform: translateX(-1px);
}
.compare-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 24px; height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.phone-cta-row {
  display: flex; gap: 6px; margin-top: 6px;
}
.phone-pill {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 5px;
  font-size: 9px; color: var(--on-dark-muted); font-weight: 600;
}
.phone-summary {
  display: flex; flex-direction: column; gap: 4px;
}
.phone-summary > div {
  display: flex; justify-content: space-between;
  font-size: 9px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 5px 8px;
}
.phone-summary > div > span:last-child { color: var(--on-dark); font-weight: 600; }
.phone-damage { font-size: 9.5px; }
.phone-signature {
  background: white;
  border-radius: 8px;
  padding: 8px 10px;
  height: 60px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.sig-script {
  font-family: 'Brush Script MT', cursive, serif;
  font-size: 18px;
  color: #1F2937;
  font-style: italic;
}
.sig-date {
  font-size: 8px;
  color: #6B7280;
}
.screen-caption {
  text-align: center;
  font-size: 12px;
  color: var(--on-dark-muted);
  line-height: 1.5;
  max-width: 220px;
}
.screen-caption strong { color: var(--on-dark); font-size: 13px; }

/* =================== PROTECT GRID =================== */
.protect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.protect-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 0 22px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.protect-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96,165,250,0.3);
}
.protect-illustration {
  height: 130px;
  position: relative;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  margin-bottom: 14px;
}
.protect-illustration::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(37,99,235,0.35), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(20,184,166,0.18), transparent 50%);
}
.protect-illustration::after {
  content: '';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
}
.protect-shield::after { content: '🛡️'; }
.protect-process::after { content: '📱'; }
.protect-cloud::after { content: '☁️'; }
.protect-trust::after { content: '🤝'; }
.protect-card h4 {
  margin: 0 18px 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -0.005em;
}
.protect-card p {
  margin: 0 18px;
  font-size: 12px;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

/* =================== PRICING =================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto; margin-right: auto;
}
.price-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  text-align: center;
}
.price-card.popular {
  background: linear-gradient(180deg, rgba(37,99,235,0.18), rgba(37,99,235,0.04));
  border-color: rgba(96,165,250,0.5);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}
.price-popular-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-tier {
  font-size: 14px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.price-tier-sub {
  font-size: 12px;
  color: var(--on-dark-muted);
  margin-top: 4px;
}
.price-amount {
  font-size: 44px; font-weight: 800;
  color: var(--on-dark);
  letter-spacing: -0.025em;
  margin: 18px 0 4px;
}
.price-amount span {
  font-size: 14px; font-weight: 600;
  color: var(--on-dark-muted);
}
.price-billed {
  font-size: 11px; color: var(--on-dark-muted);
  margin-bottom: 18px;
}
.price-features {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  text-align: left;
}
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--on-dark);
}
.check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(96,165,250,0.18);
  position: relative;
  flex-shrink: 0;
}
.check::after {
  content: '';
  position: absolute; top: 4px; left: 3.5px;
  width: 7px; height: 4px;
  border-left: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}
.pricing-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--on-dark-muted);
}

/* =================== TESTIMONIALS =================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
}
.stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.testimonial p {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--on-dark);
  line-height: 1.6;
}
.testimonial-person {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
}
.testimonial-person strong { color: var(--on-dark); font-size: 13px; }
.testimonial-person span { color: var(--on-dark-muted); }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.avatar-1 { background: linear-gradient(135deg, #475569, #1E293B); }
.avatar-2 { background: linear-gradient(135deg, #DB2777, #831843); }
.avatar-3 { background: linear-gradient(135deg, #2563EB, #1E3A8A); }
.testimonial-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 50%;
  background: rgba(255,255,255,0.15);
  border-radius: 50% 50% 0 0;
}

/* =================== FAQ =================== */
.faq { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--on-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--on-dark-muted);
  transition: transform 0.2s ease;
}
.faq-toggle::before {
  top: 8px; left: 0;
  width: 18px; height: 2px;
  border-radius: 1px;
}
.faq-toggle::after {
  top: 0; left: 8px;
  width: 2px; height: 18px;
  border-radius: 1px;
}
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); }
.faq-body {
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--on-dark-muted);
  line-height: 1.6;
}

/* =================== CTA BANNER =================== */
.cta-banner {
  position: relative;
  background:
    radial-gradient(circle at 80% 50%, rgba(37,99,235,0.2), transparent 50%),
    linear-gradient(135deg, #0F172A, #0B1220);
  border: 1px solid rgba(96,165,250,0.25);
  border-radius: 20px;
  padding: 50px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
.cta-banner-text h3 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  line-height: 1.15;
}
.cta-banner-text p {
  color: var(--on-dark-muted);
  font-size: 14px;
  margin: 0 0 22px;
}
.cta-banner-buttons { display: flex; gap: 10px; }
.cta-banner-art {
  height: 180px;
  background:
    radial-gradient(ellipse at center, rgba(37,99,235,0.25), transparent 60%);
  position: relative;
}
.cta-banner-art::after {
  content: '🚗';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 110px;
  filter: drop-shadow(0 18px 40px rgba(37,99,235,0.4));
}

/* =================== FOOTER =================== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 50px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-grid h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin: 4px 0 14px;
}
.footer-grid a {
  display: block;
  font-size: 13px;
  color: var(--on-dark-muted);
  padding: 5px 0;
  transition: color 0.15s ease;
}
.footer-grid a:hover { color: var(--on-dark); }
.footer-blurb {
  margin: 14px 0 18px;
  font-size: 13px;
  color: var(--on-dark-muted);
  max-width: 280px;
  line-height: 1.55;
}
.socials {
  display: flex; gap: 8px;
}
.socials a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-dark-muted);
  padding: 0;
}
.socials a:hover { background: rgba(255,255,255,0.10); color: var(--on-dark); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--on-dark-dim);
  text-align: center;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .hero-headline { font-size: 52px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .protect-grid { grid-template-columns: repeat(2, 1fr); }
  .screen-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .hero { padding: 50px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-headline { font-size: 44px; }
  .hero-pillars { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; padding: 14px; }
  .section { padding: 60px 0; }
  .section-tight { padding: 50px 0; }
  .section-title { font-size: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 18px; }
  .how-arrow { transform: rotate(90deg); }
  .screen-grid { grid-template-columns: 1fr; }
  .protect-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 30px; }
  .cta-banner-text h3 { font-size: 24px; }
  .cta-banner-art { height: 100px; }
  .cta-banner-art::after { font-size: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
