/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #111111;
  --white:        #FFFFFF;
  --gray-50:      #F7F7F7;
  --gray-100:     #EFEFEF;
  --gray-200:     #DEDEDE;
  --gray-400:     #AAAAAA;
  --gray-500:     #888888;
  --gray-600:     #555555;
  --gray-800:     #2A2A2A;
  --accent:       #1D6FFF;
  --accent-dark:  #1558CC;
  --accent-light: #EBF1FF;
  --orange:       #F57C00;
  --red:          #D32F2F;
  --blue-nl:      #003087;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,.07);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.09);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 18px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--black); }

/* ── Models mega-menu ── */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .15s;
}
.nav-dropdown-trigger:hover { color: var(--black); }
.nav-caret {
  font-size: 0.6rem;
  transition: transform .2s;
  display: inline-block;
}
.nav-dropdown-wrap.is-open .nav-caret { transform: rotate(180deg); }
.models-mega-menu {
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 98;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  padding: 28px 60px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
.models-mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 32px;
}
.mega-menu-loading {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.mega-brand-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}
.mega-brand-name {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gray-100);
}
.mega-model-link {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: background .12s;
}
.mega-model-link:hover { background: var(--accent-light); }
.mega-model-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.2;
}
.mega-model-link:hover .mega-model-name { color: var(--accent); }
.mega-model-variant {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 400;
  line-height: 1.2;
}
.mega-all-models {
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
  margin-left: auto;
}
.mega-all-btn,
.nav-links .mega-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.mega-all-btn:hover,
.nav-links .mega-all-btn:hover { background: var(--accent-dark); }
.mega-all-arrow { font-size: 1rem; }

/* ── Feature strip ── */
.feature-strip {
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 99;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  padding: 0 60px;
  overflow: hidden;
}
.feature-strip-inner {
  display: flex;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  justify-content: space-between;
}
.fs-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.fs-icon {
  font-size: 0.8rem;
  line-height: 1;
}
.fs-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 136px 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(29,111,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(29,111,255,.06) 0%, transparent 55%),
    linear-gradient(160deg, #f0f4ff 0%, #f8f9ff 50%, #eef2ff 100%);
}

.hero-inner {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left { text-align: left; }
.hero-left .hero-sub { margin: 0 0 40px; }
.hero-left .plate-form { align-items: flex-start; }
.hero-left .hero-keurmerk { }

/* right side: floating preview card */
.hero-right {
  position: relative;
}

.hero-preview {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 64px rgba(29,111,255,.10), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform .3s ease;
}
.hero-preview:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}

.hp-header {
  background: #0f1117;
  padding: 20px 24px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.hp-plate {
  display: inline-flex;
  align-items: stretch;
  border-radius: 5px;
  overflow: hidden;
  border: 1.5px solid #2a2a2a;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.hp-plate-nl {
  background: var(--blue-nl);
  color: var(--white);
  padding: 3px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 0.45rem;
}
.hp-plate-num {
  background: #F5C500;
  color: #111;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  letter-spacing: .1em;
}
.hp-car { color: var(--white); }
.hp-car-name { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; }
.hp-car-sub  { font-size: 0.7rem; color: #666; margin-top: 2px; }

.hp-soh-pill {
  background: rgba(29,111,255,.12);
  border: 1.5px solid rgba(29,111,255,.3);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  flex-shrink: 0;
}
.hp-soh-label { font-size: 0.55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); display: block; }
.hp-soh-val   { font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; }

.hp-body { padding: 18px 24px 20px; display: flex; flex-direction: column; gap: 14px; }

.hp-gauge-wrap {}
.hp-gauge-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.hp-gauge-title { font-size: 0.775rem; font-weight: 700; color: var(--black); }
.hp-gauge-pct   { font-size: 0.775rem; font-weight: 800; color: var(--accent); }
.hp-track { height: 7px; background: var(--gray-100); border-radius: 100px; overflow: hidden; }
.hp-fill  { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent-dark), var(--accent)); }

