:root{
  --brand:#2563eb;
  --brand-2:#3b82f6;
  --brand-dark:#1d4ed8;
  --accent:#06b6d4;
  --bg:#f8fafc;
  --ink:#0f172a;
  --muted:#64748b;
  --line:rgba(15,23,42,.10);
  --card:rgba(255,255,255,.88);
  --shadow: 0 24px 70px rgba(15,23,42,.12);
  --shadow-soft: 0 18px 40px rgba(15,23,42,.10);
  --success:#10b981;
  --danger:#ef4444;
  --radius:16px;
  --radius-lg:24px;
  --container:1080px;
  --header-h:76px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img,svg{display:block}
a{color:inherit; text-decoration:none}
button,input{font:inherit}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(248,250,252,.85);
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(1.2) blur(16px);
}
.site-header.is-elevated{
  box-shadow: 0 14px 34px rgba(11,15,20,.10);
}
.header-inner{
  height:var(--header-h);
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
}
.main-logo{
  flex-shrink:0;
}
.main-logo img{
  display:block;
  width: 185px;
  max-width:42vw;
  height:auto;
  margin-left:0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
}
.brand-text{
  display:flex;
  align-items:baseline;
  gap:2px;
  letter-spacing:.02em;
}
.brand-name{
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  font-size:19px;
}
.brand-name--bold{font-weight:900}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:0;
}
.nav-list{
  display:none;
  list-style:none;
  padding:0;
  margin:0;
  gap:2px;
  align-items:center;
  flex-wrap:nowrap;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  color:rgba(11,15,20,.78);
  font-weight:600;
  font-size:12px;
  line-height:1.2;
  white-space:nowrap;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover{
  background:rgba(37,99,235,.08);
  color:var(--ink);
  transform:none;
}
.nav-link.is-active{
  /* background:rgba(37,99,235,.14); */
  color:rgba(11,15,20,.95);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.header-cta{
  display:none;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  font-weight:700;
  font-size:12px;
  letter-spacing:.01em;
  box-shadow:0 8px 24px rgba(37,99,235,.28);
  transition:transform .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.header-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 32px rgba(37,99,235,.36);
}
@media (min-width:1100px){
  .header-cta{display:inline-flex}
  .nav-list{display:flex}
  .nav-toggle{display:none}
}
@media (min-width:1100px) and (max-width:1280px){
  .lang-label{display:none}
}
.lang{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(11,15,20,.10);
  background:rgba(255,255,255,.70);
  box-shadow:0 8px 18px rgba(11,15,20,.06);
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lang:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(15,23,42,.10);
  border-color:rgba(37,99,235,.28);
}
.lang-label{
  font-size:13px;
  font-weight:600;
  color:rgba(11,15,20,.78);
  max-width:9ch;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.lang-caret{color:rgba(11,15,20,.65)}

.lang-flag{
  display:flex;
  align-items:center;
}
.lang-flag svg{
  width:22px;
  height:14px;
  display:block;
  border-radius:2px;
}

/* Language dropdown */
.lang-menu{position:relative}
.lang-options{
  position:absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(11,15,20,.10);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(11,15,20,.18);
  backdrop-filter: blur(12px);
  z-index: 100;
  max-height: 55vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.lang-option{
  width: 100%;
  text-align: left;
  padding: 12px 12px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  color: rgba(11,15,20,.78);
  transition: background .18s ease, color .18s ease, transform .18s ease;
  touch-action: manipulation;
}
.lang-option:hover{
  background: rgba(37,99,235,.10);
  color: rgba(11,15,20,.92);
  transform: translateY(-1px);
}
.lang-option[aria-selected="true"]{
  background: rgba(37,99,235,.14);
  color: rgba(11,15,20,.95);
}

@media (max-width: 979px){
  .lang-options{
    right: auto;
    left: 0;
    width: min(260px, calc(100vw - 40px));
  }
}

.lang:focus-visible,
.lang-option:focus-visible{
  outline: 3px solid rgba(37,99,235,.28);
  outline-offset: 2px;
}

/* Mobile nav toggle */
.nav-toggle{
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid rgba(11,15,20,.10);
  background:rgba(255,255,255,.70);
  cursor:pointer;
  position:relative;
  box-shadow:0 8px 18px rgba(11,15,20,.06);

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.nav-toggle img
{
  width: 80%;
}

.nav-toggle:hover{border-color:rgba(37,99,235,.28)}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:12px; right:12px;
  height:2px;
  background:rgba(11,15,20,.78);
  border-radius:2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle-lines{top:21px}
.nav-toggle-lines::before{top:-7px}
.nav-toggle-lines::after{top:7px}
.nav.is-open .nav-toggle-lines{
  /* Hide only the middle bar; keep pseudo-elements visible for the X */
  background: transparent;
  opacity:1;
}
.nav.is-open .nav-toggle-lines::before{top:0; transform:rotate(45deg)}
.nav.is-open .nav-toggle-lines::after{top:0; transform:rotate(-45deg)}

/* Hero â€” content left, VIN checker right */
.hero{
  position:relative;
  padding:clamp(24px, 4vw, 48px) 0 clamp(32px, 5vw, 56px);
  overflow:hidden;
  background:var(--bg);
}

.hero-inner{
  position:relative;
  z-index:2;
}

.hero-split{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:28px;
  align-items:start;
}

.hero-copy{
  width:100%;
  min-width:0;
  max-width:560px;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:0 0 14px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(37,99,235,.08);
  border:1px solid rgba(37,99,235,.18);
  color:var(--brand-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  max-width:100%;
  white-space:normal;
  text-align:left;
  line-height:1.35;
}
.hero-eyebrow::before{
  content:"";
  width:6px;height:6px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 2px rgba(6,182,212,.25);
  flex-shrink:0;
}

.hero-title{
  text-align:left;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:900;
  letter-spacing:-.035em;
  font-size:clamp(26px, 3.2vw, 42px);
  line-height:1.12;
  margin:0 0 14px;
  color:var(--ink);
  text-wrap:balance;
  overflow-wrap:break-word;
  word-break:break-word;
  hyphens:auto;
}

.hero-lead{
  text-align:left;
  margin:0 0 22px;
  max-width:46ch;
  font-size:clamp(15px, 1.7vw, 17px);
  font-weight:500;
  line-height:1.6;
  color:var(--muted);
  text-wrap:pretty;
}

.hero-points{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.hero-point{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:14px;
  font-weight:600;
  line-height:1.45;
  color:rgba(15,23,42,.82);
  overflow-wrap:break-word;
  word-break:break-word;
}
.hero-point-icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  border-radius:10px;
  background:rgba(16,185,129,.12);
  color:#059669;
}

.hero-panel{
  width:100%;
  min-width:0;
  max-width:520px;
}
.hero-checker-card{
  padding:26px 24px 24px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 24px 64px rgba(15,23,42,.10);
  overflow:hidden;
}
.hero-checker-head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:20px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.hero-checker-copy{
  min-width:0;
  flex:1;
}
.hero-checker-icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(145deg, rgba(37,99,235,.14), rgba(6,182,212,.08));
  color:var(--brand);
}
.hero-checker-title{
  margin:0 0 4px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:clamp(17px, 2vw, 20px);
  letter-spacing:-.02em;
  line-height:1.25;
  color:var(--ink);
  overflow-wrap:break-word;
  word-break:break-word;
}
.hero-checker-sub{
  margin:0;
  font-size:13px;
  font-weight:500;
  line-height:1.45;
  color:var(--muted);
  overflow-wrap:break-word;
}

.hero-checker{
  width:100%;
  margin:0;
}
.hero .checker{
  box-shadow:0 10px 28px rgba(37,99,235,.10);
  border-color:rgba(37,99,235,.12);
  padding:6px;
}
.hero .checker-input{
  flex:1;
  width:100%;
  padding:14px 16px;
  font-size:15px;
}
.hero .checker-button{
  min-width:0;
  max-width:46%;
  flex:0 1 auto;
  padding:0 14px;
  border-radius:14px;
  white-space:normal;
  line-height:1.2;
  text-align:center;
}
.hero .helper-links{
  justify-content:flex-start;
  flex-wrap:wrap;
  padding:10px 2px 0;
  gap:12px 16px;
}
.hero .helper-link{
  font-size:12px;
}
.hero .tabs{
  justify-content:flex-start;
  flex-wrap:wrap;
  margin-bottom:12px;
  gap:8px;
}
.hero .tab{
  padding:8px 16px;
  font-size:13px;
  white-space:nowrap;
}

@media (min-width: 1024px){
  .hero-split{
    grid-template-columns:minmax(0, 1.08fr) minmax(300px, 420px);
    gap:32px 40px;
    align-items:start;
  }
  .hero-copy{max-width:none}
  .hero-panel{
    max-width:none;
    justify-self:stretch;
    width:auto;
  }
  .hero-checker-card{padding:28px 26px 26px}
}

@media (min-width: 1280px){
  .hero-split{
    grid-template-columns:minmax(0, 1.12fr) minmax(340px, 440px);
    gap:40px 56px;
  }
}

@media (max-width: 1023px){
  .hero-copy{
    max-width:none;
    margin-inline:auto;
    text-align:center;
  }
  .hero-eyebrow{margin-inline:auto}
  .hero-title{text-align:center; margin-inline:auto}
  .hero-lead{text-align:center; margin-inline:auto}
  .hero-points{max-width:420px; margin-inline:auto}
  .hero-point{text-align:left}
  .hero-panel{margin-inline:auto}
  .hero .tabs{justify-content:center}
  .hero .helper-links{justify-content:center}
}

@media (max-width: 768px){
  .hero-checker-card{padding:22px 18px 20px}
  .hero-checker-head{gap:12px; margin-bottom:16px; padding-bottom:14px}
  .hero-checker-title{font-size:18px}
}

.tabs{
  display:flex;
  gap:8px;
  justify-content:center;
  padding:0;
  margin: 0 0 12px;
}
.tab{
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  color: var(--muted);
  padding: 10px 28px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.tab:hover{
  transform:translateY(-1px);
  border-color:rgba(37,99,235,.25);
  color: var(--ink);
}
.tab.is-active{
  background: var(--brand);
  border-color: var(--brand);
  color:#fff;
  box-shadow: 0 8px 24px rgba(37,99,235,.28);
}

.checker{
  position:relative;
  display:flex;
  align-items:stretch;
  gap:8px;
  padding:8px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border:1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.checker::before{display:none}
.checker-input{
  flex:0 0 auto;
  border:0;
  outline:none;
  background:transparent;
  padding:20px 18px;
  font-size:17px;
  font-weight: 400;
  letter-spacing:.02em;
  color:rgba(11,15,20,.92);
  min-width:0;
}
.checker-input::placeholder{
  color:rgba(11,15,20,.40);
  font-weight:800;
  letter-spacing:.06em;
}
.checker-button{
  border:0;
  cursor:pointer;
  padding:0 24px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:white;
  font-weight:700;
  letter-spacing:.01em;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 12px 32px rgba(37,99,235,.30);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  min-width: 140px;
  justify-content:center;
}
.checker-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37,99,235,.38);
  filter:saturate(1.05);
}
.checker-button:active{transform: translateY(0px) scale(.99)}
.btn-icon{opacity:.95}

.helper-links{
  display:flex;
  justify-content:center;
  gap:20px;
  padding: 14px 8px 0;
  flex-wrap:wrap;
}

/* Hero checker: rich validation UI */
.checker-field{
  flex:1;
  min-width:0;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:0;
}

.checker-feedback{
  position:absolute;
  left: 8px;
  right: 8px;
  top: calc(100% + 10px);
  padding: 10px 12px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  color: var(--danger);
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.16);
  border-radius: 12px;
  z-index: 5;
  pointer-events:none;
  opacity:0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.checker-feedback.is-visible{
  opacity:1;
  transform: translateY(0);
}

.checker-feedback.is-error{
  background: rgba(220,38,38,.06);
  border-color: rgba(220,38,38,.24);
}

.checker-feedback::before{
  content:"!";
  width:18px;height:18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(220,38,38,.14);
  border: 1px solid rgba(220,38,38,.28);
  color: var(--danger);
  font-size: 12px;
  font-weight: 950;
  flex: 0 0 auto;
}

.checker.is-invalid{
  border-color: rgba(220,38,38,.35);
  box-shadow: 0 0 0 3px rgba(220,38,38,.16), var(--shadow-soft);
}
.checker.is-valid{
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12), var(--shadow-soft);
}
.checker-input.is-invalid{
  background: rgba(220,38,38,.06);
  border-radius:14px;
}
.checker-input.is-valid{
  background: rgba(34,197,94,.06);
  border-radius:14px;
}
.helper-link{
  font-size:13px;
  font-weight:700;
  color:rgba(11,15,20,.70);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .2s ease, transform .2s ease;
}
.helper-link:hover{
  color:var(--brand);
  transform:translateY(-1px);
}

/* Hero background â€” clean mesh gradient */
/* Hero background â€” glow behind car on the right */
.hero-bg{
  position:absolute;
  inset:0;
  background:
          linear-gradient(105deg, #f8fafc 0%, #f8fafc 42%, #eff6ff 58%, #e0f2fe 100%);
  pointer-events:none;
}
.hero-glow{
  position:absolute;
  top:10%;
  right:-5%;
  width:min(650px, 55vw);
  height:70%;
  background: radial-gradient(closest-side, rgba(37,99,235,.16), transparent);
  filter: blur(50px);
}
.hero-grid{
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(15,23,42,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(105deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.35) 100%);
  opacity:.5;
}
.hero-lines{display:none}

/* Shared section styling (consistent headings) */
.section{
  padding: clamp(72px, 8vw, 112px) 0;
}
.section-head{
  text-align:center;
  margin-bottom: 26px;
}
.section-kicker{
  display:inline-block;
  margin:0 0 10px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(37,99,235,.15);
  border:1px solid rgba(6,182,212,.25);
  color:rgba(255,255,255,.92);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.section-kicker--light{
  background:rgba(37,99,235,.10);
  border-color:rgba(37,99,235,.18);
  color:var(--brand-dark);
}
/* How It Works â€” horizontal timeline */
.works-section{
  position:relative;
  padding:clamp(64px, 7vw, 96px) 0 clamp(72px, 8vw, 104px);
  overflow:hidden;
  background:#fff;
}
.works-section-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
          radial-gradient(760px 320px at 50% -20%, rgba(37,99,235,.08), transparent 62%),
          linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.works-head{
  position:relative;
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.works-head-title{
  margin:8px 0 14px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(28px, 3.4vw, 42px);
  line-height:1.1;
  color:#0f172a;
}
.works-head-lead{
  margin:0 auto;
  max-width:54ch;
  color:#64748b;
  font-size:16px;
  line-height:1.65;
  font-weight:500;
}

.works-steps{
  position:relative;
  display:grid;
  gap:20px;
}
.works-rail{
  display:none;
}
.works-step{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  align-items:start;
  padding:24px 22px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 14px 40px rgba(15,23,42,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.works-step:hover{
  transform:translateY(-3px);
  border-color:rgba(37,99,235,.22);
  box-shadow:0 20px 48px rgba(37,99,235,.10);
}
.works-step-marker{
  position:relative;
  flex-shrink:0;
}
.works-step-icon{
  display:grid;
  place-items:center;
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(145deg, #2563eb, #1d4ed8);
  color:#fff;
  box-shadow:0 12px 28px rgba(37,99,235,.28);
}
.works-step-num{
  position:absolute;
  top:-8px;
  right:-8px;
  min-width:28px;
  height:28px;
  padding:0 7px;
  border-radius:999px;
  background:#0f172a;
  color:#fff;
  font-family:Manrope, system-ui, sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  display:grid;
  place-items:center;
  border:2px solid #fff;
}
.works-step-body{min-width:0; padding-top:2px}
.works-step-title{
  margin:0 0 10px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:18px;
  line-height:1.25;
  color:#0f172a;
}
.works-step-text{
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.7;
  font-weight:500;
}

@media (min-width: 768px){
  .works-steps{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px 28px;
  }
  .works-step{
    grid-template-columns:1fr;
    gap:18px;
    padding:28px 26px 30px;
  }
  .works-head{margin-bottom:64px}
}

@media (min-width: 1100px){
  .works-steps{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:0;
    padding-top:36px;
  }
  .works-rail{
    display:block;
    position:absolute;
    top:52px;
    left:12.5%;
    right:12.5%;
    height:3px;
    z-index:0;
  }
  .works-rail-line{
    display:block;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(37,99,235,.15), rgba(37,99,235,.45) 50%, rgba(37,99,235,.15));
  }
  .works-step{
    position:relative;
    z-index:1;
    grid-template-columns:1fr;
    gap:20px;
    margin:0 14px;
    padding:32px 24px 28px;
    text-align:center;
    min-height:280px;
  }
  .works-step-marker{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-top:-52px;
  }
  .works-step-icon{
    width:64px;
    height:64px;
    border-radius:20px;
    border:4px solid #fff;
  }
  .works-step-num{
    position:static;
    margin-top:12px;
    border:none;
    background:rgba(37,99,235,.10);
    color:#2563eb;
    min-width:36px;
    height:26px;
    font-size:12px;
  }
  .works-step-title{font-size:17px}
  .works-step-text{font-size:13px; line-height:1.65}
}
.section--dark .section-kicker{
  background:rgba(37,99,235,.20);
}
.section-title{
  margin:0 0 8px;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height:1.12;
  text-wrap:balance;
}
.section-subtitle{
  margin:0;
  font-weight: 600;
  color:rgba(11,15,20,.68);
  font-size:15px;
}
.section--dark{
  position:relative;
  overflow:hidden;
  color:rgba(255,255,255,.94);
  background:
          radial-gradient(900px 360px at 50% 0%, rgba(37,99,235,.22), rgba(0,0,0,0) 62%),
          radial-gradient(700px 420px at 10% 70%, rgba(6,182,212,.10), rgba(0,0,0,0) 60%),
          radial-gradient(700px 420px at 90% 70%, rgba(37,99,235,.10), rgba(0,0,0,0) 60%),
          linear-gradient(180deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
}
.section--dark::before{
  content:"";
  position:absolute;
  inset:0;
  background:
          linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
          linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity:.18;
  mask-image: radial-gradient(closest-side at 50% 12%, rgba(0,0,0,.9), rgba(0,0,0,0));
  pointer-events:none;
}
.section--dark .section-head{position:relative}
.section--dark .section-subtitle{
  color:rgba(255,255,255,.74);
}

/* Soft (light) section */
.section--soft{
  position:relative;
  background:
          radial-gradient(900px 360px at 50% 0%, rgba(37,99,235,.08), rgba(255,255,255,0) 62%),
          linear-gradient(180deg, #f8fafc 0%, #eff6ff 55%, #f8fafc 100%);
}
.section--soft::before{
  content:"";
  position:absolute;
  inset:0;
  background:
          linear-gradient(to right, rgba(11,15,20,.05) 1px, transparent 1px),
          linear-gradient(to bottom, rgba(11,15,20,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity:.20;
  mask-image: radial-gradient(closest-side at 50% 18%, rgba(0,0,0,.85), rgba(0,0,0,0));
  pointer-events:none;
}
.section--soft .section-head{position:relative}
.section-subtitle--wide{
  max-width: 88ch;
  margin-inline:auto;
  line-height:1.65;
  text-wrap:pretty;
}

/* Verify section â€” sidebar + dark panel (2026 layout) */
.verify-section{
  position:relative;
  padding: clamp(56px, 7vw, 88px) 0;
  overflow:hidden;
}
.verify-section-bg{
  position:absolute;
  inset:0;
  background:
          radial-gradient(ellipse 70% 50% at 15% 0%, rgba(37,99,235,.08), transparent 55%),
          radial-gradient(ellipse 50% 40% at 90% 100%, rgba(6,182,212,.06), transparent 50%),
          linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #ffffff 100%);
  pointer-events:none;
}
.verify-head{
  text-align:center;
  margin-bottom: clamp(28px, 4vw, 40px);
  position:relative;
}
.verify-head-title{
  margin:0 0 12px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:900;
  letter-spacing:-.03em;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height:1.12;
  color:var(--ink);
  text-wrap:balance;
}
.verify-head-lead{
  margin:0 auto;
  max-width:62ch;
  font-size:15px;
  font-weight:500;
  line-height:1.65;
  color:var(--muted);
  text-wrap:pretty;
}

.verify-shell{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  max-width:1060px;
  margin-inline:auto;
}

/* Sidebar tabs â€” vertical cards */
.verify-sidebar{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.verify-tab{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  line-height:1.25;
  text-align:left;
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
  box-shadow:0 2px 8px rgba(15,23,42,.04);
}
.verify-tab:hover{
  border-color:rgba(37,99,235,.25);
  color:var(--ink);
  transform:translateX(3px);
}
.verify-tab.is-active{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color:transparent;
  color:#fff;
  box-shadow:0 12px 32px rgba(37,99,235,.28);
  transform:none;
}
.verify-tab-icon{
  display:grid;
  place-items:center;
  width:40px;height:40px;
  border-radius:11px;
  background:rgba(37,99,235,.08);
  color:var(--brand);
  flex-shrink:0;
  transition: background .2s ease, color .2s ease;
}
.verify-tab.is-active .verify-tab-icon{
  background:rgba(255,255,255,.18);
  color:#fff;
}
.verify-tab-label{
  flex:1;
  min-width:0;
}

/* Main dark panel */
.verify-panel{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(145deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  color:rgba(255,255,255,.92);
  box-shadow:0 28px 80px rgba(15,23,42,.22);
  border:1px solid rgba(255,255,255,.08);
}
.verify-panel-glow{
  position:absolute;
  top:-20%;
  right:-10%;
  width:55%;
  height:70%;
  background:radial-gradient(closest-side, rgba(37,99,235,.35), transparent);
  filter:blur(40px);
  pointer-events:none;
}
.verify-panel-top{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px 0;
}
.verify-step{
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:14px;
  color:rgba(255,255,255,.5);
  letter-spacing:.04em;
  flex-shrink:0;
}
.verify-step-current{color:#fff; font-size:18px}
.verify-step-sep{margin:0 2px}
.verify-progress{
  flex:1;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
}
.verify-progress-bar{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--brand), var(--accent));
  transition:width .35s cubic-bezier(.4,0,.2,1);
}

.verify-body{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  padding:24px 24px 28px;
  align-items:center;
}
.verify-copy{
  position:relative;
  z-index:1;
}
.verify-title{
  margin:0 0 12px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(22px, 2.5vw, 30px);
  line-height:1.15;
  color:#fff;
  transition: opacity .25s ease;
}
.verify-text{
  margin:0 0 22px;
  color:rgba(255,255,255,.72);
  font-weight:500;
  font-size:15px;
  line-height:1.65;
  max-width:48ch;
  transition: opacity .25s ease;
}
.verify-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 22px;
  border-radius:12px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  background:#fff;
  color:var(--brand-dark);
  box-shadow:0 8px 24px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.verify-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(0,0,0,.28);
}
.verify-cta-arrow{
  display:flex;
  transition: transform .2s ease;
}
.verify-cta:hover .verify-cta-arrow{transform:translateX(3px)}

.verify-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  z-index:1;
}
.verify-icon-display{
  position:relative;
  width:min(220px, 70vw);
  height:min(220px, 70vw);
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:grid;
  place-items:center;
  box-shadow:inset 0 0 60px rgba(37,99,235,.15);
}
.verify-icon-art{
  position:absolute;
  inset:18%;
  color:rgba(96,165,250,.9);
  opacity:0;
  transform:scale(.88);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events:none;
}
.verify-icon-art svg{
  width:100%;
  height:100%;
}
.verify-panel[data-verify-active="odometer"] .verify-icon-art--odometer,
.verify-panel[data-verify-active="stolen"] .verify-icon-art--stolen,
.verify-panel[data-verify-active="damage"] .verify-icon-art--damage,
.verify-panel[data-verify-active="technical"] .verify-icon-art--technical,
.verify-panel[data-verify-active="ownership"] .verify-icon-art--ownership{
  opacity:1;
  transform:scale(1);
}

.verify-panel.is-switching .verify-title,
.verify-panel.is-switching .verify-text{
  opacity:0;
}

@media (min-width:900px){
  .verify-shell{
    grid-template-columns:minmax(240px, 280px) minmax(0, 1fr);
    gap:20px;
    align-items:stretch;
  }
  .verify-sidebar{padding-top:4px}
  .verify-body{
    grid-template-columns:1.1fr .9fr;
    padding:28px 32px 36px;
    gap:32px;
    min-height:280px;
  }
  .verify-icon-display{
    width:240px;
    height:240px;
  }
}

@media (max-width:899px){
  .verify-sidebar{
    flex-direction:row;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:8px;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .verify-sidebar::-webkit-scrollbar{display:none}
  .verify-tab{
    flex:0 0 auto;
    min-width:max-content;
    padding:12px 14px;
    transform:none !important;
  }
  .verify-tab-label{font-size:13px; white-space:nowrap}
  .verify-tab:hover{transform:none}
}

@media (max-width:600px){
  .verify-panel-top{padding:16px 18px 0}
  .verify-body{padding:20px 18px 24px}
  .verify-icon-display{width:180px; height:180px}
}

/* Legacy works classes removed â€” see .works-section above */


/* Vehicle Check Data â€” dashboard layout */
.data-section{
  position:relative;
  padding:72px 0 80px;
  overflow:hidden;
  background:#f8fafc;
  color:#0f172a;
}
.data-section-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
          radial-gradient(900px 420px at 8% -10%, rgba(37,99,235,.10), transparent 60%),
          radial-gradient(700px 360px at 92% 110%, rgba(14,165,233,.08), transparent 58%),
          linear-gradient(180deg, #fff 0%, #f8fafc 42%, #eef2ff 100%);
}
.data-section-bg::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.45;
  background-image:radial-gradient(rgba(15,23,42,.08) 1px, transparent 1px);
  background-size:22px 22px;
  mask-image:linear-gradient(180deg, #000 0%, transparent 92%);
}

.data-head{
  position:relative;
  display:grid;
  gap:28px;
  margin-bottom:32px;
}
.data-head-title{
  margin:8px 0 10px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(28px, 3.4vw, 42px);
  line-height:1.08;
  color:#0f172a;
}
.data-head-lead{
  margin:0;
  max-width:52ch;
  color:#64748b;
  font-size:16px;
  line-height:1.65;
  font-weight:500;
}
.data-head-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
.data-stat{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 30px rgba(15,23,42,.06);
  backdrop-filter:blur(8px);
}
.data-stat-value{
  display:block;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:22px;
  letter-spacing:-.02em;
  color:#2563eb;
  line-height:1.1;
}
.data-stat-label{
  display:block;
  margin-top:4px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:#64748b;
}

.data-filters{
  position:relative;
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
  margin-bottom:24px;
  scrollbar-width:none;
}
.data-filters::-webkit-scrollbar{display:none}
.data-filter{
  flex:0 0 auto;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:#475569;
  border-radius:999px;
  padding:11px 16px;
  font:inherit;
  font-size:12px;
  font-weight:700;
  letter-spacing:.01em;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  white-space:normal;
  text-align:center;
  line-height:1.25;
  max-width:min(100%, 220px);
}
.data-filter:hover{
  border-color:rgba(37,99,235,.35);
  color:#1e293b;
}
.data-filter.is-active{
  background:linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color:transparent;
  color:#fff;
  box-shadow:0 12px 28px rgba(37,99,235,.28);
}

.data-featured{
  position:relative;
  display:grid;
  gap:16px;
  margin-bottom:18px;
}
.data-feature-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  padding:26px 24px 24px;
  background:linear-gradient(155deg, #0f172a 0%, #1e293b 52%, #0f172a 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 22px 60px rgba(15,23,42,.18);
  transition:transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}
.data-feature-card::before{
  content:"";
  position:absolute;
  top:-30%;
  right:-15%;
  width:55%;
  height:80%;
  background:radial-gradient(closest-side, rgba(37,99,235,.42), transparent);
  filter:blur(28px);
  pointer-events:none;
}
.data-feature-card.is-dimmed{
  opacity:.38;
  transform:scale(.985);
}
.data-feature-num{
  position:absolute;
  top:14px;
  right:18px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:42px;
  line-height:1;
  letter-spacing:-.04em;
  color:rgba(255,255,255,.08);
}
.data-feature-icon{
  position:relative;
  z-index:1;
  display:grid;
  place-items:center;
  width:56px;
  height:56px;
  border-radius:16px;
  margin-bottom:16px;
  background:rgba(37,99,235,.22);
  border:1px solid rgba(96,165,250,.35);
  color:#93c5fd;
}
.data-feature-title{
  position:relative;
  z-index:1;
  margin:0 0 10px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:20px;
  letter-spacing:-.02em;
  line-height:1.2;
}
.data-feature-text{
  position:relative;
  z-index:1;
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.65;
  font-weight:500;
}

.data-matrix{
  position:relative;
  display:grid;
  gap:12px;
}
.data-tile{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease, opacity .25s ease;
}
.data-tile:hover{
  transform:translateY(-3px);
  border-color:rgba(37,99,235,.28);
  box-shadow:0 16px 36px rgba(37,99,235,.12);
}
.data-tile.is-dimmed{
  opacity:.34;
  transform:none;
  box-shadow:none;
}
.data-tile-icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(145deg, rgba(37,99,235,.12), rgba(14,165,233,.08));
  border:1px solid rgba(37,99,235,.18);
  color:#2563eb;
}
.data-tile-body{min-width:0}
.data-tile-title{
  margin:0 0 6px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:15px;
  letter-spacing:-.01em;
  line-height:1.25;
  color:#0f172a;
}
.data-tile-text{
  margin:0;
  color:#64748b;
  font-size:13px;
  line-height:1.6;
  font-weight:500;
}

@media (min-width: 760px){
  .data-head{
    grid-template-columns:1.2fr .8fr;
    align-items:end;
    gap:32px;
  }
  .data-featured{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
  }
  .data-matrix{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
  }
}

@media (min-width: 1080px){
  .data-section{padding:88px 0 96px}
  .data-matrix{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px;
  }
}

/* Stub sections + footer */
.stub-section{
  padding: 60px 0;
  border-top:1px solid rgba(11,15,20,.06);
}
.stub-title{
  margin:0;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
}

/* Footer â€” CTA strip + dark main */
.footer-section{
  margin-top:auto;
}
.footer-cta{
  background:linear-gradient(135deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
  color:#fff;
}
.footer-cta-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:20px 24px;
  padding:28px 0;
}
.footer-cta-title{
  margin:0 0 6px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:clamp(20px, 2.4vw, 26px);
  letter-spacing:-.02em;
  line-height:1.15;
}
.footer-cta-text{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.86);
  font-weight:500;
  max-width:46ch;
}
.footer-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:14px;
  background:#fff;
  color:#1d4ed8;
  font-weight:800;
  font-size:14px;
  letter-spacing:.02em;
  box-shadow:0 14px 36px rgba(0,0,0,.18);
  transition:transform .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.footer-cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.24);
}

.footer-main{
  position:relative;
  overflow:hidden;
  background:#0f172a;
  color:rgba(255,255,255,.92);
}
.footer-main-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
          radial-gradient(700px 280px at 10% 0%, rgba(37,99,235,.16), transparent 62%),
          radial-gradient(600px 240px at 90% 100%, rgba(6,182,212,.08), transparent 58%);
}
.footer-shell{
  position:relative;
  padding:clamp(40px, 5vw, 56px) 0 clamp(24px, 3vw, 32px);
}
.footer-top{
  display:grid;
  gap:32px;
  margin-bottom:32px;
}
.footer-brand-block{
  max-width:42ch;
}
.footer-brand{
  display:inline-flex;
  margin-bottom:14px;
  transition:opacity .2s ease, transform .2s ease;
}
.footer-brand:hover{
  opacity:.92;
  transform:translateY(-1px);
}
.footer-logo{
  display:block;
  width:min(200px, 100%);
  height:auto;
}
.footer-tagline{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.65;
  color:rgba(255,255,255,.76);
  font-weight:500;
}
.footer-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.footer-trust-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.88);
}
.footer-trust-item svg{
  flex-shrink:0;
  color:#93c5fd;
}

.footer-nav{
  display:grid;
  gap:28px;
}
.footer-heading{
  margin:0 0 14px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.footer-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:14px;
  color:rgba(255,255,255,.84);
  transition:color .2s ease, transform .2s ease;
  overflow-wrap:break-word;
  word-break:break-word;
}
.footer-link::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:rgba(96,165,250,.55);
  flex-shrink:0;
  transition:background .2s ease, transform .2s ease;
}
.footer-link:hover{
  color:#fff;
  transform:translateX(3px);
}
.footer-link:hover::before{
  background:#60a5fa;
  transform:scale(1.15);
}

.footer-bottom{
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-copy{
  margin:0;
  font-size:13px;
  font-weight:500;
  color:rgba(255,255,255,.62);
  line-height:1.5;
}
.footer-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:13px;
  color:rgba(255,255,255,.88);
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-back:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
  color:#fff;
  transform:translateY(-1px);
}
.footer-back-icon{
  display:grid;
  place-items:center;
  width:24px;
  height:24px;
  border-radius:999px;
  background:rgba(37,99,235,.25);
  color:#93c5fd;
}

@media (min-width: 768px){
  .footer-nav{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:32px 40px;
  }
}
@media (min-width: 960px){
  .footer-top{
    grid-template-columns:minmax(280px, 1.1fr) minmax(0, 1fr);
    gap:48px;
    align-items:start;
  }
  .footer-cta-inner{padding:32px 0}
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive nav (mobile / tablet) */
@media (max-width: 1099px){
    
    .hero .checker-button {
    max-width: 100%;
}
    
  .nav{
    position:relative;
    justify-content:flex-end;
  }
  .nav-list{
    position:absolute;
    right:0;
    top: calc(100% + 10px);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width: min(280px, calc(100vw - 24px));
    padding:10px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(11,15,20,.10);
    border-radius:18px;
    box-shadow: 0 18px 54px rgba(11,15,20,.16);
    backdrop-filter: blur(12px);
    transform-origin: top right;
    transform: scale(.98) translateY(-6px);
    opacity:0;
    pointer-events:none;
    transition: opacity .18s ease, transform .18s ease;
    left:auto;
    z-index:120;
  }
  .nav.is-open .nav-list{
    opacity:1;
    transform: scale(1) translateY(0);
    pointer-events:auto;
  }
  .nav-link{
    justify-content:flex-start;
    border-radius:14px;
    white-space:normal;
    font-size:14px;
    padding:12px 14px;
  }

  .nav-toggle{flex:0 0 auto}
}

@media (max-width: 720px){
  .hero-lines{opacity:.55}
  .tabs{justify-content:center; padding-left:0}
  .checker{
    flex-direction:column;
    gap:12px;
  }
  .checker-button{
    width:100%;
    min-height:54px;
  }
  .checker-input{
    padding:18px 16px;
  }
  .verify-body{padding: 24px 14px}

  /* Header mobile polish (do not change desktop) */
  .header-inner{gap:10px}
  .header-actions{gap:8px}
  .lang{
    padding: 8px 10px;
    gap: 8px;
    white-space: nowrap;
  }
  .lang-label{display:none}
  .lang-options{
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(240px, calc(100vw - 24px));
  }

  /* Contact: stack shell on mobile */
  .contact-shell{
    grid-template-columns:1fr !important;
  }
  .contact-form-grid{
    grid-template-columns:1fr !important;
  }
  .contact-submit{
    align-self:stretch;
    justify-content:center;
  }
  .faq-shell{
    grid-template-columns:1fr !important;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important; animation:none !important}
}

/* Offer â€” dark panel + floating visual */
.offer-section{
  position:relative;
  padding:clamp(64px, 7vw, 96px) 0;
  overflow:hidden;
}
.offer-section-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
          radial-gradient(820px 320px at 12% 0%, rgba(37,99,235,.10), transparent 62%),
          linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.offer-shell{position:relative}
.offer-panel{
  display:grid;
  gap:0;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(145deg, #0f172a 0%, #1e293b 52%, #0f172a 100%);
  color:#fff;
  box-shadow:0 28px 80px rgba(15,23,42,.22);
  border:1px solid rgba(255,255,255,.08);
}
.offer-copy{
  position:relative;
  z-index:1;
  padding:32px 24px 36px;
}
.offer-kicker{
  margin:0 0 10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color:#93c5fd;
}
.offer-title{
  margin:0 0 18px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(26px, 3.2vw, 38px);
  line-height:1.12;
  color:#fff;
}
.offer-price-tag{
  display:inline-flex;
  flex-direction:column;
  gap:2px;
  margin-bottom:18px;
  padding:12px 18px;
  border-radius:16px;
  background:rgba(37,99,235,.18);
  border:1px solid rgba(96,165,250,.35);
}
.offer-price-label{
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
.offer-price-amount{
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(34px, 4vw, 48px);
  line-height:1;
  color:#fff;
}
.offer-lead{
  margin:0 0 22px;
  max-width:52ch;
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.7;
  font-weight:500;
}
.offer-checklist{
  list-style:none;
  margin:0 0 26px;
  padding:0;
  display:grid;
  gap:12px;
}
.offer-check-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  font-weight:600;
  color:rgba(255,255,255,.9);
}
.offer-check-icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:999px;
  background:rgba(37,99,235,.28);
  color:#93c5fd;
}
.offer-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:14px;
  background:#fff;
  color:#1d4ed8;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
  font-size:12px;
  box-shadow:0 14px 36px rgba(0,0,0,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.offer-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.28);
}
.offer-cta-arrow{display:grid; place-items:center}

.offer-visual{
  position:relative;
  min-height:260px;
  padding:20px;
}
.offer-visual-frame{
  position:absolute;
  inset:20px;
  border-radius:22px;
  background:
          linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.42)),
          url("../images/ctabgimage.jpg") center/cover no-repeat;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
  transform:rotate(2deg);
}
.offer-chip{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#0f172a;
  font-size:12px;
  font-weight:700;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}
.offer-chip--verified{top:36px; left:8px}
.offer-chip--speed{bottom:36px; right:8px}

@media (min-width: 960px){
  .offer-panel{grid-template-columns:1.05fr .95fr; min-height:420px}
  .offer-copy{padding:44px 40px 48px}
  .offer-visual-frame{inset:28px 28px 28px 0; transform:rotate(3deg) translateX(12px)}
}

/* Support â€” split intro + metric strip */
.support-section{
  padding:clamp(48px, 6vw, 72px) 0 clamp(64px, 7vw, 88px);
  background:#fff;
}
.support-shell{
  display:grid;
  gap:20px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}
.support-intro{
  padding:32px 26px;
  background:linear-gradient(145deg, #0f172a, #1e293b);
  color:#fff;
}
.support-intro-title{
  margin:8px 0 12px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(24px, 2.8vw, 32px);
  line-height:1.15;
}
.support-intro-text{
  margin:0 0 20px;
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.65;
  font-weight:500;
  max-width:42ch;
}
.support-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#93c5fd;
  font-size:14px;
  font-weight:700;
  transition:color .2s ease, gap .2s ease;
}
.support-link:hover{color:#fff; gap:12px}

.support-metrics{
  display:grid;
  gap:0;
  background:#f8fafc;
}
.support-metric{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  padding:28px 24px;
  border-top:1px solid rgba(15,23,42,.08);
}
.support-metric-icon{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(37,99,235,.12);
  color:#2563eb;
}
.support-metric-value{
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:28px;
  letter-spacing:-.02em;
  color:#0f172a;
  line-height:1.1;
}
.support-metric-label{
  font-size:13px;
  font-weight:600;
  color:#64748b;
}

@media (min-width: 900px){
  .support-shell{grid-template-columns:minmax(280px, 380px) 1fr}
  .support-metrics{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .support-metric{
    border-top:none;
    border-left:1px solid rgba(15,23,42,.08);
    padding:36px 28px;
    justify-content:center;
  }
  .support-metric:first-child{border-left:none}
  .support-intro{padding:40px 36px}
}

/* Brands â€” logo wall + ticker */
.brands-section{
  position:relative;
  padding:clamp(56px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
  overflow:hidden;
  background:#f8fafc;
}
.brands-section-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
          radial-gradient(700px 280px at 50% 0%, rgba(37,99,235,.08), transparent 60%),
          linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.brands-head{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:32px;
}
.brands-head-title{
  margin:0 0 8px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(24px, 3vw, 36px);
  line-height:1.12;
  color:#0f172a;
}
.brands-head-lead{
  margin:0;
  color:#64748b;
  font-size:15px;
  font-weight:600;
}
.brands-badge{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
  color:#2563eb;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.brands-wall{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-bottom:24px;
}
.brands-cell{
  display:grid;
  place-items:center;
  aspect-ratio:1.35;
  padding:16px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.brands-cell:hover{
  transform:translateY(-3px);
  border-color:rgba(37,99,235,.24);
  box-shadow:0 16px 36px rgba(37,99,235,.12);
}
.brand-logo{
  width:72%;
  max-height:56px;
  object-fit:contain;
  filter:grayscale(1);
  opacity:.72;
  transition:filter .22s ease, opacity .22s ease, transform .22s ease;
}
.brands-cell:hover .brand-logo{
  filter:grayscale(0);
  opacity:1;
  transform:scale(1.04);
}

.brands-marquee{
  position:relative;
  overflow:hidden;
  padding:14px 0;
  border-top:1px solid rgba(15,23,42,.08);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands-marquee-track{
  display:flex;
  gap:28px;
  width:max-content;
  animation:brands-ticker 32s linear infinite;
}
.brands-marquee:hover .brands-marquee-track{animation-play-state:paused}
.brands-marquee-item{
  flex:0 0 auto;
  font-family:Manrope, system-ui, sans-serif;
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#94a3b8;
  white-space:nowrap;
}

@media (min-width: 640px){
  .brands-wall{grid-template-columns:repeat(4, minmax(0, 1fr)); gap:14px}
}
@media (min-width: 1024px){
  .brands-wall{grid-template-columns:repeat(6, minmax(0, 1fr)); gap:16px}
}

@keyframes brands-ticker{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* FAQ â€” split help center layout */
.faq-section{
  position:relative;
  padding:clamp(64px, 7vw, 96px) 0 clamp(72px, 8vw, 104px);
  overflow:hidden;
  background:#f8fafc;
}
.faq-section-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
          radial-gradient(760px 320px at 88% 0%, rgba(37,99,235,.08), transparent 62%),
          linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.faq-shell{
  position:relative;
  display:grid;
  gap:28px;
  align-items:start;
}
.faq-intro{
  position:relative;
}
.faq-intro-title{
  margin:8px 0 12px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.12;
  color:#0f172a;
}
.faq-intro-lead{
  margin:0 0 20px;
  max-width:36ch;
  color:#64748b;
  font-size:15px;
  line-height:1.65;
  font-weight:500;
}
.faq-help-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#2563eb;
  font-size:14px;
  font-weight:700;
  transition:gap .2s ease, color .2s ease;
}
.faq-help-link:hover{color:#1d4ed8; gap:12px}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 28px rgba(15,23,42,.05);
  overflow:hidden;
  transition:box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}
.faq-item.is-open{
  border-color:rgba(37,99,235,.28);
  box-shadow:0 16px 40px rgba(37,99,235,.12);
  transform:translateY(-2px);
}
.faq-question{
  width:100%;
  padding:18px 18px;
  border:0;
  background:transparent;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  cursor:pointer;
  text-align:left;
}
.faq-num{
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:13px;
  letter-spacing:.06em;
  color:#2563eb;
  background:rgba(37,99,235,.10);
  border-radius:999px;
  padding:6px 10px;
  line-height:1;
}
.faq-question-text{
  font-weight:700;
  font-size:15px;
  line-height:1.35;
  color:#0f172a;
  overflow-wrap:break-word;
  word-break:break-word;
  min-width:0;
}
.faq-chevron{
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  border-radius:999px;
  background:#f1f5f9;
  color:#64748b;
  transition:transform .22s ease, background .22s ease, color .22s ease;
}
.faq-item.is-open .faq-chevron{
  transform:rotate(180deg);
  background:rgba(37,99,235,.12);
  color:#2563eb;
}
.faq-answer{
  padding:0 18px 18px 56px;
  color:#64748b;
  font-size:14px;
  line-height:1.7;
  font-weight:500;
}
.faq-answer p{margin:10px 0 0}
.faq-answer p:first-child{margin-top:0}

@media (min-width: 960px){
  .faq-shell{grid-template-columns:minmax(240px, 320px) 1fr; gap:40px}
  .faq-intro{position:sticky; top:96px}
  .faq-question{padding:20px 22px}
  .faq-answer{padding:0 22px 22px 68px}
}

/* Contact â€” dark aside + form panel */
.contact-section{
  position:relative;
  padding:clamp(64px, 7vw, 96px) 0;
  overflow:hidden;
  background:#fff;
}
.contact-section-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
          radial-gradient(760px 320px at 12% 100%, rgba(37,99,235,.08), transparent 62%),
          linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.contact-shell{
  position:relative;
  display:grid;
  gap:0;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 24px 70px rgba(15,23,42,.10);
}
.contact-aside{
  padding:32px 26px;
  background:linear-gradient(145deg, #0f172a 0%, #1e293b 52%, #0f172a 100%);
  color:#fff;
}
.contact-aside-title{
  margin:8px 0 12px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:clamp(24px, 2.8vw, 34px);
  line-height:1.12;
}
.contact-aside-lead{
  margin:0 0 24px;
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.65;
  font-weight:500;
  max-width:38ch;
}
.contact-channels{
  display:grid;
  gap:12px;
  margin-bottom:24px;
}
.contact-channel{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-channel:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(96,165,250,.35);
  transform:translateX(4px);
}
.contact-channel-icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(37,99,235,.22);
  color:#93c5fd;
}
.contact-channel-body{display:grid; gap:2px; min-width:0}
.contact-channel-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
}
.contact-channel-value{
  font-size:15px;
  font-weight:700;
  color:#fff;
  word-break:break-word;
}
.contact-trust{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.contact-trust-item{
  position:relative;
  padding-left:22px;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,.82);
  line-height:1.5;
}
.contact-trust-item::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#60a5fa;
  box-shadow:0 0 0 4px rgba(96,165,250,.18);
}

.contact-form-wrap{
  position:relative;
  padding:32px 24px 36px;
  background:#fff;
}
.contact-form-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.contact-form-success{
  text-align:center;
  padding:24px 16px;
}
.contact-form-success-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--success), #16a34a);
  color:#fff;
  font-size:28px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}
.contact-form-success-title{
  margin:0 0 8px;
  font-family:Manrope, system-ui, sans-serif;
  font-weight:800;
  font-size:22px;
  color:var(--ink);
}
.contact-form-success-text{
  margin:0;
  font-size:15px;
  color:rgba(11,15,20,.7);
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.contact-form-row{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.contact-label{
  font-weight:700;
  font-size:13px;
  letter-spacing:.02em;
  color:rgba(11,15,20,.78);
}
.contact-input{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:#f8fafc;
  font-size:16px;
  color:var(--ink);
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-input::placeholder{color:rgba(11,15,20,.42)}
.contact-input:focus{
  outline:none;
  border-color:rgba(37,99,235,.45);
  background:#fff;
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}
.contact-input.is-error{
  border-color:#dc2626;
  box-shadow:0 0 0 2px rgba(220,38,38,.18);
}
.contact-input.is-error:focus{
  border-color:#dc2626;
  box-shadow:0 0 0 3px rgba(220,38,38,.22);
}
.contact-form-error{
  font-size:13px;
  font-weight:600;
  color:#dc2626;
  margin-top:2px;
}
.contact-textarea{
  min-height:140px;
  resize:vertical;
}
.contact-form-loader{
  text-align:center;
  padding:48px 24px;
}
.contact-form-loader-spinner{
  display:inline-block;
  width:44px;
  height:44px;
  border:3px solid rgba(37,99,235,.25);
  border-top-color:var(--brand);
  border-radius:50%;
  animation:contact-spin .8s linear infinite;
}
.contact-form-loader-text{
  margin:16px 0 0;
  font-weight:700;
  font-size:15px;
  color:rgba(11,15,20,.75);
}
@keyframes contact-spin{
  to{transform:rotate(360deg)}
}
.contact-submit{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(37,99,235,.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.contact-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 48px rgba(37,99,235,.35);
}
.contact-submit:active{transform:translateY(0)}
.contact-submit:disabled{
  opacity:.85;
  cursor:not-allowed;
}

@media (min-width: 640px){
  .contact-form-grid{grid-template-columns:1fr 1fr}
}
@media (min-width: 960px){
  .contact-shell{grid-template-columns:minmax(300px, 380px) 1fr}
  .contact-aside{padding:40px 34px}
  .contact-form-wrap{padding:40px 38px 44px}
}


/* Legacy car banner removed */
.car-box,
.car-bg-road{
  display:none !important;
}

/* VIN helper modal */
.vin-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.vin-modal-overlay[hidden]{
  display: none;
}

.vin-modal{
  width: min(640px, 100%);
  background: rgba(255,255,255,.98);
  border-radius: 22px;
  border: 1px solid rgba(11,15,20,.10);
  box-shadow: 0 28px 90px rgba(11,15,20,.28);
  position: relative;
  overflow: hidden;
}
.vin-modal::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
          radial-gradient(900px 320px at 10% 0%, rgba(37,99,235,.22), rgba(255,255,255,0) 60%),
          radial-gradient(900px 320px at 90% 100%, rgba(59,130,246,.14), rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.vin-modal-content{
  position: relative;
  padding: 34px 22px 26px;
}
.vin-modal-title{
  margin: 0 40px 12px 0;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: -.02em;
  font-size: clamp(20px, 3vw, 28px);
  color: rgba(11,15,20,.92);
}
.vin-modal-body p{
  margin: 0;
  color: rgba(11,15,20,.70);
  font-weight: 600;
  line-height: 1.8;
  font-size: 14px;
}
.vin-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11,15,20,.10);
  background: rgba(255,255,255,.78);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: rgba(11,15,20,.78);
  z-index: 2;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.vin-modal-close:hover{
  transform: translateY(-1px);
  border-color: rgba(37,99,235,.30);
  box-shadow: 0 14px 34px rgba(11,15,20,.12);
}
.vin-modal-close span{
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 520px){
  .vin-modal-content{
    padding: 30px 16px 22px;
  }
  .vin-modal-close{
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* Policy pages (privacy/terms/refund) */
.policy-page{
  padding-top: clamp(70px, 8vw, 112px);
  padding-bottom: clamp(60px, 7vw, 96px);
}
.policy-head{ margin-bottom: 26px; }
.policy-title{ margin-bottom: 10px; }
.policy-subtitle{
  max-width: 80ch;
  margin-inline: auto;
}
.policy-card{
  border-radius: 26px;
  border: 1px solid rgba(11,15,20,.08);
  background:
          radial-gradient(900px 380px at 10% 0%, rgba(37,99,235,.12), rgba(255,255,255,0) 60%),
          rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(11,15,20,.12);
  backdrop-filter: blur(10px);
  overflow:hidden;
}
.policy-content{
  padding: 28px 22px;
  color: rgba(11,15,20,.80);
  font-weight: 600;
}
.policy-content p{
  margin: 0 0 14px;
  line-height: 1.85;
}
.policy-h2{
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: -.02em;
  color: rgba(11,15,20,.92);
  font-size: 20px;
  margin: 26px 0 12px;
}
.policy-h3{
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgba(11,15,20,.88);
  font-size: 16px;
  margin: 18px 0 10px;
}
.policy-ul{
  margin: 0 0 18px;
  padding-left: 18px;
}
.policy-ul li{
  margin: 8px 0;
  line-height: 1.7;
}

@media (min-width: 980px){
  .policy-content{ padding: 42px 46px; }
}

/* Checkout page */
.checkout-page{
  padding-top: clamp(70px, 8vw, 20px);
  padding-bottom: clamp(60px, 7vw, 96px);
}

.checkout-back-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom: 18px;
  color: rgba(11,15,20,.72);
  font-weight: 800;
  font-size: 14px;
}

.checkout-hero-head{
  margin-bottom: 24px;
}

.checkout-title{
  font-family: Manrope, system-ui, sans-serif;
  margin:0;
  letter-spacing:-.03em;
  font-weight: 950;
  font-size: clamp(30px, 4.4vw, 44px);
}

.checkout-subtitle{
  margin: 10px 0 0;
  color: rgba(11,15,20,.68);
  font-weight: 700;
  max-width: 70ch;
}

.checkout-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}

.checkout-form-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,15,20,.08);
  background:
          radial-gradient(900px 280px at 20% 0%, rgba(37,99,235,.14), rgba(255,255,255,0) 62%),
          rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  padding: 22px;
}

.checkout-form-title{
  margin:0 0 14px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 18px;
  color: rgba(11,15,20,.92);
}

.checkout-form{
  display:block;
}

.checkout-field{
  margin-bottom: 14px;
}

.checkout-label{
  display:block;
  font-weight: 900;
  color: rgba(11,15,20,.86);
  margin-bottom: 7px;
  font-size: 14px;
}

.checkout-input{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(11,15,20,.12);
  background: rgba(255,255,255,.92);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-weight: 700;
}

.checkout-input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.16);
}

.checkout-help{
  margin: 8px 0 0;
  color: rgba(11,15,20,.56);
  font-weight: 700;
  font-size: 12.5px;
}

.checkout-error{
  margin: 8px 0 0;
  color: rgba(210, 45, 45, .95);
  font-weight: 900;
  font-size: 12.5px;
}

.checkout-submit{
  width:100%;
  margin-top: 10px;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(37,99,235,1) 0%, rgba(59,130,246,1) 100%);
  color: white;
  font-weight: 950;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  box-shadow: 0 16px 38px rgba(37,99,235,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.checkout-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(37,99,235,.26);
}

.checkout-submit:disabled{
  cursor:not-allowed;
  filter: grayscale(.25);
  transform: none;
}

.checkout-privacy-note{
  margin-top: 12px;
  color: rgba(11,15,20,.54);
  font-weight: 700;
  font-size: 12.5px;
}

.checkout-right{
  position: relative;
}

.checkout-summary-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,15,20,.08);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  padding: 22px;
}

.checkout-summary-title{
  margin:0;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 18px;
}

.checkout-summary-subtitle{
  margin: 10px 0 18px;
  color: rgba(11,15,20,.62);
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.6;
}

.checkout-badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.12);
  color: rgba(37,99,235,1);
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 14px;
}

