/* ═══════════════════════════════════════════════════════════════
   AUTOBEDRIJF DE FLIERT — Design System 2026
   Premium automotive · Clean · Conversion-focused
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@600;700;800&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Palette */
  --ink:        #0F1013;      /* nav, deep dark */
  --ink-soft:   #1C1E24;      /* card backgrounds */
  --surface:    #FFFFFF;      /* main content bg */
  --surface-2:  #F4F5F7;      /* alternate sections */
  --surface-3:  #ECEEF2;      /* dividers, subtle */
  --gold:       #D4931A;      /* primary CTA, accents */
  --gold-light: #F0AB30;      /* hover state */
  --text-primary:   #0F1013;
  --text-secondary: #5A6070;
  --text-muted:     #9AA0B0;
  --text-inv:       #FFFFFF;
  --text-inv-soft:  rgba(255,255,255,.6);

  /* Dark sections */
  --dark-surface: #141519;
  --dark-card:    #1C1E24;
  --dark-border:  rgba(255,255,255,.08);
  --dark-border-hover: rgba(255,255,255,.16);

  /* Conversion colors */
  --whatsapp:   #25D366;
  --call:       #2563EB;
  --danger:     #DC2626;

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 999px;

  /* Nav */
  --nav-h: 72px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-hover: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-gold: 0 4px 20px rgba(212,147,26,.25);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.t-display {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.t-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.t-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-body    { font-size: .9375rem; line-height: 1.65; }
.t-small   { font-size: .8125rem; line-height: 1.5; }
.t-caption { font-size: .75rem; color: var(--text-muted); }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.wrap-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--dark-surface);
  color: var(--text-inv);
}
.section--gray {
  background: var(--surface-2);
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .wrap, .wrap-narrow { padding: 0 1.25rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
  .contact-actions { flex-direction: column; width: 100%; }
  .contact-actions .btn { width: 100%; justify-content: center; }
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  transition: box-shadow var(--dur-base) var(--ease);
}
#nav.scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.4);
}
.nav-logo img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: .45rem .85rem;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-inv-soft);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links a:hover,
.nav-links a.actief {
  color: var(--text-inv);
  background: rgba(255,255,255,.07);
}
.nav-cta a {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 600;
  border-radius: var(--r-sm) !important;
}
.nav-cta a:hover { background: var(--gold-light) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--ink-soft);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--dur-base), transform var(--dur-base);
  box-shadow: 0 20px 48px rgba(0,0,0,.5);
  overflow: hidden;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .7rem 1.1rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-inv-soft) !important;
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.dropdown a:last-child { border: none; }
.dropdown a:hover { background: rgba(255,255,255,.07); color: var(--text-inv) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-inv);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* Nav phone CTA */
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .85rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-inv) !important;
  border: 1px solid var(--dark-border);
  border-radius: var(--r-full);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.nav-phone:hover { border-color: var(--gold); background: rgba(212,147,26,.1); }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    overflow-y: auto;
    margin: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { padding: .9rem 1rem; font-size: 1rem; width: 100%; border-radius: var(--r-sm); }
  .nav-links li.nav-cta a { background: var(--gold); color: var(--ink); }
  .nav-phone { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: none;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    min-width: 0;
    border-radius: var(--r-sm);
    margin: .25rem 0 .25rem .5rem;
  }
  .nav-hamburger { display: flex; }
  .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

.btn-dark {
  background: var(--ink);
  color: var(--text-inv);
}
.btn-dark:hover { background: var(--ink-soft); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--surface-3);
}
.btn-outline:hover { border-color: var(--text-primary); }

