/* ============================================================
   MTC Mobility Financial Lease — style.css
   Palet: diep antraciet, koel lichtgrijs-wit en een heldere
   turquoise als accent (frissere versie van de MTC-teal).
   ============================================================ */

:root {
  --ink: #111417;
  --navy: #1a1e23;
  --navy-2: #262b31;
  --ivory: #f3f6f7;
  --stone: #e3e9eb;
  --line: #e1e7ea;
  --line-strong: #cdd5d9;
  --white: #ffffff;
  --text: #171b20;
  --muted: #5d666e;
  --accent: #2cc5d6;
  --accent-ink: #0d8391;
  --accent-dark: #5ad5e2;
  --star: #e2a73b;
  --wa: #2e9d5b;
  --danger: #b3261e;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 40px 80px -32px rgba(17, 20, 23, 0.55), 0 2px 8px rgba(17, 20, 23, 0.08);
  --shadow-soft: 0 20px 40px -24px rgba(17, 20, 23, 0.25);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: "Sora", "Inter", sans-serif; line-height: 1.12; letter-spacing: -0.025em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
svg { flex-shrink: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}
.hidden-field, [hidden] { display: none !important; }
.mono { font-variant-numeric: tabular-nums; letter-spacing: 0.06em; }

a:focus-visible, button:focus-visible, input:focus-visible, .chip input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Woordmerk ---------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.wm-mtc {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: 0.01em;
}
.wm-sep { width: 1.5px; height: 20px; background: var(--accent); transform: skewX(-14deg); }
.wm-mobility {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-right: -0.38em;
  opacity: 0.92;
}
.wordmark-lg .wm-mtc { font-size: 30px; }
.wordmark-lg .wm-sep { height: 26px; }
.wordmark-lg .wm-mobility { font-size: 14px; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn:active { transform: translateY(1px); }

.btn-accent { background: var(--accent); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(44, 197, 214, 0.75); }
.btn-accent:hover { background: var(--accent-dark); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }

.btn-whatsapp { background: var(--white); color: var(--wa); border-color: var(--line-strong); }
.btn-whatsapp:hover { border-color: var(--wa); }

.btn-ghost { background: transparent; color: var(--muted); border-color: var(--line-strong); }
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover svg { transform: translateX(-2px); }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.65; cursor: wait; }

/* ---------- Header (over de foto) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 20, 23, 0.28);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(17, 20, 23, 0.94);
  box-shadow: 0 10px 30px rgba(17, 20, 23, 0.25);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: var(--header-h); }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; fill: var(--white); opacity: 0.7; }
.header-phone:hover { color: #9fe9f1; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span { width: 24px; height: 2px; border-radius: 2px; background: var(--white); transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 64px) 0 96px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(17, 20, 23, 0.55) 0%, rgba(17, 20, 23, 0) 26%),
    linear-gradient(90deg, rgba(17, 20, 23, 0.95) 0%, rgba(17, 20, 23, 0.86) 24%, rgba(17, 20, 23, 0.4) 40%, rgba(17, 20, 23, 0.08) 58%, rgba(17, 20, 23, 0) 80%),
    url("lease-hero.jpg") 35% center / cover no-repeat;
  animation: heroZoom 18s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 20, 23, 0) 0%, rgba(17, 20, 23, 0.6) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 48px;
  align-items: start;
}
.hero-copy { max-width: 480px; padding-top: 40px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
}
.eyebrow-dot { width: 22px; height: 1.5px; background: var(--accent); }

.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: rgba(255, 255, 255, 0.6); }

.lead { font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, 0.78); margin-bottom: 30px; }

.hero-points { list-style: none; display: grid; gap: 12px; margin-bottom: 36px; }
.hero-points li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.hero-points li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.5 16.2l-4.2-4.2-1.4 1.4 5.6 5.6 11-11-1.4-1.4z'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.hero-contact {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14.5px;
}
.hero-contact-label { color: rgba(255, 255, 255, 0.6); }
.hero-contact a { color: var(--white); font-weight: 600; font-variant-numeric: tabular-nums; border-bottom: 1px solid rgba(255, 255, 255, 0.3); transition: border-color 0.18s ease; }
.hero-contact a:hover { border-color: var(--accent); }
.hero-contact-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); }

/* ---------- Formulierkaart ---------- */
.form-card {
  position: relative;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 30px 26px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.form-card::before {
  content: "";
  position: absolute; left: 30px; right: 30px; top: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--accent);
}
.form-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.form-card-head h2 { font-size: 22px; font-weight: 700; }
.form-card-head p { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.form-badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 100px;
  font-variant-numeric: tabular-nums;
}

.stepper { list-style: none; display: flex; align-items: center; gap: 10px; margin: 22px 0 24px; }
.step-ind { display: flex; align-items: center; gap: 9px; }
.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700;
  background: var(--white);
  color: var(--muted);
  border: 1px solid var(--line-strong);
  transition: all 0.25s ease;
}
.step-lbl { font-size: 13px; font-weight: 600; color: var(--muted); transition: color 0.25s ease; }
.step-ind.is-active .step-num { background: var(--ink); border-color: var(--ink); color: var(--white); }
.step-ind.is-active .step-lbl { color: var(--ink); }
.step-ind.is-done .step-num { background: var(--accent); border-color: var(--accent); color: var(--ink); font-size: 0; }
.step-ind.is-done .step-num::before { content: "✓"; font-size: 12.5px; }
.step-line { flex: 1; height: 1px; background: var(--line-strong); overflow: hidden; }
.step-line span { display: block; height: 100%; width: 0; background: var(--accent); transition: width 0.4s ease; }
.step-line.is-filled span { width: 100%; }