.checkout-friendly{
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 18px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.checkout-friendly-title{
  margin:0;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
}

.checkout-friendly-text{
  margin: 6px 0 0;
  color: rgba(11,15,20,.62);
  font-weight: 800;
  font-size: 12.8px;
  line-height: 1.6;
}

.checkout-quick-line{
  display:flex;
  align-items:center;
  gap: 10px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 16px;
  padding: 10px 12px;
  margin-bottom: 18px;
}

.checkout-check{
  color: rgba(34,197,94,1);
}

.checkout-quick-text{
  font-weight: 950;
  color: rgba(11,15,20,.80);
  font-size: 13.5px;
}

.checkout-included-title{
  margin:0 0 10px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 16px;
}

.checkout-included-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 9px;
}

.checkout-included-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: rgba(11,15,20,.80);
  font-size: 13.5px;
}

.checkout-li-check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(34,197,94,.14);
  color: rgba(34,197,94,1);
  font-weight: 950;
  flex: 0 0 auto;
}

.checkout-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(11,15,20,.08);
}

.checkout-total-label{
  font-weight: 950;
}

.checkout-total-price{
  font-weight: 950;
  color: rgba(37,99,235,1);
  font-size: 18px;
}

.checkout-bottom-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 37px;
}

.checkout-mini-card{
  border-radius: 18px;
  border: 1px solid rgba(11,15,20,.08);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 38px rgba(11,15,20,.06);
  padding: 14px 14px;
  display:flex;
  align-items:center;
  gap: 12px;
  width: 100%;
}

