/* ════════════════════════════════════════════════════
   CarInspections.eu
   Color scheme from logo: Navy #0d1b3e · Blue #1e6fd9
   Layout inspired by VinVerified.eu
   ════════════════════════════════════════════════════ */

:root {
  /* Primary — teal/dark teal from VinVerified */
  --navy:       #1d4a5a;   /* was dark blue, now teal */
  --navy-mid:   #1a3f4f;
  --navy-soft:  #245568;

  /* Accent blue (kept for labels/links only) */
  --blue:       #1e6fd9;
  --blue-l:     #3b8eff;
  --blue-pale:  #e8f1fd;
  --blue-border:#b3d0f5;

  /* Teal scale */
  --teal:       #1d4a5a;
  --teal-mid:   #1a3f4f;
  --teal-dark:  #152f3d;
  --teal-light: #245568;

  /* Warm palette */
  --cream:      #fdf5ec;
  --cream-2:    #f9ede0;
  --orange:     #d94f2a;
  --orange-l:   #e05c35;

  /* Body text — warm dark instead of cold navy */
  --ink:        #1c2b30;
  --ink-soft:   #2d4045;

  /* Neutrals */
  --green:      #16a34a;
  --green-l:    #22c55e;
  --green-pale: #f0fdf4;
  --amber:      #d97706;
  --amber-pale: #fffbeb;
  --slate:      #5a6e7a;
  --border:     #e5e7eb;
  --bg:         #f8fafc;
  --white:      #ffffff;
  --red:        #dc2626;

  --r: 12px;
  --nav-h: 64px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Instrument Sans',sans-serif; background:var(--white); color:var(--ink); overflow-x:hidden; line-height:1.6; -webkit-text-size-adjust:100%; }
h1,h2,h3,h4,h5 { font-family:'Bricolage Grotesque',sans-serif; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

/* ══ ANIMATIONS ══════════════════════════════════════ */
@keyframes fadeUp    { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes blink     { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes tick      { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes spin      { to{transform:rotate(360deg)} }
@keyframes popIn     { from{opacity:0;transform:scale(.93)} to{opacity:1;transform:scale(1)} }
@keyframes float     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(30,111,217,.4)} 70%{box-shadow:0 0 0 10px rgba(30,111,217,0)} }
@keyframes slideCarousel { 0%{opacity:0;transform:translateX(30px)} 100%{opacity:1;transform:translateX(0)} }

/* Scroll reveal */
.reveal        { opacity:0; transform:translateY(28px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible{ opacity:1; transform:translateY(0); }
.reveal-l      { opacity:0; transform:translateX(-24px); transition:opacity .6s ease,transform .6s ease; }
.reveal-l.visible{ opacity:1; transform:translateX(0); }
.reveal-r      { opacity:0; transform:translateX(24px); transition:opacity .6s ease,transform .6s ease; }
.reveal-r.visible{ opacity:1; transform:translateX(0); }

/* Stagger grid children */
.stagger > * { opacity:0; transform:translateY(18px); transition:opacity .5s ease,transform .5s ease; }
.stagger.visible > *:nth-child(1)  { opacity:1;transform:none;transition-delay:.04s }
.stagger.visible > *:nth-child(2)  { opacity:1;transform:none;transition-delay:.1s  }
.stagger.visible > *:nth-child(3)  { opacity:1;transform:none;transition-delay:.16s }
.stagger.visible > *:nth-child(4)  { opacity:1;transform:none;transition-delay:.22s }
.stagger.visible > *:nth-child(5)  { opacity:1;transform:none;transition-delay:.28s }
.stagger.visible > *:nth-child(6)  { opacity:1;transform:none;transition-delay:.34s }
.stagger.visible > *:nth-child(7)  { opacity:1;transform:none;transition-delay:.40s }
.stagger.visible > *:nth-child(8)  { opacity:1;transform:none;transition-delay:.46s }
.stagger.visible > *:nth-child(9)  { opacity:1;transform:none;transition-delay:.52s }
.stagger.visible > *:nth-child(10) { opacity:1;transform:none;transition-delay:.58s }
.stagger.visible > *:nth-child(11) { opacity:1;transform:none;transition-delay:.64s }
.stagger.visible > *:nth-child(12) { opacity:1;transform:none;transition-delay:.70s }

/* ══ NAV — RED-ORANGE like VinVerified ═══════════════ */
nav {
  position:fixed; inset:0 0 auto; z-index:300;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5%;
  background:var(--navy);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .3s, box-shadow .3s;
}
nav.scrolled { box-shadow:0 4px 24px rgba(0,0,0,.25); }
.logo {
  display:flex; align-items:center; gap:.5rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:1.1rem; font-weight:800; color:var(--white);
  letter-spacing:-.02em; flex-shrink:0;
}
.logo img { height:36px; width:auto; }
.nav-mid { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-mid a { font-size:.88rem; font-weight:500; color:rgba(255,255,255,.7); transition:color .18s; white-space:nowrap; }
.nav-mid a:hover { color:var(--white); }
.nav-cta {
  background:var(--white); color:var(--teal) !important;
  padding:.45rem 1.3rem; border-radius:6px;
  font-weight:700 !important; font-size:.85rem !important;
  transition:all .2s !important; border:2px solid var(--white);
}
.nav-cta:hover { background:transparent !important; color:var(--white) !important; }
.nav-hamburger { display:none; background:none; border:none; cursor:pointer; padding:.4rem; line-height:1; }
.hamburger-icon { display:flex; flex-direction:column; gap:5px; width:22px; }
.hamburger-icon span { display:block; height:2px; background:var(--white); border-radius:2px; transition:all .25s; }
.nav-hamburger.open .hamburger-icon span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-hamburger.open .hamburger-icon span:nth-child(2) { opacity:0; }
.nav-hamburger.open .hamburger-icon span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0;
  background:var(--navy); border-bottom:1px solid rgba(255,255,255,.08);
  padding:1rem 5% 1.5rem; z-index:299;
  flex-direction:column; gap:.1rem;
  box-shadow:0 12px 40px rgba(0,0,0,.3);
}
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:1rem; font-weight:500; color:rgba(255,255,255,.7); padding:.75rem .4rem; border-bottom:1px solid rgba(255,255,255,.06); transition:color .18s; }
.mobile-menu a:hover { color:var(--white); }
.mobile-menu a:last-child { border-bottom:none; }
.mobile-cta { background:var(--white) !important; color:var(--teal) !important; text-align:center; padding:.9rem !important; border-radius:8px; font-weight:700 !important; margin-top:.8rem; border:none !important; }

/* ══ HERO — WARM CREAM like VinVerified ══════════════ */
.hero {
  min-height:100vh;
  padding:calc(var(--nav-h) + 3rem) 5% 3rem;
  background:var(--cream);
  position:relative; overflow:hidden;
  display:flex; align-items:center;
}
/* subtle dot texture */
.hero::before {
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle, rgba(13,27,62,.06) 1px, transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
}
.hero-inner {
  width:100%;
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; gap:3rem;
  position:relative; z-index:1;
}
.hero-left { animation:fadeUp .7s ease both; }

/* Avatars row */
.hero-avatars { display:flex; align-items:center; margin-bottom:1.1rem; }
.hero-avatar {
  width:42px; height:42px; border-radius:50%;
  border:2.5px solid var(--white);
  overflow:hidden; margin-right:-12px;
  background:var(--cream-2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}
.hero-avatar:last-of-type { margin-right:0; }
.hero-join { margin-left:20px; font-size:.9rem; font-weight:600; color:var(--ink); }

/* Rating */
.hero-rating { display:flex; align-items:center; gap:.7rem; margin-bottom:1.6rem; }
.hero-rating-label { font-size:.9rem; font-weight:600; color:var(--ink); }
.hero-stars { display:flex; gap:.2rem; }
.hero-star {
  width:26px; height:26px; background:var(--green-l);
  border-radius:4px; display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:.8rem; font-weight:700;
}
.hero-star.half { background:linear-gradient(90deg,var(--green-l) 70%,rgba(34,197,94,.3) 70%); }

h1.hero-title {
  font-size:clamp(2.6rem,5vw,4rem);
  font-weight:800; letter-spacing:-.04em; line-height:1.06;
  color:var(--ink); margin-bottom:.6rem;
}
h1.hero-title em { font-style:normal; color:var(--teal); opacity:.9; }
.hero-sub-title {
  font-size:1.05rem; font-weight:500;
  color:var(--ink); opacity:.6;
  margin-bottom:2rem;
}

/* CTA button — VinVerified style dark teal */
.hero-cta-btn {
  display:inline-block;
  background:var(--teal);
  color:var(--white);
  border:none; border-radius:6px;
  padding:.9rem 2rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.95rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  cursor:pointer; transition:all .2s;
  box-shadow:0 4px 16px rgba(29,74,90,.35);
}
.hero-cta-btn:hover { background:var(--teal-mid); transform:translateY(-2px); box-shadow:0 8px 24px rgba(29,74,90,.45); }

/* VIN form (hidden on hero, shown on click of cta) */
.vin-form { display:flex; gap:.5rem; max-width:480px; margin-bottom:1.5rem; }
.vin-form input {
  flex:1; min-width:0;
  border:2px solid rgba(13,27,62,.2);
  border-radius:8px; padding:.9rem 1rem;
  font-family:'Instrument Sans',sans-serif;
  font-size:.95rem; color:var(--ink);
  letter-spacing:.07em; text-transform:uppercase;
  outline:none; background:var(--white);
  transition:border-color .2s,box-shadow .2s;
  box-shadow:0 2px 8px rgba(0,0,0,.07);
}
.vin-form input::placeholder { text-transform:none; letter-spacing:0; color:#9ca3af; }
.vin-form input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(30,111,217,.15); }
.vin-form button {
  background:var(--teal); color:var(--white);
  border:none; border-radius:8px; padding:.9rem 1.5rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.92rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  cursor:pointer; white-space:nowrap; flex-shrink:0;
  transition:all .2s; box-shadow:0 2px 12px rgba(29,74,90,.3);
}
.vin-form button:hover { background:var(--teal-mid); transform:translateY(-2px); }
.vin-form button:active { transform:translateY(0); }
.hero-trust { display:flex; gap:1.3rem; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:.4rem; font-size:.8rem; color:var(--ink); opacity:.6; }
.t-check { color:var(--green); font-weight:700; opacity:1; }

/* Hero right — car image area */
.hero-right { display:flex; justify-content:center; align-items:center; position:relative; animation:fadeUp .9s .15s ease both; }
.hero-car-wrap { position:relative; width:100%; max-width:560px; }
/* Hero car carousel */
/* Car cutout — no box, blends into cream background */
.hero-car-cutout {
  position:relative;
  width:100%;
  height:320px;
}
.hero-car-img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center bottom;
  opacity:0;
  transition:opacity 1s ease;
  mix-blend-mode:multiply; /* white bg disappears into cream */
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.18));
}
.hero-car-img.active {
  opacity:1;
}
/* floating badges like VinVerified */
.hero-badge-wrap { position:absolute; top:16px; right:-10px; display:flex; flex-direction:column; gap:.7rem; z-index:2; }
.hero-badge {
  background:var(--white);
  border-radius:12px; padding:.7rem 1rem;
  display:flex; align-items:center; gap:.6rem;
  box-shadow:0 8px 30px rgba(0,0,0,.12);
  font-size:.8rem; font-weight:600; color:var(--ink);
  white-space:nowrap;
  animation:float 4s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay:1s; }
.hero-badge-icon {
  width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; flex-shrink:0;
}
.hero-badge-icon.blue  { background:var(--blue-pale); }
.hero-badge-icon.green { background:var(--green-pale); }
.hero-badge-icon.amber { background:var(--amber-pale); }

/* ══ TICKER — DARK ════════════════════════════════ */
.trust-bar {
  background:var(--teal);
  border-top:1px solid rgba(255,255,255,.07);
  padding:.95rem 0; overflow:hidden;
}
.ticker { display:flex; gap:3rem; animation:tick 26s linear infinite; width:max-content; align-items:center; }
.ticker-item { font-family:'Bricolage Grotesque',sans-serif; font-size:.8rem; font-weight:700; color:rgba(255,255,255,.4); letter-spacing:.06em; text-transform:uppercase; white-space:nowrap; }
.ticker-sep { color:rgba(255,255,255,.18); }

/* ══ SOCIAL PROOF ═════════════════════════════════ */
.social-proof {
  background:var(--cream);
  padding:3rem 5%;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:2rem;
  border-bottom:1px solid rgba(13,27,62,.08);
}
.sp-count h2 { font-size:2rem; font-weight:800; color:var(--ink); letter-spacing:-.04em; line-height:1; }
.sp-count p  { color:var(--ink); opacity:.55; font-size:.88rem; margin-top:.2rem; }
.sp-rating { display:flex; align-items:center; gap:.9rem; }
.sp-stars { display:flex; gap:.2rem; }
.star { color:var(--green-l); font-size:1.2rem; }
.sp-rating-text h3 { font-size:1.2rem; font-weight:800; color:var(--ink); }
.sp-rating-text p  { color:var(--ink); opacity:.45; font-size:.82rem; }
.sp-btn {
  background:var(--teal); color:var(--white);
  border:none; border-radius:6px; padding:.75rem 1.8rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.9rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  cursor:pointer; transition:all .2s; white-space:nowrap;
  box-shadow:0 2px 12px rgba(29,74,90,.3);
}
.sp-btn:hover { background:var(--teal-mid); transform:translateY(-1px); }

/* ══ SHARED SECTIONS ══════════════════════════════ */
section { padding:5rem 5%; }
.s-label { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--blue); margin-bottom:.6rem; }
.s-title { font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:800; letter-spacing:-.04em; line-height:1.1; margin-bottom:.7rem; color:var(--ink); }
.s-sub   { color:var(--slate); font-size:.97rem; line-height:1.75; max-width:560px; }

/* ══ REPORT DATA — DARK TEAL like VinVerified ════ */
.report-data {
  background:var(--teal);
  padding:5rem 5%;
}
.report-data .s-title { color:var(--white); text-align:center; }
.report-data .s-sub   { color:rgba(255,255,255,.55); text-align:center; margin:0 auto; }

/* Accordion-style data cards like VinVerified */
.data-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:.75rem; margin-top:2.5rem;
}
.data-card {
  background:var(--cream);
  border-radius:10px; overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  transition:all .22s;
}
.data-card-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:.9rem 1.1rem; cursor:pointer;
  transition:background .18s;
}
.data-card-header:hover { background:rgba(253,245,236,.85); }
.data-card-left { display:flex; align-items:center; gap:.75rem; }
.data-card-icon {
  width:34px; height:34px; border-radius:50%;
  background:var(--orange); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem; flex-shrink:0;
}
.dc-title { font-family:'Bricolage Grotesque',sans-serif; font-size:.92rem; font-weight:700; color:var(--ink); }
.data-card-toggle {
  width:22px; height:22px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  color:var(--orange); font-size:1.1rem; font-weight:700; line-height:1;
  transition:transform .25s;
}
.data-card.open .data-card-toggle { transform:rotate(45deg); }
.data-card-body {
  max-height:0; overflow:hidden;
  transition:max-height .3s ease, padding .3s ease;
  background:rgba(253,245,236,.6);
}
.data-card.open .data-card-body { max-height:200px; }
.dc-desc { font-size:.83rem; color:var(--slate); line-height:1.65; padding:.1rem 1.1rem 1rem 1.1rem; }

