/* ============================================================
   Financial Safeguard Consulting
   motor-insurance.css — Complete Self-Contained Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────── */
:root {
  --navy-deep:    #050D1A;
  --navy-mid:     #0B1929;
  --navy-card:    #0D1F38;
  --gold:         #C9A84C;
  --gold-light:   #E2C97E;
  --gold-dim:     rgba(201,168,76,0.12);
  --gold-border:  rgba(201,168,76,0.25);
  --red-dim:      rgba(255,80,80,0.07);
  --red-border:   rgba(255,80,80,0.22);
  --red-txt:      #FF7575;
  --green-dim:    rgba(72,199,142,0.08);
  --green-border: rgba(72,199,142,0.25);
  --green-txt:    #48C78E;
  --white:        #FFFFFF;
  --w85:          rgba(255,255,255,0.85);
  --w65:          rgba(255,255,255,0.65);
  --w55:          rgba(255,255,255,0.55);
  --w35:          rgba(255,255,255,0.35);
  --w25:          rgba(255,255,255,0.25);
  --w10:          rgba(255,255,255,0.07);
  --font-d:       'Cormorant Garamond', Georgia, serif;
  --font-b:       'Outfit', sans-serif;
  --rsm:          6px;
  --rmd:          12px;
  --rlg:          20px;
  --ease:         0.32s cubic-bezier(0.4,0,0.2,1);
  --mw:           1160px;
  --sp:           96px 24px;
}

/* ─────────────────────────────────────
   RESET & BASE
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }

/* ─────────────────────────────────────
   UTILITY
───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(30px,3.6vw,50px);
  font-weight: 300; line-height: 1.14;
  letter-spacing: -0.5px; color: var(--white); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-body { font-size: 15px; font-weight: 300; color: var(--w55); line-height: 1.85; }

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatSlow {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}
@keyframes pulseRing {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%     { box-shadow: 0 0 0 10px rgba(201,168,76,0.07); }
}

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-b); font-size: 14px; font-weight: 600; letter-spacing: .5px;
  padding: 15px 34px; border: none; border-radius: var(--rsm);
  cursor: pointer; display: inline-block;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.26);
}
.btn-ghost {
  background: transparent; color: var(--w85);
  font-family: var(--font-b); font-size: 14px; font-weight: 400;
  padding: 15px 34px; border: 1px solid var(--w25); border-radius: var(--rsm);
  cursor: pointer; display: inline-block;
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn-ghost:hover { border-color: var(--w85); color: var(--white); transform: translateY(-2px); }

/* ─────────────────────────────────────
   NAVBAR
───────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,13,26,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: background var(--ease);
}
.navbar.scrolled { background: rgba(5,13,26,0.98); }
.nav-brand { font-family: var(--font-d); font-size: 18px; font-weight: 600; color: var(--white); white-space: nowrap; }
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 13.5px; font-weight: 400; color: var(--w55); transition: color var(--ease); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: transparent; border: 1px solid var(--gold-border); color: var(--gold);
  font-family: var(--font-b); font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: var(--rsm); cursor: pointer;
  transition: background var(--ease), color var(--ease); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--w85); transition: transform var(--ease); }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 130px 24px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 78% 30%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 8% 85%,  rgba(11,25,41,0.85) 0%, transparent 55%),
    linear-gradient(158deg, #030A14 0%, var(--navy-deep) 45%, #071220 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 92% 88% at 50% 50%, transparent 38%, rgba(3,10,20,0.6) 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.033) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, black 0%, transparent 72%);
}
.orb-gold {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.055) 0%, transparent 65%);
  top: -140px; right: -160px; pointer-events: none;
  animation: floatSlow 13s ease-in-out infinite;
}
.hero-content { position: relative; max-width: 740px; animation: fadeUp 1s ease both; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.breadcrumb a { font-size: 12px; color: var(--w25); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { font-size: 10px; color: var(--w25); }
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(40px,5.5vw,70px);
  font-weight: 300; line-height: 1.08; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 16.5px; font-weight: 300; color: var(--w65); max-width: 540px; line-height: 1.85; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 44px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.h-stat { display: flex; flex-direction: column; gap: 5px; }
.h-stat-num { font-family: var(--font-d); font-size: 36px; font-weight: 600; color: var(--gold); line-height: 1; }
.h-stat-lbl { font-size: 12px; font-weight: 300; color: var(--w55); line-height: 1.5; max-width: 140px; }

/* ─────────────────────────────────────
   TRUTH BANNER — "Most people compare price"
───────────────────────────────────── */
.truth-banner {
  padding: 72px 24px;
  background: linear-gradient(135deg, #020810, #06101E 50%, #020810);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  text-align: center; position: relative; overflow: hidden;
}
.truth-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 90% at 50% 50%, rgba(201,168,76,0.045) 0%, transparent 65%);
  pointer-events: none;
}
.truth-banner-inner { position: relative; max-width: 800px; margin: 0 auto; }
.tb-rule { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.6), transparent); margin: 0 auto 28px; }
.tb-tag { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 22px; display: block; }
.tb-headline {
  font-family: var(--font-d);
  font-size: clamp(32px,4.5vw,58px);
  font-weight: 300; line-height: 1.12; letter-spacing: -1px;
  color: var(--white); margin-bottom: 20px;
}
.tb-headline em { font-style: italic; color: var(--gold-light); }
.tb-body { font-size: 17px; font-weight: 300; color: var(--w65); line-height: 1.85; max-width: 620px; margin: 0 auto; }
.tb-body strong { color: white; font-weight: 500; }