.hp-specs { display: flex; flex-direction: column; gap: 0; }
.hp-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.8rem;
}
.hp-spec-row:last-child { border-bottom: none; }
.hp-sk { color: var(--gray-500); }
.hp-sv { font-weight: 700; color: var(--black); }

.hp-risks { display: flex; flex-direction: column; gap: 8px; }
.hp-risk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  color: var(--gray-600);
}
.hp-risk-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hp-risk-dot.ok   { background: #22c55e; }
.hp-risk-dot.warn { background: #f59e0b; }

/* floating accent chips */
.hp-float-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hp-float-chip.chip-rdw {
  top: -16px;
  right: 0px;
  color: var(--accent);
  border-color: var(--accent-light);
  background: var(--accent-light);
}
.hp-float-chip.chip-free {
  bottom: 16px;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero-keurmerk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}
.keurmerk-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.07;
  color: var(--black);
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Plate form ── */
.plate-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.plate-field {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2.5px solid #1a1a1a;
  background: #F5C500;
  box-shadow: var(--shadow-md);
  transition: box-shadow .2s;
}
.plate-field:focus-within {
  box-shadow: 0 0 0 4px rgba(29,111,255,.25), var(--shadow-md);
}

.plate-nl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--blue-nl);
  padding: 8px 10px;
  min-width: 42px;
}
.plate-nl-stars {
  font-size: 0.7rem;
  line-height: 1;
}
.plate-nl-text {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.plate-nl-bar { display: none; }

.plate-input {
  border: none;
  outline: none;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  width: 220px;
  color: #111;
  background: #F5C500;
  font-family: var(--font);
  caret-color: #111;
}
.plate-input::placeholder {
  color: rgba(0,0,0,.3);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.plate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  height: 60px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: -0.01em;
  transition: background .15s, transform .1s;
}
.plate-btn:hover  { background: #333; }
.plate-btn:active { transform: scale(0.98); }

.plate-meta {
  font-size: 0.775rem;
  color: var(--gray-400);
}
.plate-meta a { color: var(--gray-400); text-decoration: underline; }

/* ── Recent + popular ── */
.discover {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.discover-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.discover-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  min-width: 160px;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  transition: all .15s;
  cursor: pointer;
}
.chip:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-light);
}
.chip-plate-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background .15s;
}
.chip:hover .chip-plate-dot { background: var(--accent); }

/* ── Why section ── */
.why {
  padding: 80px 40px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.why-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  color: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.why-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-icon {
  font-size: 1.375rem;
  line-height: 1;
}
.why-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
}
.why-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Models strip ── */
.models {
  padding: 72px 60px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.models-inner { max-width: 1100px; margin: 0 auto; }

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.model-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.model-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #edf0f7 0%, #e2e8f4 100%);
  transition: filter .3s ease;
}
.model-card:hover .model-img-wrap { filter: brightness(0.96); }
.model-img,
.model-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.model-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.model-name { font-size: 0.9375rem; font-weight: 700; color: var(--black); }
.model-meta { font-size: 0.775rem; color: var(--gray-500); }

@media (max-width: 860px) {
  .models-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .models-grid { grid-template-columns: 1fr; }
}

/* ── Stats bar ── */
.stats {
  background: var(--black);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 48px;
}
.stat-n {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: 0.775rem;
  color: var(--gray-500);
  font-weight: 500;
}
.stat-sep {
  width: 1px; height: 36px;
  background: #282828;
}

/* ── Footer ── */
.footer {
  padding: 28px 60px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: center;
}
.footer-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.775rem;
  color: var(--gray-400);
}


/* ── Not-found modal ── */
.nf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.nf-overlay[hidden] { display: none; }

.nf-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nf-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 4px;
  /* Recolour to --accent #1D6FFF */
  filter: invert(33%) sepia(99%) saturate(1700%) hue-rotate(210deg) brightness(105%) contrast(101%);
  opacity: 0.75;
}

.nf-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.nf-car {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
}

.nf-body {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.55;
}

.nf-close {
  margin-top: 8px;
  width: 100%;
}

/* ══════════════════════════════════════
   DETAILS PAGE — clean redesign
══════════════════════════════════════ */

