/* ============================================================
   ZeroGo — Design System
   Jouw klus. Onze elektrische bus. · Groen + houtskool
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400..800;1,400..600&family=Schibsted+Grotesk:wght@400..900&family=JetBrains+Mono:wght@400..700&display=swap');

:root {
  /* Brand — ZeroGo elektrisch groen (dark UI) */
  --teal-50:  rgba(63,232,127,.10);
  --teal-100: rgba(63,232,127,.17);
  --teal-200: rgba(63,232,127,.32);
  --teal-300: #8af0ad;
  --teal-400: #52ea8c;
  --teal-500: #3fe87f;   /* brand bright */
  --teal-600: #34dd75;   /* primary fill */
  --teal-700: #4fe98b;   /* accent text on dark */
  --teal-800: #77efa5;   /* bright big numbers */
  --teal-900: #0e110e;   /* deep panels / footer */

  /* Accent — gemapt op groen (geen amber meer) */
  --amber-300: #8af0ad;
  --amber-400: #52ea8c;
  --amber-500: #3fe87f;
  --amber-600: #34dd75;
  --amber-700: #2bc468;

  /* Dark neutrals */
  --bg:       #0a0b0a;
  --bg-tint:  #101210;
  --surface:  #151715;
  --ink:      #f4f6f4;
  --ink-soft: #c5cdc8;
  --muted:    #8b948e;
  --muted-2:  #6c756f;
  --line:     rgba(255,255,255,.08);
  --line-2:   rgba(255,255,255,.15);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.45);
  --shadow:    0 16px 40px -18px rgba(0,0,0,.7);
  --shadow-lg: 0 40px 90px -34px rgba(0,0,0,.85);
  --shadow-amber: 0 12px 30px -10px rgba(63,232,127,.4);

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 56px);

  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-head: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.app-root { min-height: 100vh; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--tint { background: var(--bg-tint); }
.section--deep { background: #0d100d; color: #eaf6f3; border-block: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.section--deep .eyebrow { color: var(--teal-300); background: rgba(63,232,127,.10); border-color: rgba(63,232,127,.28); }

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin-top: 16px; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); }
.section--deep .section-head p { color: #b9d9d2; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 19px; height: 19px; }

.btn--primary { background: var(--accent, var(--amber-500)); color: var(--accent-on, #3a2706); box-shadow: var(--accent-shadow, var(--shadow-amber)); }
.btn--primary:hover { background: var(--accent-hover, var(--amber-400)); transform: translateY(-2px); }

.btn--teal { background: var(--teal-600); color: #06210f; box-shadow: 0 10px 24px -12px rgba(63,232,127,.5); }
.btn--teal:hover { background: var(--teal-500); transform: translateY(-2px); }

.btn--ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--teal-400); color: var(--teal-500); background: rgba(255,255,255,.07); transform: translateY(-2px); }

.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }
.btn--light:hover { background: rgba(255,255,255,.2); }

.btn--lg { font-size: 17px; padding: 17px 30px; }
.btn--sm { font-size: 14px; padding: 11px 18px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.linklike {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; color: var(--teal-700);
}
.linklike svg { width: 17px; height: 17px; transition: transform .2s ease; }
.linklike:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,11,10,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 21px; letter-spacing: -.02em; flex: none; }
.brand__logo { height: 26px; width: auto; max-width: none; display: block; flex: none; }
.site-header__bar > a { flex: none; }
.site-footer .brand__logo { height: 30px; }
.brand__mark { width: 42px; height: 42px; display: grid; place-items: center; }
.brand__mark svg { width: 42px; height: 42px; }
.brand__wm { letter-spacing: .01em; }
.brand b { color: var(--ink); }
.brand i { color: var(--teal-600); font-style: normal; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.nav a {
  font-weight: 600; font-size: 14.5px; color: var(--ink-soft); white-space: nowrap;
  padding: 8px 12px; border-radius: var(--r-pill); transition: background .18s, color .18s;
}
.nav a:hover { background: var(--teal-50); color: var(--teal-800); }
.nav a.active { color: var(--teal-800); background: var(--teal-50); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 15px; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--teal-600); }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__inner { display: grid; gap: clamp(28px,4vw,56px); align-items: center; }

/* variant: split */
.hero--split .hero__inner { grid-template-columns: 1.05fr 1fr; padding-block: clamp(48px,6vw,80px); }
.hero--split .hero__media { position: relative; }

.hero h1 { font-size: clamp(34px, 5vw, 60px); }
.hero__sub { margin-top: 20px; font-size: clamp(17px,1.7vw,21px); color: var(--muted); max-width: 30em; }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 18px 24px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.hero__trust svg { width: 19px; height: 19px; color: var(--teal-600); flex: none; }

/* roterende trust-badge: één tegelijk */
.hero__trust--rotate { position: relative; display: block; min-height: 30px; margin-top: 28px; }
.hero__trust--rotate .trust-rot {
  position: absolute; left: 0; top: 0;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 7px 16px 7px 7px; border-radius: var(--r-pill);
  background: var(--teal-50); border: 1px solid var(--teal-200);
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink);
  white-space: nowrap;
  opacity: 0; transform: translateY(10px) scale(.97);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,.9,.32,1);
  pointer-events: none;
}
.hero__trust--rotate .trust-rot.is-active { opacity: 1; transform: translateY(0) scale(1); }
.hero__trust--rotate .trust-rot svg {
  width: 16px; height: 16px; color: #06210f; flex: none;
  background: var(--teal-500); border-radius: 50%; padding: 3px; box-sizing: content-box;
}
@media (prefers-reduced-motion: reduce) {
  .hero__trust--rotate .trust-rot { transition: opacity .25s ease; transform: none; }
  .hero__trust--rotate .trust-rot.is-active { transform: none; }
}
.hero__trust svg { width: 19px; height: 19px; color: var(--teal-600); flex: none; }