.btn-outline-inv {
  background: transparent;
  color: var(--text-inv);
  border: 1.5px solid var(--dark-border);
}
.btn-outline-inv:hover { border-color: rgba(255,255,255,.4); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: #1eb857; box-shadow: 0 4px 16px rgba(37,211,102,.3); }

.btn-call {
  background: var(--call);
  color: #fff;
}
.btn-call:hover { background: #1d4ed8; }

.btn--lg { padding: .9rem 2rem; font-size: .9375rem; }
.btn--sm { padding: .5rem 1rem; font-size: .8125rem; }
.btn--full { width: 100%; }
.btn--icon { width: 44px; height: 44px; padding: 0; border-radius: var(--r-sm); }

/* ── FLOATING ACTION BUTTONS ────────────────────────────────── */
.fab-group {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
}
.fab {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.fab-whatsapp { background: var(--whatsapp); }
.fab-call { background: var(--call); }
.fab svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

@media (min-width: 769px) {
  .fab .fab-label { display: inline; }
}
@media (max-width: 768px) {
  .fab { padding: .8rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .fab .fab-label { display: none; }
  /* WhatsApp FAB verbergen op mobiel — zit al in sticky CTA balk */
  .fab-whatsapp { display: none; }
  /* Bel FAB ook verbergen — zit ook in sticky CTA balk */
  .fab-group { display: none; }
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  margin-bottom: 2.5rem;
}
.section-header .t-label {
  display: block;
  margin-bottom: .6rem;
}
.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--text-primary);
}
.section-header h2.inv { color: var(--text-inv); }
.section-header p {
  margin-top: .75rem;
  font-size: .9375rem;
  color: var(--text-secondary);
  max-width: 520px;
}
.section-header p.inv { color: var(--text-inv-soft); }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── VEHICLE CARD ────────────────────────────────────────────── */
.car-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--surface-3);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base);
  position: relative;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.car-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Photo area — cinematic 21:9 on cards */
.car-card__photo {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--surface-3);
  overflow: hidden;
  min-height: 180px;
}
.car-card__photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow) var(--ease);
}
.car-card:hover .car-card__photo img { transform: scale(1.04); }
.car-card__photo-count {
  position: absolute;
  bottom: .6rem;
  right: .6rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.car-card__photo-count svg { width: 11px; height: 11px; stroke: currentColor; fill: none; }

/* Badges */
.car-card__badges {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  z-index: 2;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .55rem;
  border-radius: var(--r-full);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.badge--gold    { background: var(--gold); color: var(--ink); }
.badge--dark    { background: rgba(15,16,19,.75); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.badge--green   { background: #16a34a; color: #fff; }
.badge--blue    { background: #2563eb; color: #fff; }
.badge--outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--surface-3); }

/* Card body */
.car-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}
.car-card__make {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .15rem;
}
.car-card__model {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: .25rem;
}
.car-card__variant {
  font-size: .8125rem;
  color: var(--text-secondary);
  margin-bottom: .85rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.car-card__specs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
}
.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .6rem;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.spec-chip svg { width: 12px; height: 12px; stroke: currentColor; fill: none; flex-shrink: 0; }

.car-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: .85rem;
  border-top: 1px solid var(--surface-3);
}
.car-card__price {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.price-main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -.02em;
  color: var(--text-primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .1em;
}
.price-euro {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: 0;
  opacity: .7;
  align-self: flex-end;
  margin-bottom: .1em;
}
.price-finance {
  font-size: .7rem;
  color: var(--text-muted);
}
.car-card__cta {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background var(--dur-fast), color var(--dur-fast);
  flex-shrink: 0;
}
.car-card:hover .car-card__cta {
  background: var(--gold);
  color: var(--ink);
}
.car-card__cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ── CAR GRID ────────────────────────────────────────────────── */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.car-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .car-grid--featured { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .car-grid, .car-grid--featured { grid-template-columns: 1fr; }
}

/* ── FILTER BAR ──────────────────────────────────────────────── */
.filterbar {
  background: var(--surface);
  border: 1.5px solid var(--surface-3);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.filterbar input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: .65rem .9rem;
  background: var(--surface-2);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color var(--dur-fast);
  outline: none;
}
.filterbar input[type="text"]::placeholder { color: var(--text-muted); }
.filterbar input[type="text"]:focus { border-color: var(--gold); }

.filterbar select {
  padding: .65rem .9rem;
  padding-right: 2rem;
  background: var(--surface-2);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-primary);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--dur-fast);
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6070' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  min-width: 140px;
}
.filterbar select:focus { border-color: var(--gold); }
.filterbar select:hover { border-color: var(--surface-3); }