.report-hero {
  min-height: 100vh;
  padding: 108px 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(29,111,255,.09) 0%, transparent 65%),
    linear-gradient(160deg, #f0f4ff 0%, #f8f9ff 50%, #eef2ff 100%);
}

.report-toolbar {
  width: 100%;
  max-width: 1100px;
  padding-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Compact plate form in the toolbar */
.toolbar-plate-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.toolbar-plate-field {
  display: flex;
  align-items: stretch;
  height: 38px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--black);
  overflow: hidden;
  transition: box-shadow .2s;
}
.toolbar-plate-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,111,255,.18);
}
.toolbar-plate-nl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 0 6px;
  gap: 0;
}
.toolbar-plate-nl .plate-nl-stars { display: none; }
.toolbar-plate-nl .plate-nl-text { position: relative; top: 2px; }
.toolbar-plate-field .plate-input {
  width: 120px;
  height: 100%;
  font-size: 0.875rem;
  padding: 0 10px;
  line-height: 1;
  text-align: center;
}
.toolbar-plate-btn {
  height: 38px;
  padding: 0 16px;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
}

.btn-new-search {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font);
  transition: background .15s;
}
.btn-new-search:hover { background: var(--accent-dark); }

/* Main report card */
.report-card {
  width: 100%;
  max-width: 1100px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 60px rgba(29,111,255,.10), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left col: car image */
.report-img-col {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 320px;
  overflow: hidden;
  border-right: 1px solid var(--gray-100);
}
.report-car-img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Right col: info */
.report-info-col {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

/* Card header: plate + name */
.report-card-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.report-car-name {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.1;
}
.report-car-sub {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 3px;
}

/* plate badge (shared with old page) */
.plate-badge {
  display: inline-flex;
  align-items: stretch;
  border-radius: 5px;
  overflow: hidden;
  border: 1.5px solid #ddd;
  flex-shrink: 0;
}
.pb-left {
  background: var(--blue-nl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 8px;
}
.pb-stars { font-size: 0.7rem; line-height: 1; }
.pb-nl    { font-size: 0.6rem; font-weight: 900; color: var(--white); letter-spacing: .06em; }
.pb-stripe { display: none; }
.pb-num {
  background: #F5C500;
  color: #111;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 4px 12px;
  display: flex;
  align-items: center;
}

/* Kilometerstand selector */
.km-selector-wrap {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.km-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.km-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 10px 36px 10px 14px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.km-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,111,255,.12);
}

/* Report card loading state */
.report-card.loading {
  opacity: 0.6;
  pointer-events: none;
}
.report-card.loading .fact-value,
.report-card.loading #car-name,
.report-card.loading #car-sub {
  animation: shimmer 1.2s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Empty issues state */
.issues-empty {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 8px 0;
}

/* Verfijn schatting */
.refine-wrap {
  border-top: 1px solid var(--gray-100);
}
.refine-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-align: left;
  transition: background .15s;
  border-radius: 0;
}
.refine-toggle:hover { background: var(--accent-light); }
.refine-toggle-icon { font-size: 0.875rem; }
.refine-caret {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--gray-400);
  transition: transform .25s ease;
  line-height: 1;
}
.refine-toggle[aria-expanded="true"] .refine-caret {
  transform: rotate(180deg);
}
.refine-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.refine-panel.open {
  max-height: 360px;
}
.refine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 24px 14px;
}
.refine-item:last-child {
  grid-column: 1 / -1;
}
.refine-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.refine-note {
  font-size: 0.72rem;
  color: var(--gray-400);
  padding: 0 24px 14px;
  line-height: 1.55;
}

/* Key facts list */
.report-facts {
  margin: 4px 0 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.fact-divider {
  height: 1px;
  background: var(--gray-100);
}
.fact-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.fact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.fact-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}
.fact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.fact-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.fact-tag--good {
  background: #D1FAF0;
  color: #006b54;
}
.fact-tag--warn {
  background: #FEF3C7;
  color: #92400E;
}
.fact-tag--bad {
  background: #FEE2E2;
  color: #991B1B;
}