.form-step { border: none; }
.js .form-step { display: none; }
.js .form-step.is-active { display: block; animation: stepIn 0.35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.field-row .field { margin-bottom: 0; }
.field-row + .field-hint-row { margin-top: -10px; }

.field label, .field .label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input::placeholder { color: #a5a9ae; }
.field input:hover, .field select:hover { border-color: #b9c3c8; }
.field select:focus, .field input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17, 20, 23, 0.08); }
.field.has-error select, .field.has-error input { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.08); }

.money { position: relative; }
.money-prefix {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-weight: 600; color: var(--muted); pointer-events: none;
}
.money input { padding-left: 32px !important; font-weight: 600; font-variant-numeric: tabular-nums; }

.field-hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.field-hint-row { margin: 6px 0 16px; }
.field-error { font-size: 12.5px; font-weight: 600; color: var(--danger); margin-top: 6px; display: none; }
.field.has-error .field-error { display: block; }

.chips { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: flex; align-items: baseline; justify-content: center; gap: 3px;
  height: 46px; line-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: all 0.18s ease;
}
.chip span small { font-size: 11px; font-weight: 500; color: var(--muted); }
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
.chip input:checked + span small { color: rgba(255, 255, 255, 0.6); }

.summary {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 4px 0 18px;
}
.summary-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.summary-row span { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.summary-row strong { font-family: "Sora", sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.summary-note { font-size: 12px; color: var(--muted); margin-top: 2px; }

.recap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 13px;
}
.recap div span { display: block; color: var(--muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.recap div strong { color: var(--ink); font-variant-numeric: tabular-nums; font-size: 14px; }
.recap .recap-edit {
  grid-column: 1 / -1;
  justify-self: start;
  background: none; border: none; padding: 0;
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--accent-ink); cursor: pointer;
}
.recap .recap-edit:hover { text-decoration: underline; }

.step2-actions { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-top: 6px; }

.privacy-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
  margin-top: 14px;
}
.privacy-note svg { width: 15px; height: 15px; fill: var(--muted); }

.form-success { text-align: center; padding: 30px 6px 14px; }
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  animation: pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-icon svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }
.form-success .success-sub { margin-top: 14px; font-size: 14px; }
.form-success a { color: var(--accent-ink); font-weight: 600; }