.hero__photo {
  border-radius: var(--r-xl); overflow: hidden; background: var(--bg-tint);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; position: relative;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 13px 16px; display: flex; align-items: center; gap: 12px;
}
.hero-badge__ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero-badge__ic.teal { background: var(--teal-50); color: var(--teal-700); }
.hero-badge__ic.amber { background: var(--teal-100); color: var(--teal-800); }
.hero-badge__ic svg { width: 20px; height: 20px; }
.hero-badge b { font-family: var(--font-head); font-size: 15px; display: block; line-height: 1.15; white-space: nowrap; }
.hero-badge small { color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.hero-badge--tl { top: 20px; left: -18px; }
.hero-badge--br { bottom: 22px; right: -18px; }

/* variant: full-bleed */
.hero--full { color: #fff; }
.hero--full .hero__bg { position: absolute; inset: 0; }
.hero--full .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero--full .hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,16,10,.93) 18%, rgba(7,16,10,.62) 52%, rgba(7,16,10,.18) 100%);
}
.hero--full .hero__inner { position: relative; min-height: 560px; align-content: center; padding-block: clamp(60px,8vw,110px); }
.hero--full .hero__copy { max-width: 620px; }
.hero--full h1 { color: #fff; }
.hero--full .hero__sub { color: #cfe8e2; }
.hero--full .hero__trust span { color: #d8efe9; }
.hero--full .hero__trust--rotate .trust-rot { background: rgba(255,255,255,.08); border-color: rgba(63,232,127,.3); color: #fff; }
.hero--full .hero__trust svg { color: var(--amber-400); }

.hero__zones {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(15px,1.5vw,18px);
  color: var(--ink); letter-spacing: -0.01em;
}
.hero__zones svg {
  width: 15px; height: 15px; color: #06210f; flex: none;
  background: var(--teal-500); border-radius: 50%; padding: 3px; box-sizing: content-box;
}
.hero--full .hero__zones { color: #fff; }
.hero--full .hero__zones svg { color: #06210f; background: var(--amber-400); }

/* variant: centered with search */
.hero--search { background: radial-gradient(120% 90% at 50% -10%, var(--teal-50), var(--bg) 60%); }
.hero--search .hero__inner { text-align: center; justify-items: center; padding-block: clamp(52px,7vw,92px) 0; }
.hero--search .hero__sub { margin-inline: auto; }
.hero--search .hero__cta { justify-content: center; }
.hero--search .hero__photo { margin-top: clamp(36px,5vw,56px); aspect-ratio: 21/9; width: 100%; max-width: 980px; }

/* quick search bar */
.qsearch {
  margin-top: 30px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 10px;
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: stretch;
  max-width: 720px; text-align: left;
}
.qsearch__field { padding: 10px 14px; border-radius: var(--r); display: flex; flex-direction: column; gap: 3px; }
.qsearch__field:hover { background: var(--teal-50); }
.qsearch__field label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.qsearch__field input {
  border: 0; background: transparent; font-family: var(--font-body); font-weight: 600;
  font-size: 16px; color: var(--ink); padding: 2px 0; outline: none; width: 100%;
}
.qsearch__field input::-webkit-calendar-picker-indicator { opacity: .6; filter: invert(1); }

/* trust strip under hero */
.logos-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.logos-strip__inner { display: flex; align-items: center; gap: clamp(20px,4vw,52px); padding-block: 20px; flex-wrap: wrap; justify-content: center; }
.logos-strip span { font-weight: 600; color: var(--muted-2); font-size: 14px; display: inline-flex; align-items: center; gap: 9px; }
.logos-strip svg { width: 18px; height: 18px; color: var(--teal-500); }

/* ---------- USP strip (5 USP's) ---------- */
.usp-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.usp-strip__inner { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 44px); padding-block: 22px; flex-wrap: wrap; }
.usp { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.usp__ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-700); flex: none; }
.usp__ic svg { width: 18px; height: 18px; }

/* ---------- WHY grid (5 voordelen) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card__ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-700); margin-bottom: 16px; }
.why-card:nth-child(even) .why-card__ic { background: var(--teal-100); color: var(--teal-800); }
.why-card__ic svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 18px; }
.why-card p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }

/* ---------- ONZE KRACHT (donker) ---------- */
.kracht-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 940px; margin-inline: auto; }
.kracht-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 28px 22px; transition: transform .18s ease, background .2s ease; }
.kracht-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.kracht-card__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-500); color: #06210f; margin-bottom: 16px; }
.kracht-card__ic svg { width: 26px; height: 26px; }
.kracht-card h3 { color: #fff; font-size: 18px; }
.kracht-card p { margin-top: 8px; color: #a9ccc4; font-size: 14.5px; }

.footer-legal a:hover { color: #fff; }

/* ============================================================
   FEATURES (waarom kiezen)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-700); margin-bottom: 18px; }
.feature__ic svg { width: 25px; height: 25px; }
.feature:nth-child(4n+2) .feature__ic { background: var(--teal-100); color: var(--teal-800); }
.feature h3 { font-size: 19px; }
.feature p { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* ============================================================
   STEPS (hoe werkt het)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px 28px; box-shadow: var(--shadow-sm); }
.step__n { counter-increment: step; width: 44px; height: 44px; border-radius: 50%; background: var(--teal-50); border: 1px solid var(--teal-200); color: var(--teal-500); font-family: var(--font-mono); font-weight: 700; font-size: 18px; display: grid; place-items: center; margin-bottom: 18px; }
.step__n::after { content: counter(step); }
.step h3 { font-size: 20px; }
.step p { margin-top: 9px; color: var(--muted); font-size: 15.5px; }
.step__line { position: absolute; top: 52px; right: -22px; width: 22px; height: 2px; background: var(--line-2); }
.step:last-child .step__line { display: none; }

/* ============================================================
   AUDIENCE (voor wie)
   ============================================================ */
.audience-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.aud {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 14px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .16s, border-color .16s; cursor: default;
}
.aud:hover { transform: translateY(-3px); border-color: var(--teal-200); }
.aud__ic { width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 13px; background: var(--bg-tint); color: var(--teal-700); display: grid; place-items: center; }
.aud__ic svg { width: 23px; height: 23px; }
.aud span { font-family: var(--font-head); font-weight: 700; font-size: 15px; }

/* ============================================================
   FLEET / VLOOT-OVERZICHT
   ============================================================ */
.fleet-head-sec { padding-bottom: clamp(28px, 4vw, 44px); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.fleet-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.fleet-card--feat { border-color: var(--teal-200); }
.fleet-card--feat:hover { border-color: var(--teal-400); }

.fleet-card__media {
  position: relative; aspect-ratio: 4/3;
  background: linear-gradient(180deg, #ededeb, #dededc);
}
.fleet-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card__badge {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: .02em; color: #06210f;
  background: var(--teal-500); padding: 6px 11px; border-radius: var(--r-pill);
  box-shadow: 0 6px 16px -6px rgba(63,232,127,.6);
}
.fleet-card__badge svg { width: 13px; height: 13px; }

.fleet-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 20px; }
.fleet-card__tag { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-700); }
.fleet-card__name { font-size: 22px; margin-top: 5px; }
.fleet-card__desc { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.5; }

.fleet-card__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.fleet-spec {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 13px; color: var(--ink-soft);
  background: var(--bg-tint); border: 1px solid var(--line);
  padding: 6px 11px; border-radius: var(--r-pill);
}
.fleet-spec svg { width: 15px; height: 15px; color: var(--teal-600); flex: none; }

.fleet-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto; padding-top: 18px;
}
.fleet-card__price { display: inline-flex; align-items: baseline; gap: 6px; }
.fleet-card__price .from { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.fleet-card__price b { font-family: var(--font-head); font-size: 24px; color: var(--ink); letter-spacing: -.02em; }
.fleet-card__price .per { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.fleet-card__price .onreq { font-size: 16px; color: var(--ink-soft); }

.fleet-cta-card {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  background: var(--bg-tint);
  border: 1px dashed var(--line-2); border-radius: var(--r-lg);
  padding: 28px 26px;
}
.fleet-cta-card__ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-700); margin-bottom: 16px; }
.fleet-cta-card__ic svg { width: 25px; height: 25px; }
.fleet-cta-card h3 { font-size: 20px; }
.fleet-cta-card p { margin-top: 9px; color: var(--muted); font-size: 14.5px; }
.fleet-cta-card .btn { margin-top: 18px; }

@media (max-width: 940px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VEHICLE
   ============================================================ */
.vehicle { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px,4vw,52px); align-items: center; }
.vehicle__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.vehicle__gallery .main { grid-column: 1 / -1; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; background: var(--bg-tint); box-shadow: var(--shadow); }
.vehicle__gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.vehicle__thumb { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; background: var(--bg-tint); box-shadow: var(--shadow-sm); }
.vehicle__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vehicle__name { font-size: clamp(26px,3vw,38px); }
.vehicle__tag { color: var(--teal-700); font-weight: 700; font-family: var(--font-head); }
.spec-list { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.spec { background: var(--surface); padding: 16px 18px; display: flex; align-items: center; gap: 13px; }
.spec__ic { width: 36px; height: 36px; border-radius: 10px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex: none; }
.spec__ic svg { width: 19px; height: 19px; }
.spec b { display: block; font-family: var(--font-head); font-size: 15.5px; }
.spec small { color: var(--muted); font-size: 13px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.price-row .from { color: var(--muted); font-size: 15px; }
.price-row .amt { font-family: var(--font-mono); font-weight: 700; font-size: 34px; color: var(--teal-800); letter-spacing: -.02em; }
.price-row .per { color: var(--muted); font-weight: 600; }

/* ============================================================
   ZONES (emissiezones)
   ============================================================ */
.zones { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,56px); align-items: center; }
.map-card { position: relative; background: radial-gradient(120% 100% at 50% 0%, #11160f, #0a0d09); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 290 / 342; box-shadow: var(--shadow-lg); display: grid; place-items: center; }
.nl-map { width: 100%; height: 100%; display: block; padding: clamp(16px, 3vw, 30px); }
.nl-map__outline { fill: rgba(63,232,127,.05); stroke: rgba(63,232,127,.30); stroke-width: 1; stroke-linejoin: round; filter: drop-shadow(0 10px 24px rgba(0,0,0,.5)); }
.nl-map__isle { fill: rgba(63,232,127,.26); stroke: none; }
.nl-map__dots circle { fill: var(--teal-500); }
.nl-pin { cursor: pointer; outline: none; }
.nl-pin__hit { fill: transparent; stroke: none; }
.nl-pin__dot { fill: var(--teal-500); stroke: #06210f; stroke-width: 1.2; transition: r .15s ease, fill .15s ease; }
.nl-pin:hover .nl-pin__dot { fill: var(--teal-300); }
.nl-pin:focus-visible .nl-pin__dot { stroke: #fff; stroke-width: 1.8; }
.nl-pin.sel .nl-pin__dot { fill: #fff; stroke: var(--teal-500); stroke-width: 2; }
.nl-pin.sel .nl-pin__lbl { fill: #fff; font-size: 10.5px; }
.nl-pin__lbl { fill: #eaf6f3; font-family: var(--font-head); font-weight: 700; font-size: 9.5px; paint-order: stroke; stroke: rgba(6,19,11,.85); stroke-width: 2.4px; stroke-linejoin: round; }
.nl-pin__halo { fill: none; stroke: var(--teal-500); stroke-width: 1.4; transform-origin: center; transform-box: fill-box; animation: nlpulse 2.6s ease-out infinite; }
@keyframes nlpulse { 0% { transform: scale(.5); opacity: .9; } 70% { transform: scale(2.4); opacity: 0; } 100% { opacity: 0; } }
.map-card__note { position: absolute; left: 16px; bottom: 14px; font-size: 11px; letter-spacing: .04em; color: var(--teal-700); font-family: var(--font-mono); }
@keyframes pinpulse { 0% { box-shadow: 0 0 0 0 rgba(245,165,36,.5);} 70%{ box-shadow: 0 0 0 16px rgba(245,165,36,0);} 100%{ box-shadow:0 0 0 0 rgba(245,165,36,0);} }

.zone-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.zone-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 8px 15px; font-weight: 600; font-size: 14px; box-shadow: var(--shadow-sm); font-family: var(--font-body); color: var(--ink); }
.zone-chip svg { width: 15px; height: 15px; color: var(--teal-600); }
button.zone-chip { cursor: pointer; transition: border-color .15s, background .15s, transform .12s; }
button.zone-chip:hover { border-color: var(--teal-400); transform: translateY(-1px); }
button.zone-chip.active { border-color: var(--teal-500); background: var(--teal-50); color: var(--teal-800); }

/* zone-popup over de kaart */
.zone-pop {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 5;
  background: rgba(10,14,11,.94); backdrop-filter: blur(10px);
  border: 1px solid var(--teal-200); border-radius: var(--r-lg);
  padding: 18px 18px 16px; box-shadow: var(--shadow-lg);
  animation: zonepop .28s cubic-bezier(.22,.9,.32,1) both;
}
@keyframes zonepop { from { opacity: 0; translate: 0 14px; } to { opacity: 1; translate: 0 0; } }
.zone-pop__close { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255,255,255,.05); color: var(--ink-soft); display: grid; place-items: center; }
.zone-pop__close:hover { border-color: var(--teal-400); color: #fff; }
.zone-pop__close svg { width: 15px; height: 15px; }
.zone-pop__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-right: 36px; }
.zone-pop__head b { font-family: var(--font-head); font-size: 19px; color: #fff; letter-spacing: -.01em; }
.zone-pop__badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-700); background: var(--teal-50); border: 1px solid var(--teal-100); padding: 4px 10px; border-radius: var(--r-pill); }
.zone-pop__badge svg { width: 12px; height: 12px; }
.zone-pop__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 10px; }
.zone-pop__meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.zone-pop__meta svg { width: 14px; height: 14px; color: var(--teal-600); flex: none; }
.zone-pop__rules { list-style: none; margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid var(--line); display: grid; gap: 7px; }
.zone-pop__rules li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.zone-pop__rules li svg { width: 13px; height: 13px; color: var(--teal-600); flex: none; margin-top: 2.5px; }
.zone-pop__rules li.extra { color: var(--muted); }
.zone-pop__zerogo { display: flex; align-items: center; gap: 8px; margin-top: 13px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--teal-700); }
.zone-pop__zerogo svg { width: 15px; height: 15px; flex: none; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: 3px; color: var(--amber-500); margin-bottom: 16px; }
.stars svg { width: 19px; height: 19px; }
.review p { font-size: 19px; font-family: var(--font-head); font-weight: 600; line-height: 1.4; letter-spacing: -.01em; }
.review__who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review__av { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-100); color: var(--teal-800); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.review__who b { font-size: 15px; }
.review__who small { display: block; color: var(--muted); font-size: 13px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.faq-q__ic { width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; transition: transform .25s; }
.faq-q__ic svg { width: 16px; height: 16px; }
.faq-item.open .faq-q__ic { transform: rotate(45deg); background: var(--teal-500); color: #06210f; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 4px 22px; color: var(--muted); font-size: 16px; max-width: 64ch; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner { background: #111311; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(36px,5vw,64px); color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; right:-60px; top:-60px; width:320px; height:320px; border-radius:50%; background: radial-gradient(circle, rgba(63,232,127,.22), transparent 70%); }
.cta-banner::after { content:''; position:absolute; left:-40px; bottom:-80px; width:260px; height:260px; border-radius:50%; background: radial-gradient(circle, rgba(63,232,127,.10), transparent 70%); }
.cta-banner__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(26px,3.4vw,40px); max-width: 16ch; }
.cta-banner p { color: var(--ink-soft); margin-top: 12px; font-size: 18px; max-width: 42ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-900); color: #bcd9d3; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(48px,6vw,72px); }
.site-footer .brand { color: #fff; }
.site-footer .brand b { color: #fff; }
.site-footer .brand i { color: var(--teal-300); }
.footer-tagline { color: var(--teal-300) !important; font-family: var(--font-head); font-weight: 700; margin-top: 14px !important; font-size: 15px; padding: 0 !important; }
.footer-col h4 { color: #fff; font-size: 15px; font-family: var(--font-head); margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a, .footer-col p { display: block; color: #a6cbc4; font-size: 15px; padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-contact a { display: flex; align-items: center; gap: 11px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber-400); flex: none; }
.footer-about p { color: #9cc4bc; margin-top: 14px; font-size: 14.5px; max-width: 32ch; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #7fa8a1; }

/* ============================================================
   RESERVE PAGE
   ============================================================ */
.reserve-hero { background: var(--bg-tint); border-bottom: 1px solid var(--line); padding-block: clamp(28px,4vw,40px); }
.reserve-hero h1 { font-size: clamp(26px,3.4vw,40px); }
.reserve-hero p { margin-top: 10px; color: var(--muted); font-size: 17px; }

.stepbar { display: flex; gap: 6px; margin-top: 26px; flex-wrap: wrap; }
.stepbar__item { display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-weight: 700; font-size: 14px; color: var(--muted); font-family: var(--font-head); }
.stepbar__item .n { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-tint); color: var(--muted); font-size: 13px; }
.stepbar__item.active { border-color: var(--teal-300); color: var(--teal-800); background: var(--teal-50); }
.stepbar__item.active .n { background: var(--teal-600); color: #fff; }
.stepbar__item.done { color: var(--teal-700); }
.stepbar__item.done .n { background: var(--teal-600); color: #fff; }
.stepbar__item.done .n svg { width: 14px; height: 14px; }

.reserve-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px,3vw,44px); align-items: start; }
.reserve-main { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,36px); box-shadow: var(--shadow-sm); }
.reserve-main h2 { font-size: 24px; margin-bottom: 6px; }
.reserve-main .lead { color: var(--muted); margin-bottom: 24px; }

/* voertuig-keuze in offerte */
.vehpick { display: flex; align-items: center; gap: 16px; border: 1.5px solid var(--teal-400); background: var(--teal-50); border-radius: var(--r); padding: 12px; }
.vehpick__img { width: 92px; height: 64px; border-radius: var(--r-sm); overflow: hidden; flex: none; background: var(--bg-tint); }
.vehpick__img img { width: 100%; height: 100%; object-fit: cover; }
.vehpick__body { flex: 1; min-width: 0; }
.vehpick__body .tag { color: var(--teal-700); font-weight: 700; font-size: 13px; font-family: var(--font-head); }
.vehpick__body b { display: block; font-family: var(--font-head); font-size: 18px; line-height: 1.2; margin-top: 2px; }
.vehpick__body small { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
.vehpick__check { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--teal-600); color: #fff; display: grid; place-items: center; }
.vehpick__check svg { width: 17px; height: 17px; }

/* calendar */
.cal { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.cal__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--bg-tint); }
.cal__head b { font-family: var(--font-head); font-size: 17px; text-transform: capitalize; white-space: nowrap; }
.cal__nav { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface); display: grid; place-items: center; color: var(--ink-soft); }
.cal__nav:hover { border-color: var(--teal-300); color: var(--teal-700); }
.cal__nav:disabled { opacity: .35; cursor: not-allowed; }
.cal__dow { display: grid; grid-template-columns: repeat(7,1fr); padding: 12px 12px 4px; }
.cal__dow span { text-align: center; font-size: 12px; font-weight: 700; color: var(--muted-2); text-transform: uppercase; letter-spacing: .03em; }
.cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; padding: 6px 12px 14px; }
.cal__day { aspect-ratio: 1; border: 0; background: none; border-radius: 10px; font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink); position: relative; transition: background .12s; }
.cal__day:hover:not(:disabled):not(.muted) { background: var(--teal-50); }
.cal__day:disabled, .cal__day.muted { color: var(--muted-2); opacity: .4; cursor: not-allowed; }
.cal__day.inrange { background: var(--teal-50); border-radius: 0; }
.cal__day.edge { background: var(--teal-600); color: #fff; }
.cal__day.edge.start { border-radius: 10px 0 0 10px; }
.cal__day.edge.end { border-radius: 0 10px 10px 0; }
.cal__day.edge.single { border-radius: 10px; }
.cal__legend { display: flex; gap: 18px; margin-top: 14px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.cal__legend span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 12px; height: 12px; border-radius: 4px; }

/* form */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink); background: var(--surface); transition: border-color .15s, box-shadow .15s;
}
.field input[type=date]::-webkit-calendar-picker-indicator { filter: invert(.85); opacity: .7; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px var(--teal-50); }
.field input.err { border-color: #d4503e; }
.field .hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
.field .errmsg { font-size: 13px; color: #c0402f; margin-top: 6px; font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.upload {
  border: 2px dashed var(--line-2); border-radius: var(--r); padding: 28px; text-align: center;
  transition: border-color .15s, background .15s; cursor: pointer; background: var(--bg-tint);
}
.upload:hover { border-color: var(--teal-400); background: var(--teal-50); }
.upload.filled { border-style: solid; border-color: var(--teal-400); background: var(--teal-50); }
.upload__ic { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 14px; background: var(--surface); display: grid; place-items: center; color: var(--teal-600); box-shadow: var(--shadow-sm); }
.upload__ic svg { width: 24px; height: 24px; }
.upload b { font-family: var(--font-head); font-size: 16px; }
.upload small { display: block; color: var(--muted); margin-top: 5px; font-size: 13.5px; }

.payopts { display: grid; gap: 12px; }
.payopt { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--line-2); border-radius: var(--r); cursor: pointer; transition: border-color .15s, background .15s; }
.payopt:hover { border-color: var(--teal-300); }
.payopt.sel { border-color: var(--teal-500); background: var(--teal-50); }
.payopt__radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); flex: none; display: grid; place-items: center; }
.payopt.sel .payopt__radio { border-color: var(--teal-600); }
.payopt.sel .payopt__radio::after { content:''; width: 12px; height: 12px; border-radius: 50%; background: var(--teal-600); }
.payopt b { font-family: var(--font-head); font-size: 15.5px; }
.payopt small { color: var(--muted); font-size: 13px; }
.payopt__logo { margin-left: auto; font-weight: 800; font-family: var(--font-head); color: var(--muted-2); font-size: 13px; }

/* summary */
.summary { position: sticky; top: 92px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.summary__img { aspect-ratio: 16/9; background: var(--bg-tint); }
.summary__img img { width: 100%; height: 100%; object-fit: cover; }
.summary__body { padding: 22px 24px 26px; }
.summary__body h3 { font-size: 19px; }
.summary__body .tag { color: var(--teal-700); font-weight: 700; font-size: 14px; font-family: var(--font-head); }
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.summary__row span:first-child { color: var(--muted); }
.summary__row span:last-child { font-weight: 700; }
.summary__row.muted span:last-child { font-weight: 600; color: var(--ink-soft); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; }
.summary__total span { color: var(--muted); font-weight: 700; }
.summary__total b { font-family: var(--font-mono); font-weight: 700; font-size: 28px; color: var(--teal-800); letter-spacing: -.02em; }
.summary__note { margin-top: 14px; font-size: 13px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.summary__note svg { width: 16px; height: 16px; color: var(--teal-600); flex: none; margin-top: 2px; }

.reserve-foot { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* confirmation */
.confirm { text-align: center; max-width: 520px; margin-inline: auto; padding-block: 20px; }
.confirm__check { width: 84px; height: 84px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; margin: 0 auto 24px; }
.confirm__check svg { width: 42px; height: 42px; }
.confirm h2 { font-size: 30px; }
.confirm p { color: var(--muted); margin-top: 12px; font-size: 17px; }
.confirm__code { display: inline-block; margin-top: 22px; background: var(--bg-tint); border: 1px dashed var(--line-2); border-radius: var(--r); padding: 14px 24px; font-family: var(--font-mono); font-weight: 700; font-size: 20px; letter-spacing: .04em; color: var(--teal-800); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* header: ruimte-management op smallere desktops */
@media (max-width: 1380px) {
  .header-phone { display: none; }
}
@media (max-width: 1240px) {
  .site-header__bar { gap: 14px; }
  .nav { margin-left: 0; }
  .nav a { padding: 8px 9px; font-size: 14px; }
}

@media (max-width: 1080px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); margin-left: auto; }
  .nav-toggle svg { width: 22px; height: 22px; }
}
@media (max-width: 1080px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; }
  .hero--split .hero__media { order: -1; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .kracht-grid { grid-template-columns: repeat(3,1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps--4 { grid-template-columns: repeat(2,1fr); }
  .step__line { display: none; }
  .audience-grid { grid-template-columns: repeat(3,1fr); }
  .vehicle, .zones { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .reserve-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .feature-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .kracht-grid { grid-template-columns: 1fr 1fr; }
  .steps--4 { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .qsearch { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .reserve-foot { flex-direction: column-reverse; }
  .reserve-foot .btn { width: 100%; }
}

/* mobile nav drawer */
.mnav { position: fixed; inset: 0; z-index: 200; display: none; }
.mnav.open { display: block; }
.mnav__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px); }
.mnav__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); background: var(--surface); padding: 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-lg); }
.mnav__panel a { padding: 14px 12px; border-radius: var(--r); font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.mnav__panel a:hover { background: var(--teal-50); }
.mnav__close { align-self: flex-end; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); display: grid; place-items: center; margin-bottom: 8px; }

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

/* ============================================================
   POLISH — focus, selection, micro-interactions, reveal
   ============================================================ */
::selection { background: rgba(63,232,127,.3); color: #fff; }

:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }
.btn:focus-visible { outline-offset: 3px; }

.fleet-card__media { overflow: hidden; }
.fleet-card__media img { transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.fleet-card:hover .fleet-card__media img { transform: scale(1.05); }

/* scroll-reveal — progressive enhancement, reduced-motion-veilig */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .why-card, .fleet-card, .fleet-cta-card, .step, .kracht-card, .review, .aud {
      animation: rev-up both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
  }
}
@keyframes rev-up {
  from { opacity: 0; translate: 0 26px; }
  to { opacity: 1; translate: 0 0; }
}

/* ============================================================
   MOBIEL — volledige optimalisatie
   ============================================================ */
body { overflow-x: clip; }

/* hero-badges: binnen het fotokader houden op kleinere schermen */
@media (max-width: 700px) {
  .hero-badge { padding: 10px 12px; gap: 10px; }
  .hero-badge__ic { width: 32px; height: 32px; border-radius: 9px; }
  .hero-badge__ic svg { width: 17px; height: 17px; }
  .hero-badge b { font-size: 13.5px; }
  .hero-badge small { font-size: 11.5px; }
  .hero-badge--tl { top: 10px; left: 10px; }
  .hero-badge--br { bottom: 10px; right: 10px; }

  /* USP-balk: net 2-koloms raster i.p.v. losse wrap */
  .usp-strip__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 10px; justify-items: start; padding-block: 16px; }
  .usp { font-size: 13.5px; gap: 9px; }
  .usp__ic { width: 30px; height: 30px; border-radius: 9px; }
  .usp__ic svg { width: 16px; height: 16px; }
}

@media (max-width: 560px) {
  /* header compacter */
  .site-header__bar { height: 64px; gap: 12px; }
  .brand__logo { height: 22px; }
  .header-actions { gap: 8px; }
  .header-actions .btn--sm { font-size: 13px; padding: 10px 14px; gap: 7px; }
  .header-actions .btn--sm svg { width: 16px; height: 16px; }
  .nav-toggle { width: 40px; height: 40px; }

  /* hero */
  .hero--search .hero__photo { aspect-ratio: 16/10; }

  /* voordeel- en krachtkaarten: horizontaal, compact */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; padding: 16px; }
  .why-card__ic { grid-row: 1 / 3; width: 42px; height: 42px; margin-bottom: 0; border-radius: 11px; }
  .why-card__ic svg { width: 21px; height: 21px; }
  .why-card h3 { font-size: 16px; align-self: center; }
  .why-card p { font-size: 13.5px; margin-top: 4px; }

  .kracht-grid { grid-template-columns: 1fr; gap: 12px; }
  .kracht-card { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; padding: 18px 16px; }
  .kracht-card__ic { grid-row: 1 / 3; width: 44px; height: 44px; margin-bottom: 0; border-radius: 11px; }
  .kracht-card__ic svg { width: 22px; height: 22px; }
  .kracht-card h3 { font-size: 16px; align-self: center; }
  .kracht-card p { font-size: 13.5px; margin-top: 4px; }

  /* stappen */
  .step { padding: 22px 20px 20px; }
  .step__n { width: 38px; height: 38px; font-size: 16px; margin-bottom: 14px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 14.5px; }

  /* zones */
  button.zone-chip { padding: 10px 15px; }
  .zone-pop { left: 8px; right: 8px; bottom: 8px; padding: 14px 14px 13px; }
  .zone-pop__head b { font-size: 17px; }
  .zone-pop__rules li { font-size: 12.5px; }

  /* reviews & faq */
  .review { padding: 22px 20px; }
  .review p { font-size: 17px; }
  .faq-q { font-size: 16.5px; padding-block: 18px; }
  .faq-a__inner { font-size: 15px; }

  /* cta-banner: knoppen volle breedte */
  .cta-banner__inner > div:last-child { width: 100%; }
  .cta-banner__inner > div:last-child .btn { width: 100%; }

  /* offerte-flow */
  .reserve-main { padding: 20px 16px; }
  .summary__body { padding: 18px 16px 20px; }
  .stepbar__item { font-size: 13px; padding: 7px 13px 7px 7px; }
  .vehpick { gap: 12px; }
  .vehpick__img { width: 72px; height: 52px; }
  .vehpick__body b { font-size: 16px; }
  .vehpick__body small { font-size: 12px; }
  .confirm__code { font-size: 17px; padding: 12px 18px; }

  /* vloot */
  .fleet-card__body { padding: 18px 16px 16px; }
}