/* Verdict banner */
.report-verdict {
  margin: 16px 24px 24px;
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.report-verdict--good {
  background: #edfaf5;
  border: 1px solid #a7f0d8;
  color: #065f46;
}
.report-verdict--warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.verdict-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.report-verdict strong { display: block; font-weight: 700; margin-bottom: 2px; }

/* Model-specific issues */
.report-model-issues {
  width: 100%;
  max-width: 1100px;
  background-color: var(--white);
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 80%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(29,111,255,.07) 0%, transparent 70%),
    radial-gradient(circle, rgba(0,0,0,.028) 1px, transparent 1px);
  background-size: auto, auto, 9px 9px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-xs);
}

.issues-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.issue-card {
  border-radius: 3px;
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.issue-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  transform: translateY(-3px);
}

.issue-card--ok      { border-color: #86efac; border-left-color: #22c55e; background: #f0fdf4; }
.issue-card--ok      .issue-card-body strong { color: #15803d; }
.issue-card--ok      .issue-card-body span   { color: #166534; opacity: 0.8; }

.issue-card--warn    { border-color: #fde68a; border-left-color: #d97706; background: #fffbeb; }
.issue-card--warn    .issue-card-body strong { color: #92400e; }
.issue-card--warn    .issue-card-body span   { color: #92400e; opacity: 0.8; }

.issue-card--bad     { border-color: #fca5a5; border-left-color: #ef4444; background: #fef2f2; }
.issue-card--bad     .issue-card-body strong { color: #b91c1c; }
.issue-card--bad     .issue-card-body span   { color: #991b1b; opacity: 0.8; }

.issue-card--neutral { border-color: var(--gray-200); border-left-color: var(--gray-400); background: var(--gray-50); }
.issue-card--neutral .issue-card-body strong { color: var(--gray-800); }
.issue-card--neutral .issue-card-body span   { color: var(--gray-600); }

/* hide the old top stripe */
.issue-card-stripe { display: none; }

.issue-card-body {
  padding: 20px 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.issue-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 4px;
}
.issue-card-body strong {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
.issue-card-body span {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}


/* CTA plate bar */
.cta-plate-bar {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(ellipse 80% 120% at 10% 50%, rgba(29,111,255,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 120% at 90% 50%, rgba(29,111,255,.07) 0%, transparent 60%),
    linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #eef2ff 100%);
  border: 1px solid #d0deff;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}
.cta-plate-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-plate-text strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.cta-plate-text span {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.cta-plate-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cta-plate-bar { flex-direction: column; align-items: flex-start; padding: 20px; }
  .cta-plate-form { width: 100%; }
  .cta-plate-form .toolbar-plate-field { flex: 1; }
  .cta-plate-form .toolbar-plate-field .plate-input { width: 100%; }
  .issues-cards { grid-template-columns: 1fr; }
}

/* Buying tips card */
.report-tips {
  width: 100%;
  max-width: 1100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-xs);
}
.tips-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 999px;
}
.tips-header.tips-header--centered {
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: none;
}
.tips-model-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.tips-header.tips-header--centered .tips-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
}
.tips-header.tips-header--centered .tips-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  max-width: 480px;
}
.tips-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.tips-icon { font-size: 1.5rem; line-height: 1; margin-top: 2px; }
.tips-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.tips-sub {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.tip-item {
  display: flex;
  gap: 14px;
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.tips-grid .tip-item:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--gray-100);
}
.tips-grid .tip-item:nth-child(even) {
  padding-left: 24px;
}
.tips-grid .tip-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.tip-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.tip-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tip-body strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}
.tip-body span {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .tips-grid { grid-template-columns: 1fr; }
  .tips-grid .tip-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .tips-grid .tip-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--gray-100); }
  .tips-grid .tip-item:last-child { border-bottom: none; }
}

/* Disclaimer */
.report-disclaimer {
  width: 100%;
  max-width: 1100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}
.disclaimer-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.report-disclaimer p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.report-disclaimer strong {
  color: var(--gray-700);
  font-weight: 600;
}

/* ── Models page ── */
.models-page {
  min-height: 100vh;
  padding: 108px 60px 80px;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(29,111,255,.07) 0%, transparent 60%),
    var(--white);
}
.models-page-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.models-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.models-page-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.15;
}
.models-page-sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.65;
}

/* Brand filter */
.models-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.models-brand-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 10px 40px 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--black);
  cursor: pointer;
  min-width: 220px;
  transition: border-color .15s, box-shadow .15s;
}
.models-brand-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,111,255,.15);
}
.models-brand-select:hover {
  border-color: var(--gray-400);
}