/* ══ VERIFY BLOCK — WHITE like VinVerified ════════ */
.verify-block {
  background:var(--white);
  padding:5rem 5%; text-align:center;
}
.verify-block h2 { font-size:clamp(1.8rem,3vw,2.5rem); font-weight:800; letter-spacing:-.04em; color:var(--ink); margin-bottom:.7rem; }
.verify-block p  { color:var(--slate); font-size:.97rem; max-width:560px; margin:0 auto 2rem; }
.vb-tabs { display:flex; justify-content:center; gap:.5rem; flex-wrap:wrap; margin-bottom:0; }
.vb-tab {
  background:transparent; border:1.5px solid var(--border);
  color:var(--ink); padding:.45rem 1.1rem; border-radius:100px;
  font-size:.84rem; font-weight:500; cursor:pointer; transition:all .2s;
}
.vb-tab:hover { border-color:var(--teal); color:var(--teal); }
.vb-tab.active { background:var(--teal); border-color:var(--teal); color:var(--white); font-weight:700; }

/* ══ FEATURE CAROUSEL — light blue-grey card ═════ */
.features { background:var(--bg); padding:0 5% 5rem; }
.feature-carousel {
  background:#eef4f8;
  border-radius:18px; overflow:hidden;
  position:relative;
  margin-top:2.5rem;
}
.feature-slide {
  display:none;
  grid-template-columns:1fr 1fr;
  align-items:center; gap:0;
  min-height:280px;
}
.feature-slide.active { display:grid; animation:slideCarousel .35s ease; }
.feat-content { padding:3rem 3rem 3rem 3.5rem; }
.feat-content h3 {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:1.5rem; font-weight:800; letter-spacing:-.03em;
  color:var(--ink); margin-bottom:.8rem; line-height:1.25;
}
.feat-content p { color:var(--slate); font-size:.95rem; line-height:1.75; margin-bottom:1.5rem; }
.feat-cta-btn {
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--teal); color:var(--white);
  border:none; border-radius:6px; padding:.7rem 1.5rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.88rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  cursor:pointer; transition:all .2s;
}
.feat-cta-btn:hover { background:var(--teal-mid); transform:translateY(-1px); }
.feat-visual-panel {
  display:flex; align-items:center; justify-content:center;
  padding:2.5rem; background:var(--cream-2);
  min-height:280px;
}
.feat-img-box {
  width:160px; height:160px;
  background:var(--cream); border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  font-size:5rem; box-shadow:0 8px 32px rgba(0,0,0,.1);
}
/* carousel nav arrows */
.carousel-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  display:flex; align-items:center; justify-content:space-between;
  width:100%; padding:0 1rem; pointer-events:none;
}
.carousel-arrow {
  width:40px; height:40px; border-radius:50%;
  background:var(--white); border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; pointer-events:all;
  color:var(--navy); font-size:.85rem;
  transition:all .18s; box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.carousel-arrow:hover { background:var(--teal); border-color:var(--teal); color:var(--white); }

/* ══ HOW IT WORKS ═════════════════════════════════ */
.how { background:var(--white); }
.how-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; margin-top:3rem; position:relative; }
.how-grid::before {
  content:''; position:absolute;
  top:28px; left:12%; width:76%; height:1.5px;
  background:repeating-linear-gradient(90deg,var(--blue-border) 0,var(--blue-border) 8px,transparent 8px,transparent 16px);
}
.how-step { text-align:center; }
.how-num {
  width:56px; height:56px; border-radius:50%;
  background:var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.3rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:1.1rem; font-weight:800;
  position:relative; z-index:1;
  box-shadow:0 4px 16px rgba(13,27,62,.25);
  transition:background .2s, transform .2s;
}
.how-step:hover .how-num { background:var(--teal); transform:scale(1.08); }
.how-title { font-family:'Bricolage Grotesque',sans-serif; font-size:.93rem; font-weight:700; color:var(--ink); margin-bottom:.45rem; }
.how-desc  { font-size:.8rem; color:var(--slate); line-height:1.65; }