/* ---------- Vertrouwensbalk ---------- */
.trust { background: var(--ink); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; gap: 16px;
  padding: 30px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-num { font-family: "Sora", sans-serif; font-size: 12px; font-weight: 600; color: var(--accent); padding-top: 3px; letter-spacing: 0.04em; }
.trust-item strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.trust-item span:not(.trust-num) { font-size: 13.5px; color: rgba(255, 255, 255, 0.6); }

/* ---------- Secties ---------- */
.section { padding: 120px 0; }
.section-tint { background: var(--ivory); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head-split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.section-tag em {
  font-style: normal;
  font-family: "Sora", sans-serif;
  color: var(--accent-ink);
  letter-spacing: 0.04em;
  padding-right: 12px;
  border-right: 1px solid var(--line-strong);
}
.section h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 17px; line-height: 1.65; }

/* Zo werkt het */
#werkwijze .section-head { max-width: 780px; margin-inline: auto; margin-bottom: 64px; text-align: center; }
.steps {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-icon {
  position: relative;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 8px var(--white);
  margin-bottom: 26px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.step-icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.step-card:hover .step-icon { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.step-card:hover .step-icon svg { stroke: var(--ink); }
.step-card-num {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 10px;
}
.step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 250px; }

/* Financial lease */
.fl-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: start; }
.fl-intro { margin: 20px 0 36px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.benefits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.benefits li {
  position: relative;
  padding: 22px 0 22px 34px;
  border-top: 1px solid var(--line-strong);
  font-size: 14.5px;
  color: var(--muted);
}
.benefits li::before {
  content: "";
  position: absolute; left: 0; top: 25px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111417' d='M9.5 16.2l-4.2-4.2-1.4 1.4 5.6 5.6 11-11-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.benefits strong { display: block; color: var(--ink); font-size: 15.5px; font-weight: 600; margin-bottom: 4px; }
.fl-disclaimer { font-size: 13px; color: var(--muted); margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-strong); }

.terms-card {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.terms-label { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.terms-card h3 { color: var(--white); font-size: 21px; font-weight: 600; margin: 10px 0 22px; }
.terms { margin-bottom: 28px; }
.terms dt { font-weight: 600; font-size: 15px; color: var(--white); padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.terms dt:first-child { border-top: none; padding-top: 0; }
.terms dd { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.64); padding: 4px 0 16px; }

/* Reviews */
.rating-summary {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 22px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.rating-score { font-family: "Sora", sans-serif; font-size: 34px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.rating-meta { display: flex; flex-direction: column; gap: 4px; }
.rating-stars { color: var(--star); letter-spacing: 2px; font-size: 16px; line-height: 1; }
.rating-text { font-size: 13px; color: var(--muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.review::before {
  content: "\201C";
  position: absolute; right: 24px; top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--stone);
}
.review:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.stars { color: var(--star); letter-spacing: 2px; font-size: 15px; }
.review .stars { margin-bottom: 16px; }
.review blockquote { font-size: 15.5px; line-height: 1.65; color: #2c3643; flex: 1; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 14px;
}
.review-author strong { display: block; font-size: 14.5px; color: var(--ink); }
.review-author span { font-size: 12.5px; color: var(--muted); }

/* Veelgestelde vragen */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-intro p { margin: 18px 0 28px; color: var(--muted); font-size: 17px; }
.faq-contact { display: flex; gap: 10px; flex-wrap: wrap; }

.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left;
  background: none; border: none;
  padding: 24px 0;
  font-family: "Sora", sans-serif; font-size: 17px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink);
  cursor: pointer;
  transition: color 0.18s ease;
}
.faq-q:hover { color: var(--accent-ink); }
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 11px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.25s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-icon { background: var(--ink); border-color: var(--ink); }
.faq-item.is-open .faq-icon::before, .faq-item.is-open .faq-icon::after { background: var(--white); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 60px 26px 0; color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* CTA */
.cta-band {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 20, 23, 0.95) 0%, rgba(17, 20, 23, 0.85) 45%, rgba(17, 20, 23, 0.45) 100%),
    url("lease-hero.jpg") 60% 45% / cover no-repeat;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; }
.cta-band p { color: rgba(255, 255, 255, 0.72); margin-top: 12px; font-size: 17px; max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.64); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .wordmark { margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; line-height: 1.7; }
.footer-col h4 {
  font-family: "Inter", sans-serif;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; font-size: 14.5px; margin-bottom: 10px; }
.footer-col a { transition: color 0.18s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
}

/* ---------- Mobiele actiebalk ---------- */
.mobile-bar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .main-nav { gap: 22px; }
  .header-phone span { display: none; }
  .steps { gap: 18px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; padding-left: 0; }
  .trust-item:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .container { padding: 0 24px; }
  .hero { min-height: 0; padding: calc(var(--header-h) + 40px) 0 64px; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(17, 20, 23, 0.9) 0%, rgba(17, 20, 23, 0.78) 30%, rgba(17, 20, 23, 0.45) 60%, rgba(17, 20, 23, 0.85) 100%),
      url("lease-hero.jpg") 45% center / cover no-repeat;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 620px; padding-top: 0; }
  .form-card { max-width: 560px; }
  .fl-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .terms-card, .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 88px 0; }

  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(17, 20, 23, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .main-nav.is-open { max-height: 380px; }
  .main-nav a { padding: 18px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 16px; }
  .main-nav a::after { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .wm-mtc { font-size: 20px; }
  .wm-mobility { font-size: 10.5px; letter-spacing: 0.32em; margin-right: -0.32em; }
  .wm-sep { height: 17px; }
  .wordmark-lg .wm-mtc { font-size: 26px; }
  .wordmark-lg .wm-mobility { font-size: 12px; }
  .header-cta { display: none; }
  .header-phone svg { width: 20px; height: 20px; opacity: 1; }
  .hero { padding: calc(var(--header-h) + 28px) 0 48px; }
  .hero h1 { font-size: 34px; }
  .lead { font-size: 16px; margin-bottom: 22px; }
  .hero-points { margin-bottom: 0; }
  .hero-contact { display: none; }
  .form-card { padding: 26px 18px 20px; }
  .form-card::before { left: 18px; right: 18px; }
  .step-lbl { font-size: 12px; }
  .chip span { font-size: 14px; }
  .chip span small { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3) { padding: 20px 0; border-left: none; }
  .trust-item + .trust-item { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 14px; }
  .steps::before { display: none; }
  .step-icon { width: 60px; height: 60px; margin-bottom: 16px; }
  .step-icon svg { width: 24px; height: 24px; }
  .step-card h3 { font-size: 15.5px; }
  .step-card p { font-size: 13.5px; }
  .reviews-grid, .benefits { grid-template-columns: 1fr; }
  .terms-card { padding: 26px; }
  .faq-q { font-size: 15.5px; padding: 20px 0; }
  .faq-a p { padding-right: 0; }
  .cta-band { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)); }

  .mobile-bar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(17, 20, 23, 0.12);
    transform: translateY(110%);
    transition: transform 0.3s ease;
  }
  .mobile-bar.is-visible { transform: none; }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    height: 48px; border-radius: 10px; font-weight: 600; font-size: 15px;
  }
  .mobile-bar-call { padding: 0 18px; border: 1px solid var(--line-strong); color: var(--ink); }
  .mobile-bar-call svg { width: 18px; height: 18px; fill: var(--ink); }
  .mobile-bar-cta { background: var(--accent); color: var(--ink); }
}

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