.checkout-mini-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.20);
  color: rgba(37,99,235,1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: .02em;
  flex: 0 0 auto;
}

.checkout-mini-title{
  font-weight: 950;
}

.checkout-mini-text{
  color: rgba(11,15,20,.58);
  font-weight: 800;
  font-size: 12.8px;
  margin-top: 4px;
}

/* Loader overlay */
.checkout-loader-overlay{
  position: fixed;
  inset: 0;
  background: rgba(11,15,20,.38);
  backdrop-filter: blur(10px) saturate(1.1);
  z-index: 999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}

.checkout-loader-overlay[hidden]{
  display:none !important;
}

.checkout-loader-card{
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.88);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  padding: 22px 18px;
  display:flex;
  align-items:center;
  gap: 16px;
}

.checkout-spinner{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid rgba(37,99,235,.20);
  border-top-color: rgba(37,99,235,1);
  animation: checkout-spin 900ms linear infinite;
  flex: 0 0 auto;
}

@keyframes checkout-spin{
  from{ transform: rotate(0deg) }
  to{ transform: rotate(360deg) }
}

.checkout-loader-title{
  font-weight: 950;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  letter-spacing:-.02em;
}

.checkout-loader-subtitle{
  margin-top: 6px;
  color: rgba(11,15,20,.64);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 980px){
  .checkout-grid{
    grid-template-columns: 1.05fr .75fr;
    gap: 24px;
  }
  .checkout-bottom-cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  /* Keep payment details visible while scrolling */
  .checkout-form-card{
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    /* Prevent large Ã¢â‚¬Å“blankÃ¢â‚¬Â area on the left after sticky stops */
    min-height: 640px;
  }

  .checkout-page{
    padding-bottom: 48px;
  }
}




.checkout-left
{
  height: 100%;
}


.make-this-center-rating
{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}