/* ══ PRICING CTA — DARK NAVY ══════════════════════ */
.pricing-cta {
  background:#0f2530;
  padding:6rem 5%; text-align:center;
  position:relative; overflow:hidden;
}
.pricing-cta::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(30,111,217,.12) 0%,transparent 60%);
  top:50%; left:50%; transform:translate(-50%,-50%);
  width:800px; height:800px;
  pointer-events:none;
}
.pricing-cta h2 { font-size:clamp(1.9rem,3.5vw,2.9rem); font-weight:800; letter-spacing:-.045em; color:var(--white); margin-bottom:.4rem; position:relative; }
.pricing-cta-from  { font-size:.97rem; color:rgba(255,255,255,.5); margin-bottom:.3rem; position:relative; }
.pricing-cta-price {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:3.2rem; font-weight:800; color:var(--white);
  letter-spacing:-.05em; line-height:1; margin-bottom:1.3rem; position:relative;
}
.pricing-cta-price sup { font-size:1.5rem; font-weight:600; color:var(--blue-l); }
.pricing-cta p { color:rgba(255,255,255,.45); font-size:.97rem; max-width:600px; margin:0 auto 2rem; line-height:1.75; position:relative; }
.pct-btn {
  display:inline-block;
  background:var(--white); color:var(--teal);
  border:none; border-radius:6px; padding:.95rem 2.5rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:1rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase;
  cursor:pointer; transition:all .2s; position:relative;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
}
.pct-btn:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(0,0,0,.3); }