.filter-teller {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: auto;
}
.filter-teller span { color: var(--text-primary); }

@media (max-width: 640px) {
  .filterbar { flex-direction: column; align-items: stretch; }
  .filterbar input[type="text"],
  .filterbar select { min-width: 0; width: 100%; }
  .filter-teller { margin-left: 0; text-align: right; }
}

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--surface-3);
  border-bottom: 1px solid var(--surface-3);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--r-md);
  transition: background var(--dur-fast);
}
.trust-item:hover { background: var(--surface-2); }
.trust-icon {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.trust-title  { font-size: .8125rem; font-weight: 600; }
.trust-sub    { font-size: .7rem; color: var(--text-muted); margin-top: .05rem; }

/* ── REVIEW CARD ─────────────────────────────────────────────── */
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-stars {
  display: flex;
  gap: .2rem;
}
.star-icon { width: 16px; height: 16px; fill: var(--gold); }
.review-text {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--text-inv-soft);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--dark-border);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.review-name  { font-size: .8125rem; font-weight: 600; color: var(--text-inv); }
.review-date  { font-size: .75rem; color: var(--text-inv-soft); }
.review-google { margin-left: auto; font-size: .7rem; color: var(--text-inv-soft); display: flex; align-items: center; gap: .3rem; }

/* ── STATS ROW ───────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-item {
  background: var(--dark-card);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-inv);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-unit { color: var(--gold); }
.stat-label { font-size: .75rem; color: var(--text-inv-soft); margin-top: .4rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 500; }

/* ── CONTACT BLOCK ───────────────────────────────────────────── */
.contact-bar {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-bar h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text-inv);
  letter-spacing: -.01em;
}
.contact-bar p {
  font-size: .875rem;
  color: var(--text-inv-soft);
  margin-top: .35rem;
}
.contact-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── FORM ELEMENTS ───────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .8125rem; font-weight: 600; color: var(--text-primary); }
.form-label.inv { color: var(--text-inv); }
.form-input {
  padding: .7rem .95rem;
  background: var(--surface-2);
  border: 1.5px solid var(--surface-3);
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: var(--text-primary);
  transition: border-color var(--dur-fast);
  outline: none;
  width: 100%;
}
.form-input:focus { border-color: var(--gold); background: var(--surface); }
.form-input::placeholder { color: var(--text-muted); }
.form-input.dark {
  background: rgba(255,255,255,.06);
  border-color: var(--dark-border);
  color: var(--text-inv);
}
.form-input.dark:focus { border-color: var(--gold); background: rgba(255,255,255,.09); }
textarea.form-input { min-height: 100px; resize: vertical; }

/* ── INFO CARD ───────────────────────────────────────────────── */
.info-card {
  background: var(--surface);
  border: 1.5px solid var(--surface-3);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.info-card--dark {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.info-card--gold-top { border-top: 3px solid var(--gold); }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--dark-border);
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-inv);
  letter-spacing: -.02em;
  line-height: 1.05;
}
.page-hero__eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.page-hero p { color: var(--text-inv-soft); margin-top: .75rem; font-size: .9375rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--ink);
  border-top: 1px solid var(--dark-border);
  padding: 4rem 2rem 2rem;
  color: var(--text-inv);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-border);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo img { height: 46px; margin-bottom: 1rem; }