/* Alphabet jump bar */
.models-alpha-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.alpha-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: background .12s, color .12s, border-color .12s;
}
.alpha-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}

/* Brand sections */
.models-page-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.models-page-loading {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.brand-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-margin-top: 120px; /* nav 60 + strip 36 + breathing room 24 */
}
.brand-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-section-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}
.brand-section-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 999px;
}
.brand-section-divider {
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}
.brand-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.brand-model-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.brand-model-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(29,111,255,.1);
  transform: translateY(-2px);
}
.brand-model-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.brand-model-card:hover .brand-model-card-name { color: var(--accent); }
.brand-model-card-variant {
  font-size: 0.775rem;
  color: var(--gray-500);
  line-height: 1.3;
}
.brand-model-card-meta {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.brand-model-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
}

@media (max-width: 720px) {
  .models-page { padding: 116px 20px 60px; }
  .models-page-title { font-size: 1.625rem; }
  .brand-models-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* CTA bar wrapper (models page) */
.models-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 0 60px 60px;
}
.models-cta-wrap .cta-plate-bar {
  max-width: 1100px;
  width: 100%;
}
@media (max-width: 720px) {
  .models-cta-wrap { padding: 0 20px 40px; }
}

/* Popular models section (models page) */
.models-popular-section {
  padding: 0 60px 80px;
  display: flex;
  justify-content: center;
}
@media (max-width: 720px) {
  .models-popular-section { padding: 0 20px 60px; }
}

/* Popular models (car-details page) */
.popular-models {
  width: 100%;
  max-width: 1100px;
}
.popular-models-header {
  margin-bottom: 2px;
}
.popular-models-header .section-eyebrow {
  margin-bottom: 6px;
}
.popular-models-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}
.popular-models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .popular-models-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .popular-models-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── old details page (kept for reference, unused) ── */
.dh {
  background: var(--black);
  padding: 80px 40px 0;
  color: var(--white);
}
.dh-inner { max-width: 1000px; margin: 0 auto; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color .15s;
}
.back-link:hover { color: var(--white); }

.dh-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 40px;
}