/* ══ SUPPORT ══════════════════════════════════════ */
.support { background:var(--bg); }
.support-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.5rem; }
.support-card {
  text-align:center; padding:2.5rem 1.5rem;
  background:var(--white);
  border:1.5px solid var(--border); border-radius:var(--r);
  transition:all .25s;
}
.support-card:hover { border-color:var(--blue-border); box-shadow:0 8px 32px rgba(30,111,217,.08); transform:translateY(-4px); }
.sup-icon { font-size:2.5rem; margin-bottom:1rem; display:block; }
.sup-val  { font-family:'Bricolage Grotesque',sans-serif; font-size:2.2rem; font-weight:800; color:var(--blue); margin-bottom:.25rem; }
.sup-label{ font-size:.86rem; color:var(--slate); }

/* ══ BLOG ═════════════════════════════════════════ */
.blog { background:var(--teal); }
.blog .s-label { color:rgba(255,255,255,.5); }
.blog .s-title { color:var(--white); }
.blog .s-sub   { color:rgba(255,255,255,.45); }
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.3rem; margin-top:2.5rem; }
.blog-card {
  background:var(--cream);
  border-radius:var(--r); overflow:hidden;
  transition:all .25s; display:block;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
}
.blog-card:hover { transform:translateY(-5px); box-shadow:0 16px 48px rgba(0,0,0,.2); }
.blog-img { width:100%; height:200px; display:flex; align-items:center; justify-content:center; font-size:3rem; background:var(--cream-2); overflow:hidden; }
.blog-body { padding:1.3rem; }
.blog-tag   { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--blue); margin-bottom:.5rem; }
.blog-title { font-family:'Bricolage Grotesque',sans-serif; font-size:.97rem; font-weight:700; color:var(--ink); line-height:1.35; margin-bottom:.5rem; }
.blog-excerpt{ font-size:.8rem; color:var(--slate); line-height:1.55; margin-bottom:.55rem; }
.blog-read  { font-size:.81rem; color:var(--blue); font-weight:600; }