/* ============================================================
   SEO-landingspagina's
   ============================================================ */

/* Kruimelpad */
.breadcrumb { margin-bottom: 22px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: rgba(255, 255, 255, 0.35); }
.breadcrumb a { color: rgba(255, 255, 255, 0.8); transition: color 0.18s ease; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current] { color: var(--white); font-weight: 600; }

/* Selectveld: eigen pijltje */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%235d666e' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center / 16px no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

/* Wettelijke waarschuwing (consumentenkrediet) */
.legal-warning {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.legal-warning strong { font-family: "Sora", sans-serif; color: var(--white); white-space: nowrap; }
.legal-warning-form {
  margin: 0 0 18px;
  border-color: var(--line-strong);
  background: var(--ivory);
  color: var(--muted);
  font-size: 13px;
}
.legal-warning-form strong { color: var(--ink); }

/* Inhoudsblok met uitleg */
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 80px; align-items: start; }
.prose h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; margin-bottom: 20px; }
.prose h3 { font-size: 21px; font-weight: 600; margin: 40px 0 12px; }
.prose p { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin-bottom: 16px; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul { list-style: none; margin: 8px 0 20px; }
.prose li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15.5px;
}
.prose li:last-child { border-bottom: 1px solid var(--line); }
.prose li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111417' d='M9.5 16.2l-4.2-4.2-1.4 1.4 5.6 5.6 11-11-1.4-1.4z'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.prose li strong { color: var(--ink); font-weight: 600; }
.prose-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--ivory);
  border-radius: 0 12px 12px 0;
  font-size: 14.5px !important;
}

.side-card {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.side-card h3 { color: var(--white); font-size: 20px; font-weight: 600; margin: 10px 0 18px; }
.side-card ul { list-style: none; margin-bottom: 26px; }
.side-card li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
}
.side-card li strong { color: var(--white); font-weight: 600; text-align: right; }
.side-card .btn + .btn { margin-top: 10px; }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.btn-outline-light:hover { border-color: var(--white); }

/* Leasevormen */
.lv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lv-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.lv-card:hover { border-color: var(--accent); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.lv-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.lv-card p { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 18px; }
.lv-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--accent-ink); }
.lv-more svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.18s ease; }
.lv-card:hover .lv-more svg { transform: translateX(3px); }
.lv-card.is-current { border-color: var(--accent); background: var(--ivory); pointer-events: none; }
.lv-card.is-current .lv-more { color: var(--muted); }
.section-tint .lv-card { background: var(--white); }

@media (max-width: 1120px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .lv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .side-card { position: static; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lv-grid { grid-template-columns: 1fr; }
  .legal-warning { flex-direction: column; align-items: flex-start; gap: 4px; }
  .breadcrumb { margin-bottom: 16px; }
}

/* Indicatief maandbedrag in het formulier */
.summary-row + .summary-row { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
.summary-row-main span { font-size: 14px; }
.summary-row-main strong { font-size: 26px; color: var(--accent-ink); }
.summary-row:not(.summary-row-main) strong { font-size: 17px; }
.success-maand {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 14.5px !important;
}
.success-maand strong { color: var(--accent-ink); }

/* Maximale slottermijn onder het veld */
.slot-max { transition: color 0.2s ease; }
.slot-max.is-capped { color: var(--accent-ink); font-weight: 600; }
.slot-max.is-over { color: var(--danger); font-weight: 600; }