/* plate badge */
.plate-badge {
  display: inline-flex;
  align-items: stretch;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1.5px solid #2a2a2a;
}
.pb-left {
  background: var(--blue-nl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 8px;
}
.pb-stars { font-size: 0.7rem; line-height: 1; }
.pb-nl    { font-size: 0.6rem; font-weight: 900; color: var(--white); letter-spacing: .06em; }
.pb-stripe { display: none; }
.pb-num {
  background: #F5C500;
  color: #111;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .14em;
  padding: 5px 14px;
  display: flex;
  align-items: center;
}

.dh-car-name {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.dh-car-sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* SoH badge */
.soh-box {
  background: rgba(0,184,144,.08);
  border: 1.5px solid rgba(0,184,144,.4);
  border-radius: var(--radius-lg);
  padding: 22px 30px;
  text-align: center;
  min-width: 155px;
}
.soh-box-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.soh-box-value {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}
.soh-box-range {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* tab bar */
.dh-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid #1e1e1e;
  margin-top: 0;
}
.dh-tab {
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.dh-tab.active,
.dh-tab:hover {
  color: var(--white);
  border-bottom-color: var(--accent);
}

/* body */
.db {
  background: var(--gray-50);
  padding: 40px;
  min-height: 50vh;
}
.db-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.card-full { grid-column: 1 / -1; }
.card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
}

/* spec table */
.spec-list { display: flex; flex-direction: column; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.sk { color: var(--gray-500); }
.sv { font-weight: 700; color: var(--black); }

/* gauge */
.gauge-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.gauge-title { font-size: 0.9375rem; font-weight: 700; }
.gauge-pct { font-size: 1.5rem; font-weight: 900; color: var(--accent); letter-spacing: -0.02em; }
.gauge-track {
  height: 8px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.gauge-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}
.gauge-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 5px;
}
.gauge-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

/* risk items */
.risk-list { display: flex; flex-direction: column; gap: 14px; }
.risk-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
}
.ri-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}
.ri-ok   .ri-icon { background: #D1FAF0; color: #007a5e; }
.ri-warn .ri-icon { background: #FEF3C7; color: #92400E; }
.ri-bad  .ri-icon { background: #FEE2E2; color: #991B1B; }
.ri-text strong { font-weight: 700; color: var(--black); display: block; margin-bottom: 2px; }
.ri-text        { color: var(--gray-600); line-height: 1.5; }

/* depreciation */
.depr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.depr-row:last-child { border-bottom: none; }
.dl { color: var(--gray-500); }
.dv { font-weight: 700; color: var(--black); }
.d-drop { font-size: 0.775rem; font-weight: 600; color: var(--red); margin-left: 5px; }

/* CTA */
.cta-card {
  background: linear-gradient(120deg, #0f0f0f, #1c1c1c);
  border-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-card .card-label { color: var(--accent); }
.cta-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; }
.cta-body p  { font-size: 0.875rem; color: var(--gray-500); max-width: 460px; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  background: var(--accent);
  color: var(--black);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
  transition: background .15s;
}
.cta-btn:hover { background: var(--accent-dark); color: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { text-align: center; }
  .hero-left .hero-sub { margin: 0 auto 40px; }
  .hero-left .plate-form { align-items: center; }
  .hero-right { display: none; }
}

@media (max-width: 720px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .feature-strip { padding: 0 20px; }
  .fs-item { padding: 0 10px; font-size: 0.72rem; }
  .hero { padding: 116px 20px 60px; }
  .plate-input { width: 160px; font-size: 1.25rem; padding: 12px 14px; }
  .discover, .why, .models { padding: 28px 20px; }
  .stats { padding: 28px 20px; }
  .stat { padding: 10px 20px; }
  .stat-sep { display: none; }
  .footer { padding: 20px; flex-direction: column; align-items: flex-start; }
  .dh { padding: 72px 20px 0; }
  .dh-top { grid-template-columns: 1fr; }
  .db { padding: 24px 20px; }
  .db-inner { grid-template-columns: 1fr; }
  .card-full { grid-column: unset; }

  /* Details page */
  .report-hero { padding: 116px 20px 40px; }
  .report-toolbar { padding-top: 0; flex-direction: column; align-items: flex-start; }
  .toolbar-plate-form { width: 100%; }
  .toolbar-plate-field { flex: 1; }
  .toolbar-plate-field .plate-input { width: 100%; }
  .report-card { grid-template-columns: 1fr; }
  .report-img-col {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    min-height: 200px;
    padding: 20px;
  }
  .refine-grid { grid-template-columns: 1fr; }
  .refine-item:last-child { grid-column: unset; }

  .tips-grid { grid-template-columns: 1fr; }
  .tips-grid .tip-item:nth-child(odd)  { padding-right: 0; border-right: none; }
  .tips-grid .tip-item:nth-child(even) { padding-left: 0; }
  .tips-grid .tip-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--gray-100); }
  .tips-grid .tip-item:last-child { border-bottom: none; }
}

/* ── Cookie consent banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: cookie-slide-up 0.3s ease;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}
.cookie-banner-text strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-accept-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.cookie-accept-btn:hover { background: var(--accent-dark); }
.cookie-decline-btn {
  background: transparent;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.cookie-decline-btn:hover { background: var(--gray-50); border-color: var(--gray-400); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-accept-btn, .cookie-decline-btn { flex: 1; text-align: center; }
}