/* ══ FAQ ══════════════════════════════════════════ */
.faq { background:var(--white); }
.faq-list { display:flex; flex-direction:column; gap:.6rem; margin-top:2.5rem; max-width:780px; }
.faq-item { background:var(--white); border:1.5px solid var(--border); border-radius:10px; overflow:hidden; transition:border-color .2s; }
.faq-item.open { border-color:var(--blue-border); }
.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 1.3rem; background:none; border:none; cursor:pointer;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.93rem; font-weight:700; color:var(--ink); text-align:left; gap:1rem;
  transition:background .15s;
}
.faq-q:hover { background:var(--bg); }
.faq-chev {
  width:22px; height:22px; flex-shrink:0;
  border-radius:50%; background:var(--cream);
  border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:.65rem; color:var(--ink);
  transition:all .25s;
}
.faq-item.open .faq-chev { background:var(--teal); border-color:var(--teal); color:var(--white); transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a { max-height:400px; }
.faq-a-in { padding:0 1.3rem 1.2rem; font-size:.87rem; color:var(--slate); line-height:1.75; }
.faq-a-in ul { margin-left:1.2rem; margin-top:.5rem; display:flex; flex-direction:column; gap:.3rem; }

/* ══ PAGE HERO ════════════════════════════════════ */
.page-hero {
  padding:calc(var(--nav-h) + 3rem) 5% 3.5rem;
  background:var(--cream); text-align:center;
  border-bottom:1px solid rgba(13,27,62,.08);
}
.page-hero .s-label { color:var(--blue); }
.page-hero h1 { font-size:clamp(1.9rem,4vw,3rem); font-weight:800; letter-spacing:-.04em; color:var(--ink); margin-bottom:.7rem; }
.page-hero p  { color:var(--slate); font-size:.97rem; max-width:520px; margin:0 auto; line-height:1.75; }

/* ══ PLANS ════════════════════════════════════════ */
.plans-section { background:var(--bg); padding:5rem 5%; }
.plans-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; max-width:920px; margin:0 auto; }
.plan {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:16px; padding:2rem 1.8rem;
  position:relative; transition:all .25s;
}
.plan:hover { transform:translateY(-5px); box-shadow:0 20px 60px rgba(0,0,0,.08); }
.plan.hot { border-color:var(--teal); box-shadow:0 8px 32px rgba(29,74,90,.12); }
.plan-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--teal); color:var(--white);
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.68rem; font-weight:800;
  padding:.25rem .9rem; border-radius:100px;
  text-transform:uppercase; letter-spacing:.07em; white-space:nowrap;
}
.plan-name    { font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--slate); margin-bottom:.45rem; }
.plan-price   { font-family:'Bricolage Grotesque',sans-serif; font-size:2.5rem; font-weight:800; letter-spacing:-.04em; color:var(--ink); line-height:1; margin-bottom:.3rem; }
.plan-price sup{ font-size:1.2rem; font-weight:600; color:var(--slate); }
.plan-tagline { font-size:.8rem; color:var(--slate); margin-bottom:1.4rem; line-height:1.4; }
.plan-list    { list-style:none; display:flex; flex-direction:column; gap:.55rem; margin-bottom:1.7rem; }
.plan-list li { font-size:.85rem; color:var(--ink); display:flex; align-items:flex-start; gap:.5rem; line-height:1.4; }
.plan-list li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; margin-top:.05rem; }
.plan-list li.no { color:#9ca3af; }
.plan-list li.no::before { content:'–'; color:#d1d5db; }
.plan-cta { width:100%; padding:.88rem; border-radius:8px; border:none; font-family:'Bricolage Grotesque',sans-serif; font-size:.93rem; font-weight:700; cursor:pointer; transition:all .2s; letter-spacing:.03em; }
.cta-ghost  { background:var(--bg); border:1.5px solid var(--border); color:var(--ink); }
.cta-ghost:hover  { background:var(--teal); color:var(--white); border-color:var(--teal); }
.cta-solid  { background:var(--teal); color:var(--white); box-shadow:0 2px 12px rgba(29,74,90,.3); }
.cta-solid:hover  { background:var(--teal-mid); }

/* ══ FOOTER ═══════════════════════════════════════ */
footer { background:#0f2530; padding:3.5rem 5% 2rem; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2.5rem; margin-bottom:2.5rem; }
.f-logo { font-family:'Bricolage Grotesque',sans-serif; font-size:1.05rem; font-weight:800; color:var(--white); margin-bottom:.65rem; display:flex; align-items:center; gap:.5rem; }
.f-logo img { height:30px; width:auto; }
.f-desc { color:rgba(255,255,255,.3); font-size:.81rem; line-height:1.7; max-width:230px; }
.f-col-title { font-family:'Bricolage Grotesque',sans-serif; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.09em; color:rgba(255,255,255,.3); margin-bottom:.85rem; }
.f-links { list-style:none; display:flex; flex-direction:column; gap:.45rem; }
.f-links a { color:rgba(255,255,255,.32); font-size:.82rem; transition:color .18s; }
.f-links a:hover { color:var(--blue-l); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding-top:1.3rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.8rem; font-size:.76rem; color:rgba(255,255,255,.2); }

/* ══ MODAL ════════════════════════════════════════ */
.overlay { display:none; position:fixed; inset:0; z-index:500; background:rgba(0,0,0,.65); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); align-items:center; justify-content:center; padding:1rem; }
.overlay.show { display:flex; }
.modal { background:var(--white); border-radius:18px; width:100%; max-width:480px; max-height:92vh; overflow-y:auto; box-shadow:0 40px 120px rgba(0,0,0,.35); animation:popIn .22s cubic-bezier(.34,1.56,.64,1); }
.modal-head { display:flex; align-items:center; justify-content:space-between; padding:1.2rem 1.6rem; border-bottom:1px solid var(--border); position:sticky; top:0; background:var(--white); z-index:1; border-radius:18px 18px 0 0; }
.modal-head-title { font-family:'Bricolage Grotesque',sans-serif; font-size:.97rem; font-weight:800; color:var(--ink); }
.modal-x { background:var(--bg); border:1px solid var(--border); border-radius:50%; width:28px; height:28px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:.9rem; color:var(--slate); transition:all .15s; flex-shrink:0; }
.modal-x:hover { background:var(--border); color:var(--teal); }
.modal-body { padding:1.5rem; }
.prog { display:flex; margin-bottom:1.6rem; border-radius:8px; overflow:hidden; border:1px solid var(--border); }
.prog-s { flex:1; padding:.5rem .2rem; text-align:center; font-family:'Bricolage Grotesque',sans-serif; font-size:.69rem; font-weight:700; background:var(--bg); color:var(--slate); border-right:1px solid var(--border); }
.prog-s:last-child { border-right:none; }
.prog-s.cur  { background:var(--teal); color:var(--white); }
.prog-s.done { background:var(--green-pale); color:var(--green); }
.order-box { background:var(--bg); border-radius:10px; padding:.9rem 1.2rem; margin-bottom:1.2rem; border:1px solid var(--border); }
.order-row { display:flex; justify-content:space-between; align-items:center; font-size:.85rem; padding:.2rem 0; color:var(--slate); }
.order-row.tot { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:.97rem; color:var(--ink); border-top:1px solid var(--border); padding-top:.6rem; margin-top:.4rem; }
.vin-preview { background:var(--blue-pale); border:1px solid var(--blue-border); border-radius:10px; padding:.9rem 1.2rem; margin-bottom:1.1rem; }
.vin-preview-title { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--blue); margin-bottom:.65rem; }
.vin-fields { display:grid; grid-template-columns:1fr 1fr; gap:.45rem; }
.vf-label { font-size:.72rem; color:var(--slate); }
.vf-val   { font-size:.82rem; font-weight:600; color:var(--ink); }
.field { margin-bottom:.9rem; }
.field label { display:block; font-size:.78rem; font-weight:600; color:var(--ink); margin-bottom:.32rem; }
.field input,.field select,.field textarea { width:100%; border:1.5px solid var(--border); border-radius:8px; padding:.68rem .95rem; font-family:'Instrument Sans',sans-serif; font-size:.9rem; color:var(--ink); outline:none; transition:border-color .18s,box-shadow .18s; background:var(--white); }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(29,74,90,.1); }
.field input.err { border-color:var(--red); }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:.7rem; }
.pay-tabs { display:grid; grid-template-columns:1fr 1fr; gap:.55rem; margin-bottom:1.1rem; }
.pay-tab { border:1.5px solid var(--border); border-radius:10px; padding:.7rem .5rem; text-align:center; cursor:pointer; transition:all .18s; font-size:.8rem; font-weight:500; color:var(--slate); background:var(--white); display:flex; flex-direction:column; align-items:center; gap:.28rem; }
.pay-tab:hover { border-color:#9ca3af; color:var(--teal); }
.pay-tab.sel { border-color:var(--teal); background:rgba(29,74,90,.05); color:var(--teal); font-weight:600; }
.pay-tab-icon { font-size:1.2rem; }
.err-msg { color:var(--red); font-size:.78rem; margin-bottom:.75rem; padding:.55rem .85rem; background:#fef2f2; border-radius:7px; border:1px solid #fecaca; display:none; }
.err-msg.show { display:block; }
.submit-btn { width:100%; padding:.9rem; border:none; border-radius:10px; background:var(--teal); color:var(--white); font-family:'Bricolage Grotesque',sans-serif; font-size:.95rem; font-weight:700; cursor:pointer; transition:all .2s; margin-top:.35rem; display:flex; align-items:center; justify-content:center; gap:.5rem; box-shadow:0 2px 12px rgba(29,74,90,.3); letter-spacing:.03em; }
.submit-btn:hover { background:var(--teal-mid); transform:translateY(-1px); }
.submit-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.secure-line { text-align:center; font-size:.74rem; color:var(--slate); margin-top:.85rem; display:flex; align-items:center; justify-content:center; gap:.4rem; }
.success-wrap { text-align:center; }
.success-ico { width:68px; height:68px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; margin:0 auto 1.2rem; font-size:1.9rem; border:2px solid #bbf7d0; }
.success-title { font-family:'Bricolage Grotesque',sans-serif; font-size:1.35rem; font-weight:800; color:var(--ink); margin-bottom:.45rem; }
.success-sub { color:var(--slate); font-size:.86rem; line-height:1.65; margin-bottom:1.2rem; }
.refund-notice { background:var(--amber-pale); border:1px solid #fde68a; border-radius:10px; padding:.9rem 1.1rem; font-size:.8rem; color:#78350f; text-align:left; line-height:1.65; margin-bottom:1.2rem; }
.refund-notice strong { display:block; margin-bottom:.3rem; }
.dl-btn { width:100%; padding:.85rem; border:none; border-radius:10px; background:var(--teal); color:var(--white); font-family:'Bricolage Grotesque',sans-serif; font-size:.92rem; font-weight:700; cursor:pointer; margin-bottom:.65rem; transition:background .18s; }
.dl-btn:hover { background:var(--teal-mid); }
.support-btn-s { width:100%; padding:.8rem; border-radius:10px; border:1.5px solid var(--border); background:transparent; font-family:'Bricolage Grotesque',sans-serif; font-size:.88rem; font-weight:600; color:var(--slate); cursor:pointer; transition:all .18s; }
.support-btn-s:hover { border-color:var(--ink); color:var(--ink); }
.spinner { width:16px; height:16px; border:2.5px solid rgba(255,255,255,.3); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; display:none; }
.demo-notice { background:var(--blue-pale); border:1.5px dashed var(--blue-border); border-radius:8px; padding:.85rem .95rem; font-size:.8rem; color:var(--blue); margin-bottom:.8rem; line-height:1.55; }
.pkg-grid { display:flex; flex-direction:column; gap:.8rem; margin-bottom:1.1rem; }
.pkg-card { border:1.5px solid var(--border); border-radius:12px; padding:1.1rem 1.3rem; cursor:pointer; transition:all .2s; }
.pkg-card:hover { border-color:var(--blue-border); box-shadow:0 4px 20px rgba(30,111,217,.08); }
.pkg-card.sel  { border-color:var(--teal); background:rgba(29,74,90,.04); }
.pkg-card-top  { display:flex; justify-content:space-between; align-items:flex-start; }
.pkg-name  { font-family:'Bricolage Grotesque',sans-serif; font-size:.97rem; font-weight:800; color:var(--ink); }
.pkg-price { font-family:'Bricolage Grotesque',sans-serif; font-size:1.25rem; font-weight:800; color:var(--teal); }
.pkg-tag   { display:inline-block; background:var(--teal); color:var(--white); font-size:.62rem; font-weight:700; padding:.15rem .5rem; border-radius:100px; text-transform:uppercase; letter-spacing:.06em; margin-left:.35rem; vertical-align:middle; }
.pkg-desc  { font-size:.8rem; color:var(--slate); margin-top:.2rem; }
.pkg-feats { display:flex; flex-wrap:wrap; gap:.35rem; margin-top:.65rem; }
.pkg-feat  { background:var(--green-pale); color:var(--green); font-size:.7rem; font-weight:600; padding:.15rem .55rem; border-radius:100px; }

/* ══ BLOG POST ════════════════════════════════════ */
.blog-post { max-width:720px; margin:0 auto; padding:calc(var(--nav-h) + 2.5rem) 5% 5rem; }
.post-back  { display:inline-flex; align-items:center; gap:.4rem; color:var(--blue); font-size:.85rem; font-weight:600; margin-bottom:1.5rem; transition:gap .18s; }
.post-back:hover { gap:.7rem; }
.post-tag   { display:inline-block; background:var(--blue-pale); color:var(--blue); font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:.25rem .75rem; border-radius:100px; margin-bottom:.9rem; }
.post-title { font-size:clamp(1.6rem,5vw,2.8rem); font-weight:800; letter-spacing:-.035em; line-height:1.1; color:var(--ink); margin-bottom:1rem; word-break:break-word; }
.post-meta  { display:flex; align-items:center; gap:.6rem; font-size:.8rem; color:var(--slate); margin-bottom:1.8rem; padding-bottom:1.3rem; border-bottom:1px solid var(--border); flex-wrap:wrap; }
.post-hero-img { width:100%; height:220px; background:var(--cream); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:4rem; margin-bottom:2rem; border:1px solid rgba(13,27,62,.08); }
.post-body  { font-size:.97rem; line-height:1.85; color:var(--ink); opacity:1; }
.post-body h2 { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(1.2rem,4vw,1.5rem); font-weight:800; letter-spacing:-.03em; color:var(--ink); margin:2.2rem 0 .7rem; }
.post-body h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:1.05rem; font-weight:700; color:var(--ink); margin:1.6rem 0 .55rem; }
.post-body p  { margin-bottom:1.1rem; }
.post-body ul,.post-body ol { margin:0 0 1.1rem 1.2rem; display:flex; flex-direction:column; gap:.4rem; }
.post-body li { line-height:1.7; }
.post-body strong { color:var(--ink); font-weight:600; }
.post-body .callout { background:var(--blue-pale); border-left:4px solid var(--teal); border-radius:0 10px 10px 0; padding:.9rem 1.1rem; margin:1.4rem 0; font-size:.9rem; color:var(--ink); line-height:1.65; }
.post-body .warning { background:var(--amber-pale); border-left:4px solid var(--amber); border-radius:0 10px 10px 0; padding:.9rem 1.1rem; margin:1.4rem 0; font-size:.9rem; color:#78350f; line-height:1.65; }
.post-cta   { background:var(--teal); border-radius:14px; padding:2rem; text-align:center; margin-top:2.5rem; }
.post-cta h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:1.2rem; font-weight:800; color:var(--white); margin-bottom:.45rem; }
.post-cta p  { color:rgba(255,255,255,.65); font-size:.86rem; margin-bottom:1.1rem; line-height:1.6; }
.post-cta-btn { display:inline-block; background:var(--white); color:var(--teal); border:none; border-radius:8px; padding:.75rem 1.8rem; font-family:'Bricolage Grotesque',sans-serif; font-size:.9rem; font-weight:800; cursor:pointer; transition:all .2s; }
.post-cta-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.15); }

/* ══ POLICY / CONTACT ═════════════════════════════ */
.policy-page  { max-width:740px; margin:0 auto; padding:calc(var(--nav-h) + 3rem) 5% 5rem; }
.policy-page h1 { font-size:clamp(1.8rem,4vw,2.5rem); font-weight:800; margin-bottom:.4rem; letter-spacing:-.03em; color:var(--ink); }
.policy-page .updated { font-size:.81rem; color:var(--slate); margin-bottom:2.2rem; }
.policy-page h2 { font-size:1.15rem; font-weight:700; margin:1.8rem 0 .5rem; color:var(--ink); }
.policy-page p  { font-size:.9rem; color:var(--slate); line-height:1.8; margin-bottom:.9rem; }
.policy-page ul { margin-left:1.3rem; margin-bottom:.9rem; display:flex; flex-direction:column; gap:.3rem; }
.policy-page ul li { font-size:.9rem; color:var(--slate); line-height:1.7; }
.contact-page { max-width:580px; margin:0 auto; padding:calc(var(--nav-h) + 3rem) 5% 5rem; }
.contact-page h1 { font-size:clamp(1.8rem,4vw,2.5rem); font-weight:800; margin-bottom:.4rem; letter-spacing:-.03em; color:var(--ink); }
.contact-page > p { color:var(--slate); font-size:.95rem; margin-bottom:1.8rem; line-height:1.75; }

/* ══ RESPONSIVE — TABLET ══════════════════════════ */
@media(max-width:960px){
  .hero { padding:calc(var(--nav-h) + 2rem) 5% 3rem; min-height:auto; }
  .hero-inner { grid-template-columns:1fr; gap:0; }
  .hero-right { display:none; }
  .hero-desc  { max-width:100%; }
  .data-grid  { grid-template-columns:1fr 1fr; }
  .feature-slide { grid-template-columns:1fr; }
  .feat-visual-panel { display:none; }
  .how-grid   { grid-template-columns:1fr 1fr; }
  .how-grid::before { display:none; }
  .support-grid { grid-template-columns:repeat(3,1fr); }
  .blog-grid  { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:2rem; }
  .plans-grid { grid-template-columns:1fr; max-width:400px; }
  .nav-mid    { display:none; }
  .nav-hamburger { display:flex; }
  section     { padding:4rem 5%; }
}

/* ══ RESPONSIVE — MOBILE ══════════════════════════ */
@media(max-width:600px){
  :root { --nav-h:58px; }
  section { padding:3.5rem 4.5%; }
  nav { padding:0 4.5%; }
  .logo img { height:28px; }
  .hero { padding:calc(var(--nav-h) + 1.8rem) 4.5% 2.5rem; min-height:auto; }
  .hero-badge-wrap { display:none; }
  .hero-right { display:flex !important; justify-content:center; }
  .hero-car-wrap { max-width:100%; width:100%; }
  .hero-car-cutout { height:180px; }
  .hero-inner { grid-template-columns:1fr; }
  h1.hero-title { font-size:2.1rem; }
  .hero-sub-title { font-size:1rem; }
  .vin-form { flex-direction:column; gap:.55rem; }
  .vin-form input { font-size:.88rem; padding:.85rem .95rem; }
  .vin-form button { padding:.85rem; font-size:.9rem; }
  .hero-trust { gap:.9rem; }
  .trust-item { font-size:.78rem; }
  .ticker-item { font-size:.76rem; }
  .social-proof { flex-direction:column; text-align:center; padding:2rem 4.5%; gap:1.2rem; }
  .sp-rating { justify-content:center; }
  .sp-btn { width:100%; }
  .sp-count h2 { font-size:1.8rem; }
  .data-grid { grid-template-columns:1fr; }
  .vb-tabs { gap:.4rem; }
  .vb-tab  { font-size:.78rem; padding:.4rem .85rem; }
  .feat-content { padding:2rem; }
  .feat-content h3 { font-size:1.25rem; }
  .how-grid { grid-template-columns:1fr; gap:2rem; }
  .how-grid::before { display:none; }
  .blog-grid { grid-template-columns:1fr; }
  .support-grid { grid-template-columns:1fr; gap:1rem; }
  .pricing-cta { padding:3.5rem 4.5%; }
  .pricing-cta-price { font-size:2.6rem; }
  .plans-grid { grid-template-columns:1fr; max-width:100%; }
  .footer-top { grid-template-columns:1fr; gap:1.8rem; }
  .footer-bottom { flex-direction:column; text-align:center; gap:.5rem; }
  footer { padding:2.5rem 4.5% 1.5rem; }
  .overlay { padding:.4rem; }
  .modal { max-height:97vh; border-radius:16px; }
  .modal-head { padding:1rem 1.3rem; }
  .modal-body { padding:1.2rem; }
  .field-row { grid-template-columns:1fr; }
  .prog-s { font-size:.63rem; padding:.45rem .1rem; }
  .blog-post { padding:calc(var(--nav-h) + 1.5rem) 4.5% 4rem; }
  .post-hero-img { height:160px; font-size:3rem; border-radius:12px; margin-bottom:1.5rem; }
  .post-title { font-size:1.55rem; }
  .post-meta  { font-size:.76rem; gap:.4rem; }
  .post-body  { font-size:.93rem; }
  .post-body h2 { font-size:1.15rem; }
  .post-cta { padding:1.5rem 1.2rem; }
  .post-cta-btn { width:100%; padding:.8rem; }
  .policy-page,.contact-page { padding:calc(var(--nav-h) + 1.5rem) 4.5% 4rem; }
  .page-hero { padding:calc(var(--nav-h) + 2rem) 4.5% 2.5rem; }
  .hero-avatars { justify-content:flex-start; }
}

@media(max-width:380px){
  h1.hero-title { font-size:1.85rem; }
  .vin-form input { font-size:.84rem; }
}

/* ══ VinVerified-style PACKAGES PAGE ══════════════ */
.pkg-page-section {
  background:var(--teal);
  min-height:100vh;
  padding:3rem 4.5% 120px;
}
.vv-plans {
  display:flex;
  flex-direction:column;
  gap:0;
  max-width:600px;
  margin:0 auto;
}
/* Popular banner */
.vv-popular-banner {
  background:var(--orange);
  color:var(--white);
  text-align:center;
  padding:.75rem 1rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.88rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  border-radius:12px 12px 0 0;
  margin-top:1.5rem;
}
/* Plan card */
.vv-plan {
  background:var(--cream);
  border-radius:12px;
  padding:1.6rem 1.5rem;
  margin-top:1.2rem;
  cursor:pointer;
  transition:all .2s;
  border:2px solid transparent;
  position:relative;
}
/* When plan has a popular banner above it — remove top radius */
.vv-popular-banner + .vv-plan {
  margin-top:0;
  border-radius:0 0 12px 12px;
}
.vv-plan:hover { box-shadow:0 8px 32px rgba(0,0,0,.15); }
.vv-plan-hot {
  background:#fff5f0;
  border-color:var(--orange);
}
.vv-plan-selected {
  border-color:var(--orange);
}

/* Checkbox */
.vv-plan-top { margin-bottom:.9rem; }
.vv-checkbox {
  width:28px; height:28px;
  border-radius:6px;
  border:2px solid #ccc;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem; font-weight:700;
  color:var(--white);
  transition:all .18s;
  flex-shrink:0;
}
.vv-checkbox-checked {
  background:var(--orange);
  border-color:var(--orange);
}

/* Plan text */
.vv-plan-name {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:1.5rem;
  font-weight:800;
  color:var(--ink);
  margin-bottom:.25rem;
  letter-spacing:-.02em;
}
.vv-plan-tagline {
  font-size:.88rem;
  color:var(--slate);
  margin-bottom:.8rem;
}
.vv-plan-price {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:2.2rem;
  font-weight:800;
  color:var(--ink);
  letter-spacing:-.03em;
  margin-bottom:1.2rem;
  line-height:1;
}
.vv-plan-price span {
  font-size:1rem;
  font-weight:400;
  color:var(--slate);
  letter-spacing:0;
}

/* Features list */
.vv-feat-list {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:.65rem;
  margin-bottom:1.3rem;
}
.vv-feat-list li {
  display:flex;
  align-items:flex-start;
  gap:.7rem;
  font-size:.92rem;
  color:var(--ink);
  line-height:1.45;
}
.vv-check {
  color:var(--teal);
  font-weight:700;
  font-size:.9rem;
  flex-shrink:0;
  margin-top:.1rem;
}

/* Refund policy row */
.vv-refund-row {
  display:flex;
  align-items:center;
  gap:.6rem;
  padding-top:1rem;
  border-top:1px solid rgba(0,0,0,.08);
  margin-top:.5rem;
}
.vv-refund-dot {
  width:20px; height:20px;
  border-radius:50%;
  border:2px solid #ccc;
  background:var(--white);
  flex-shrink:0;
}
.vv-refund-link {
  font-size:.88rem;
  font-weight:700;
  color:var(--ink);
  opacity:.75;
  text-decoration:none;
  transition:opacity .18s;
}
.vv-refund-link:hover { opacity:1; }

/* Sticky CTA bar at bottom */
.vv-cta-bar {
  position:fixed;
  bottom:0; left:0; right:0;
  background:var(--teal);
  padding:1rem 4.5% 1.4rem;
  z-index:200;
  box-shadow:0 -4px 24px rgba(0,0,0,.2);
}
.vv-cta-btn {
  width:100%;
  background:var(--orange);
  color:var(--white);
  border:none;
  border-radius:100px;
  padding:1.1rem;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.1em;
  cursor:pointer;
  transition:all .2s;
  box-shadow:0 4px 20px rgba(217,79,42,.4);
}
.vv-cta-btn:hover {
  background:var(--orange-l);
  transform:translateY(-1px);
  box-shadow:0 8px 28px rgba(217,79,42,.5);
}
.vv-cta-btn:active { transform:translateY(0); }

/* ══ LIVE CHAT WIDGET ═════════════════════════════ */
.livechat-bubble {
  position:fixed;
  bottom:24px; right:24px;
  z-index:400;
}
/* The red circle button */
.livechat-btn {
  width:56px; height:56px;
  border-radius:50%;
  background:var(--orange);
  border:none;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(217,79,42,.45);
  transition:all .2s;
  position:relative;
}
.livechat-btn:hover { transform:scale(1.08); box-shadow:0 6px 28px rgba(217,79,42,.55); }
.livechat-btn svg { width:26px; height:26px; fill:var(--white); }
/* Notification badge */
.livechat-badge {
  position:absolute;
  top:-4px; right:-4px;
  width:20px; height:20px;
  border-radius:50%;
  background:var(--orange);
  border:2px solid var(--white);
  color:var(--white);
  font-size:.65rem;
  font-weight:800;
  display:flex; align-items:center; justify-content:center;
  font-family:'Bricolage Grotesque',sans-serif;
}

/* Chat popup */
.livechat-popup {
  position:absolute;
  bottom:70px; right:0;
  width:300px;
  background:var(--white);
  border-radius:16px;
  box-shadow:0 12px 60px rgba(0,0,0,.2);
  overflow:hidden;
  display:none;
  animation:popIn .22s cubic-bezier(.34,1.56,.64,1);
}
.livechat-popup.open { display:block; }
.livechat-popup-head {
  background:var(--teal);
  padding:1rem 1.2rem;
  display:flex; align-items:center; justify-content:space-between;
}
.livechat-popup-head-left {
  display:flex; align-items:center; gap:.7rem;
}
.livechat-avatar {
  width:36px; height:36px;
  border-radius:50%;
  background:var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  border:2px solid rgba(255,255,255,.3);
}
.livechat-agent-name {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:.9rem;
  font-weight:700;
  color:var(--white);
}
.livechat-agent-status {
  font-size:.72rem;
  color:rgba(255,255,255,.65);
  display:flex; align-items:center; gap:.3rem;
}
.livechat-status-dot {
  width:6px; height:6px;
  border-radius:50%;
  background:#4ade80;
}
.livechat-close-btn {
  background:none; border:none;
  color:rgba(255,255,255,.7);
  cursor:pointer; font-size:1.1rem;
  line-height:1; padding:.2rem;
  transition:color .15s;
}
.livechat-close-btn:hover { color:var(--white); }

.livechat-popup-body { padding:1.2rem; }
.livechat-greeting {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:1rem;
  font-weight:700;
  color:var(--ink);
  margin-bottom:.4rem;
}
.livechat-subtext {
  font-size:.83rem;
  color:var(--slate);
  margin-bottom:1rem;
  line-height:1.5;
}
.livechat-options {
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.livechat-option {
  background:var(--cream);
  border:1.5px solid var(--cream-2);
  border-radius:10px;
  padding:.7rem 1rem;
  font-size:.85rem;
  font-weight:600;
  color:var(--ink);
  cursor:pointer;
  text-align:left;
  transition:all .18s;
}
.livechat-option:hover {
  border-color:var(--orange);
  background:var(--cream-2);
}

/* Chat input area */
.livechat-input-wrap {
  display:none;
  padding:0 1.2rem 1.2rem;
}
.livechat-input-wrap.show { display:block; }
.livechat-msgs {
  max-height:160px;
  overflow-y:auto;
  margin-bottom:.8rem;
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.chat-msg {
  max-width:85%;
  padding:.55rem .8rem;
  border-radius:10px;
  font-size:.82rem;
  line-height:1.45;
}
.chat-msg.agent {
  background:var(--cream);
  color:var(--ink);
  align-self:flex-start;
  border-bottom-left-radius:3px;
}
.chat-msg.user {
  background:var(--teal);
  color:var(--white);
  align-self:flex-end;
  border-bottom-right-radius:3px;
}
.livechat-input-row {
  display:flex;
  gap:.5rem;
}
.livechat-input {
  flex:1;
  border:1.5px solid var(--border);
  border-radius:8px;
  padding:.6rem .8rem;
  font-family:'Instrument Sans',sans-serif;
  font-size:.85rem;
  color:var(--ink);
  outline:none;
  transition:border-color .18s;
}
.livechat-input:focus { border-color:var(--teal); }
.livechat-send {
  background:var(--teal);
  color:var(--white);
  border:none;
  border-radius:8px;
  padding:.6rem .9rem;
  cursor:pointer;
  font-size:.85rem;
  font-weight:700;
  transition:background .18s;
  flex-shrink:0;
}
.livechat-send:hover { background:var(--teal-mid); }

/* On packages page — move chat up above sticky bar */
.pkg-page-section ~ * .livechat-bubble,
body.has-sticky-bar .livechat-bubble {
  bottom:90px;
}

/* Responsive: chat on mobile */
@media(max-width:600px){
  .livechat-bubble { bottom:100px; right:16px; }
  .livechat-popup { width:calc(100vw - 32px); right:-10px; }
  .livechat-btn { width:50px; height:50px; }
  .vv-plan-name { font-size:1.3rem; }
  .vv-plan-price { font-size:1.9rem; }
}

/* ══ PACKAGES PAGE HERO ═══════════════════════════ */
.pkg-hero {
  position:relative;
  height:220px;
  margin-top:var(--nav-h);
  overflow:hidden;
}
.pkg-hero-img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 60%;
  display:block;
}
.pkg-hero-overlay {
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(13,27,40,.5) 0%, rgba(13,27,40,.75) 100%);
}
.pkg-hero-content {
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;padding:1rem 5%;
}
.pkg-hero-content h1 {
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(1.6rem,4vw,2.4rem);
  font-weight:800;color:#fff;
  letter-spacing:-.03em;margin-bottom:.4rem;
}
.pkg-hero-content p {
  color:rgba(255,255,255,.7);
  font-size:.95rem;
}
/* Remove old page-hero top padding on packages page */
.pkg-page-section { margin-top:0; }
@media(max-width:600px){
  .pkg-hero { height:160px; }
  .pkg-hero-content h1 { font-size:1.4rem; }
}