/* ─────────────────────────────────────
   WHY MANDATORY
───────────────────────────────────── */
.mandatory-section { padding: var(--sp); background: var(--navy-mid); }
.mandatory-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; margin-top: 48px; }
.mandatory-card {
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold); border-radius: var(--rlg); padding: 34px 30px;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.mandatory-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: 0 22px 52px rgba(0,0,0,0.38); }
.mc-icon { width: 48px; height: 48px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background var(--ease); }
.mandatory-card:hover .mc-icon { background: rgba(201,168,76,0.22); }
.mc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.mandatory-card h3 { font-family: var(--font-d); font-size: 21px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.mandatory-card p { font-size: 13.5px; font-weight: 300; color: var(--w55); line-height: 1.75; }

/* ─────────────────────────────────────
   DEALERSHIP MISTAKES
───────────────────────────────────── */
.mistakes-section { padding: var(--sp); background: var(--navy-deep); }
.mistakes-intro { max-width: 640px; margin-bottom: 52px; }
.mistakes-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; }
.mistake-card {
  background: var(--red-dim); border: 1px solid var(--red-border);
  border-radius: var(--rlg); padding: 32px 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.mistake-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.36); }
.mistake-num { font-family: var(--font-d); font-size: 36px; font-weight: 700; color: var(--red-txt); opacity: 0.5; line-height: 1; margin-bottom: 10px; }
.mistake-card h3 { font-family: var(--font-d); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.mistake-card p { font-size: 13.5px; font-weight: 300; color: var(--w55); line-height: 1.75; }
.mistake-warning { margin-top: 14px; padding: 11px 14px; background: rgba(255,80,80,0.1); border-left: 2px solid var(--red-txt); border-radius: 0 var(--rsm) var(--rsm) 0; font-size: 12.5px; color: var(--red-txt); line-height: 1.6; }

/* ─────────────────────────────────────
   ADD-ONS GRID — all 10
───────────────────────────────────── */
.addons-section { padding: var(--sp); background: var(--navy-mid); }
.addons-intro { max-width: 640px; margin-bottom: 56px; }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 20px; }
.addon-card {
  background: var(--navy-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--rlg); padding: 34px 30px;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.addon-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--rlg);
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent 55%);
  opacity: 0; transition: opacity var(--ease);
}
.addon-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: 0 22px 56px rgba(0,0,0,0.38); }
.addon-card:hover::before { opacity: 1; }
.addon-icon { width: 48px; height: 48px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; transition: background var(--ease); }
.addon-card:hover .addon-icon { background: rgba(201,168,76,0.22); }
.addon-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.addon-num { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0.6; margin-bottom: 8px; }
.addon-card h3 { font-family: var(--font-d); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.addon-card p { font-size: 13.5px; font-weight: 300; color: var(--w55); line-height: 1.78; flex: 1; }
.addon-example {
  margin-top: 16px; padding: 13px 15px;
  background: rgba(201,168,76,0.06); border-left: 2px solid var(--gold);
  border-radius: 0 var(--rsm) var(--rsm) 0;
  font-size: 12.5px; color: var(--gold-light); font-style: italic; line-height: 1.65;
}
.addon-example strong { font-style: normal; color: var(--gold); }
.addon-warning {
  margin-top: 12px; padding: 11px 14px;
  background: var(--red-dim); border-left: 2px solid var(--red-txt);
  border-radius: 0 var(--rsm) var(--rsm) 0;
  font-size: 12.5px; color: var(--red-txt); line-height: 1.6;
}
.addon-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border);
}