.footer-tagline { font-size: .8125rem; color: var(--text-inv-soft); line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .8375rem; color: var(--text-inv-soft); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--text-inv); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .8375rem;
  color: var(--text-inv-soft);
  margin-bottom: .65rem;
}
.footer-contact-row svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: .2rem; }
.footer-contact-row a { transition: color var(--dur-fast); }
.footer-contact-row a:hover { color: var(--text-inv); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--text-inv-soft);
  flex-wrap: wrap;
  gap: .5rem;
  opacity: .45;
}

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--text-secondary); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.fade-up.zichtbaar { opacity: 1; transform: translateY(0); }
.fade-up.zichtbaar + .fade-up { transition-delay: .08s; }

/* ── STICKY MOBILE CTA BAR ───────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 450;
  background: var(--ink);
  border-top: 1px solid var(--dark-border);
  padding: .75rem 1rem;
  gap: .6rem;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  .mobile-cta-bar .btn { flex: 1; padding: .75rem .5rem; font-size: .8rem; }
  .fab-group { bottom: 5.5rem; }
  body { padding-bottom: 70px; }
}

/* ── UTILITIES ───────────────────────────────────────────────── */
.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;
}
.divider { height: 1px; background: var(--surface-3); margin: 0; }
.divider--dark { background: var(--dark-border); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

@media (max-width: 640px) {
  .search-bar-inner { flex-direction: column; align-items: stretch; }
  .search-select { width: 100%; min-width: 0; }
  .search-main { width: 100%; }
}
/* ═══════════════════════════════════
   MOBILE UX VERBETERINGEN
   ═══════════════════════════════════ */

/* Touch targets minimaal 44px */
@media (max-width: 768px) {
  .btn { min-height: 44px; }
  .nav-hamburger { padding: .6rem; min-width: 44px; min-height: 44px; justify-content: center; }

  /* Nav logo iets kleiner op heel smal scherm */
  .nav-logo img { height: 44px; }

  /* Hero verbeteringen mobiel */
  .page-hero { padding-bottom: 1.5rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  /* Cards — volledige breedte, grotere touch area */
  .car-card { border-radius: var(--r-md); }
  .car-card__body { padding: .9rem 1rem 1rem; }
  .car-card__model { font-size: 1rem; }

  /* Spec chips wat groter voor leesbaarheid */
  .spec-chip { font-size: .75rem; padding: .3rem .65rem; }

  /* Footer simpeler op mobiel */
  .footer-bottom { flex-direction: column; text-align: center; gap: .35rem; }

  /* Filterbar sticky minder hoog op mobiel */
  .filterbar { padding: .75rem 1rem; }

  /* Paginering knoppen goed bereikbaar */
  .pag-btn { min-width: 44px; height: 44px; }

  /* Review cards scroll horizontaal op mobiel */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 85vw;
    max-width: 340px;
    scroll-snap-align: start;
  }

  /* USP items kleiner */
  .usp-items { gap: .75rem; }
  .usp-title { font-size: .8125rem; }
  .usp-sub   { font-size: .7rem; }

  /* Stats row 2x2 op mobiel */
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-number { font-size: 1.6rem; }

  /* Contact bar mobiel: stacked */
  .contact-bar { padding: 1.75rem 1.25rem; border-radius: var(--r-lg); }
  .contact-bar h3 { font-size: 1.2rem; }
  .contact-actions { width: 100%; }
  .contact-actions .btn { width: 100%; justify-content: center; }

  /* Trust grid 2x2 op mobiel */
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: .75rem; }
  .trust-item { padding: .6rem .75rem; }

  /* Section padding kleiner */
  .section { padding: 2.5rem 0; }

  /* Dienst grid 1 kolom */
  .dienst-grid { grid-template-columns: 1fr; }

  /* Info two col stacked */
  .info-two-col { grid-template-columns: 1fr; }
}

/* Extra smal (iPhone SE etc) */
@media (max-width: 375px) {
  .wrap, .wrap-narrow { padding: 0 1rem; }
  .hero h1 { font-size: 2.25rem; }
  .price-main { font-size: 1.2rem; }
  .mobile-cta-bar .btn { font-size: .75rem; padding: .7rem .4rem; }
}