/* ─────────────────────────────────────
   COMPARISON TABLE — Basic vs Comprehensive
───────────────────────────────────── */
.compare-section { padding: var(--sp); background: var(--navy-deep); }
.compare-intro { max-width: 640px; margin-bottom: 52px; }
.compare-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cmp-card { border-radius: var(--rlg); padding: 40px 36px; border: 1px solid rgba(255,255,255,0.07); }
.cmp-card.bad  { background: var(--red-dim);  border-color: var(--red-border); }
.cmp-card.good { background: rgba(201,168,76,0.04); border-color: var(--gold-border); }
.cmp-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 20px; }
.cmp-card.bad  .cmp-badge { background: rgba(255,80,80,0.12); color: var(--red-txt); }
.cmp-card.good .cmp-badge { background: var(--gold-dim); color: var(--gold); }
.cmp-card h3 { font-family: var(--font-d); font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 22px; }
.cmp-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.cmp-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; font-weight: 300; color: var(--w55); line-height: 1.55; }
.cmp-dot { display: block; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.cmp-card.bad  .cmp-dot { background: var(--red-txt); }
.cmp-card.good .cmp-dot { background: var(--gold); }

/* ─────────────────────────────────────
   HIDDEN GAPS
───────────────────────────────────── */
.gaps-section { padding: var(--sp); background: var(--navy-mid); }
.gaps-intro { max-width: 640px; margin-bottom: 52px; }
.gaps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.gap-card {
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--rlg); padding: 30px 26px;
  transition: border-color var(--ease), transform var(--ease);
}
.gap-card:hover { border-color: var(--red-border); transform: translateY(-4px); }
.gap-tag { font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red-txt); margin-bottom: 12px; }
.gap-card h4 { font-family: var(--font-d); font-size: 19px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.gap-card p { font-size: 13px; font-weight: 300; color: var(--w55); line-height: 1.72; }

/* ─────────────────────────────────────
   PROFESSIONAL QUOTE
───────────────────────────────────── */
.quote-section { padding: var(--sp); background: var(--navy-deep); }
.quote-card {
  background: var(--navy-mid); border: 1px solid var(--gold-border);
  border-radius: var(--rlg); padding: 56px 60px;
  position: relative; overflow: hidden; max-width: 900px; margin: 0 auto;
}
.quote-card::before {
  content: '\201C'; position: absolute; top: -14px; left: 32px;
  font-family: var(--font-d); font-size: 150px; color: var(--gold);
  opacity: 0.07; line-height: 1; pointer-events: none;
}
.q-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.q-text { font-family: var(--font-d); font-size: clamp(19px,2.3vw,26px); font-weight: 300; font-style: italic; color: var(--w85); line-height: 1.7; }
.q-sig { margin-top: 26px; font-size: 13px; font-weight: 400; color: var(--gold); letter-spacing: 0.5px; }

/* ─────────────────────────────────────
   CTA SECTION
───────────────────────────────────── */
.page-cta {
  padding: var(--sp); background: var(--navy-mid);
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-cta .section-label { display: block; }
.page-cta h2 {
  font-family: var(--font-d); font-size: clamp(34px,5vw,66px);
  font-weight: 300; line-height: 1.1; color: var(--white);
  max-width: 760px; margin: 0 auto 22px;
}
.page-cta h2 em { font-style: italic; color: var(--gold-light); }
.cta-sub { font-size: 16px; font-weight: 300; color: var(--w55); margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.cta-disclaimer { font-size: 11px; color: var(--w25); letter-spacing: 0.5px; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(201,168,76,0.12); padding: 60px 24px 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-d); font-size: 19px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 13px; font-weight: 300; color: var(--w55); line-height: 1.7; margin-bottom: 22px; max-width: 240px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--w55); font-size: 12px; cursor: pointer; transition: border-color var(--ease), color var(--ease), background var(--ease); }
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer-col h4 { font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 13px; font-weight: 300; color: var(--w55); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.footer-contact-item span { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.footer-contact-item a { font-size: 13px; font-weight: 300; color: var(--w55); transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 11.5px; font-weight: 300; color: var(--w25); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 11.5px; color: var(--w25); transition: color var(--ease); }
.footer-legal a:hover { color: var(--w55); }
.footer-reg { font-size: 10.5px; font-weight: 300; color: var(--w25); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 960px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(5,13,26,0.98); padding: 28px 24px 36px; gap: 24px; border-bottom: 1px solid rgba(201,168,76,0.12); z-index: 999; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .compare-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  :root { --sp: 68px 20px; }
}
@media (max-width: 640px) {
  .hero-actions, .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .hero-stats { gap: 22px; }
  .addons-grid, .mistakes-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
