/* ============================================================
   SnelRijles Premium – main.css
   "Road confidence" – asphalt charcoal · signal blue · clean white
   ============================================================ */

/* ===========================
   1. CSS VARIABLES
   =========================== */
:root {
  /* Brand palette */
  --ink:         #0A1628;
  --road:        #121C2C;
  --signal:      #1B4DFF;
  --signal-deep: #0E35C9;
  --fog:         #F2F5F9;
  --mist:        #E4EAF2;
  --steel:       #6B778C;
  --white:       #FFFFFF;
  --plate:       #FFCC00; /* sparingly – Dutch plate accent */

  /* Semantic aliases */
  --bg:          var(--white);
  --bg-dark:     var(--road);
  --text:        var(--ink);
  --text-muted:  var(--steel);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* Spacing */
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);
  --container:   1240px;
  --gutter:      clamp(1.25rem, 4vw, 2rem);

  /* Radii */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10,22,40,.08), 0 1px 2px rgba(10,22,40,.06);
  --shadow:     0 4px 16px rgba(10,22,40,.10), 0 1px 4px rgba(10,22,40,.06);
  --shadow-lg:  0 12px 40px rgba(10,22,40,.14), 0 4px 12px rgba(10,22,40,.08);
  --shadow-signal: 0 8px 32px rgba(27,77,255,.32);

  /* Transitions */
  --t:          240ms cubic-bezier(.4,0,.2,1);
  --t-slow:     480ms cubic-bezier(.4,0,.2,1);

  /* Header height (JS uses this for scroll offset) */
  --header-h: 72px;
}

/* ===========================
   2. RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
  touch-action: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Screen-reader only */
.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  clip: auto;
  white-space: normal;
  padding: .5rem 1rem;
  background: var(--signal);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ===========================
   3. TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: inherit;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ===========================
   4. LAYOUT UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-pad);
}

.section--dark {
  background: var(--road);
  color: var(--white);
}

.section--mist {
  background: var(--fog);
}

.section--signal {
  background: var(--signal);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: .75rem;
}

.section--dark .section__label,
.section--signal .section__label {
  color: var(--plate);
}

.section__label--light {
  color: var(--plate);
}

.section__title {
  margin-bottom: 1rem;
}

.section__lead {
  color: var(--steel);
  font-size: 1.05rem;
}

.section--dark .section__lead {
  color: rgba(255,255,255,.65);
}

.section--signal .section__lead {
  color: rgba(255,255,255,.8);
}

/* ===========================
   5. HEADER & NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-scrolled {
  background: rgba(18, 28, 44, .98);
  box-shadow: 0 2px 24px rgba(10,22,40,.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ===========================
   6. LOGO
   =========================== */
.logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: clamp(32px, 4.2vw, 40px);
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.logo__img--footer {
  height: 34px;
  max-width: 200px;
  opacity: .95;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  display: flex;
  align-items: center;
  gap: .12rem;
  line-height: 1;
  background: none;
  padding: 0;
  border-radius: 0;
}

.logo__snel {
  color: var(--signal);
}

.logo__rijles {
  color: var(--white);
}

.footer__logo .logo__rijles {
  color: var(--white);
}

/* Hide old package submenus from legacy WP menu */
.site-nav__list .sub-menu {
  display: none !important;
}

.logo__l-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--signal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  border-radius: 4px;
  margin-left: .2rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ===========================
   7. NAVIGATION
   =========================== */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav__list li a {
  display: block;
  padding: .45rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}

.site-nav__list li a:hover,
.site-nav__list li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.site-nav__list li.current-menu-item > a {
  color: var(--plate);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  font-size: .875rem;
  padding: .5rem 1.1rem;
}

/* ===========================
   8. MOBILE NAV TOGGLE
   =========================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

.nav-toggle__bar {
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===========================
   9. BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1.6rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
}

/* Signal / primary */
.btn--signal {
  background: var(--signal);
  color: var(--white);
  border-color: var(--signal);
}
.btn--signal:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
  box-shadow: var(--shadow-signal);
}

/* Ghost (dark bg) */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

/* Outline signal */
.btn--outline-signal {
  background: transparent;
  color: var(--signal);
  border-color: var(--signal);
}
.btn--outline-signal:hover {
  background: var(--signal);
  color: var(--white);
}

/* Outline ink */
.btn--outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline-ink:hover {
  background: var(--ink);
  color: var(--white);
}

/* White (on signal bg) */
.btn--white {
  background: var(--white);
  color: var(--signal);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--fog);
  border-color: var(--fog);
}

/* Ghost white (on signal bg) */
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn--full { width: 100%; }

/* ===========================
   10. HERO
   =========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 100svh;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__content {
  background: var(--road);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter) clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, calc(50vw - var(--container)/2 + var(--gutter)), 6rem);
  clip-path: polygon(0 0, 100% 0, calc(100% - 2.5rem) 100%, 0 100%);
  z-index: 1;
  position: relative;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--plate);
  margin-bottom: 1.25rem;
}

.hero__heading {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 40ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.hero__bovag {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.hero__bovag svg {
  width: 16px;
  height: 16px;
  color: var(--plate);
  flex-shrink: 0;
}

.hero__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 100%;
}

.hero__media picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-h));
  object-fit: cover;
  object-position: center 40%;
}

.hero__media-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--signal), var(--plate));
  opacity: .6;
}

/* Short landscape (phones rotated) — never use desktop side-by-side hero */
@media (orientation: landscape) and (max-height: 520px) {
  .hero {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
    min-height: 0;
    max-height: none;
    padding-top: var(--header-h);
  }
  .hero__content {
    order: 2;
    clip-path: none !important;
    padding: 1rem var(--gutter) 1.25rem;
    color: var(--white);
  }
  .hero__media {
    order: 1;
    position: relative;
    width: 100%;
    height: min(46svh, 210px) !important;
    min-height: 130px !important;
    max-height: 46svh !important;
    aspect-ratio: auto !important;
    background: var(--ink);
    line-height: 0;
    overflow: hidden;
  }
  .hero__media picture,
  .hero__media img {
    position: absolute !important;
    inset: 0 !important;
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: 50% 45% !important;
  }
  .hero__heading {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    margin-bottom: .5rem;
    max-width: none;
  }
  .hero__sub {
    margin-bottom: .75rem;
    font-size: .9rem;
  }
  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .75rem;
  }
  .hero__ctas .btn {
    width: auto;
    flex: 1 1 auto;
    padding: .65rem 1rem;
    font-size: .85rem;
  }
  .hero__brand,
  .hero__meta {
    display: none;
  }
}

/* ===========================
   11. USPs / WAAROM
   =========================== */
.usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}

.usp {
  padding: 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t), transform var(--t);
}

@media (prefers-reduced-motion: no-preference) {
  .usp:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(27,77,255,.3);
    transform: translateY(-3px);
  }
}

.usp__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,77,255,.15);
  border-radius: var(--radius-sm);
  margin-bottom: 1.1rem;
  color: var(--signal);
  flex-shrink: 0;
}

.usp__icon svg {
  width: 22px;
  height: 22px;
}

.usp__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.usp__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   12. PRICING CARDS
   =========================== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-cards--full {
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
  transform-style: preserve-3d;
}

@media (prefers-reduced-motion: no-preference) {
  .pricing-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--signal);
  }
}

.pricing-card--featured {
  background: var(--road);
  border-color: var(--signal);
  color: var(--white);
  box-shadow: var(--shadow-signal);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--signal);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
}

.pricing-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--mist);
  opacity: .5;
  line-height: 1;
}

.pricing-card--featured .pricing-card__number {
  color: rgba(255,255,255,.15);
}

.pricing-card__header { display: flex; flex-direction: column; gap: .4rem; }

.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 700;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--signal);
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
  color: var(--plate);
}

.pricing-card__period {
  font-size: .78rem;
  color: var(--steel);
}

.pricing-card--featured .pricing-card__period {
  color: rgba(255,255,255,.55);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  line-height: 1.5;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,.85);
}

.check {
  color: var(--signal);
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05em;
}

.pricing-card--featured .check {
  color: var(--plate);
}

.pricing-card__footer {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.pricing-card__note {
  font-size: .75rem;
  color: var(--steel);
  text-align: center;
  margin: 0;
}

.pricing-card--featured .pricing-card__note {
  color: rgba(255,255,255,.45);
}

/* Teaser note */
.pricing-teaser__note {
  text-align: center;
  margin-top: 2.25rem;
  font-size: .9rem;
  color: var(--steel);
}

.pricing-teaser__note a {
  color: var(--signal);
  font-weight: 600;
  margin-left: .35rem;
}

/* ===========================
   13. CAR GALLERY
   =========================== */
.car-gallery {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 0.85rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.car-gallery__display {
  all: unset;
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #d6dce6 0%, #b8c0cd 62%, #9aa5b5 100%);
  aspect-ratio: 16/10;
  transition: opacity var(--t);
  cursor: zoom-in;
  position: relative;
  text-align: left;
}

.car-gallery__display.is-changing {
  opacity: .6;
}

.car-gallery__display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform var(--t-slow);
}

.car-gallery__display:hover img {
  transform: scale(1.015);
}

.car-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.car-gallery__thumb {
  all: unset;
  display: block;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #d6dce6 0%, #b8c0cd 100%);
  border: 2px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
  position: relative;
}

.car-gallery__thumb:hover {
  border-color: var(--signal);
}

.car-gallery__thumb.is-active {
  border-color: var(--signal);
  box-shadow: 0 0 0 2px rgba(27,77,255,.25);
}

.car-gallery__thumb img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: center bottom;
  transition: transform var(--t);
}

.car-gallery__thumb:hover img {
  transform: scale(1.03);
}

.car-gallery__thumb-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  text-align: center;
  padding: .25rem .4rem;
  color: var(--steel);
  background: var(--fog);
}

.car-gallery__thumb.is-active .car-gallery__thumb-label {
  color: var(--signal);
}

.lesautos .section__header {
  margin-bottom: 1.5rem;
}

.lesautos__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}

.lesautos__car-info h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .4rem;
}

.lesautos__car-info p {
  font-size: .88rem;
  color: var(--steel);
  line-height: 1.55;
  margin: 0;
}

/* ===========================
   14. OVER ONS TEASER
   =========================== */
.over-ons-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.over-ons-teaser__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.over-ons-teaser__content .section__title {
  margin-bottom: 0;
}

.over-ons-teaser__content p {
  color: var(--steel);
  font-size: .95rem;
  margin: 0;
}

.over-ons-teaser__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.badge {
  display: inline-block;
  padding: .3rem .85rem;
  background: var(--mist);
  color: var(--steel);
  font-size: .75rem;
  font-weight: 600;
  border-radius: 100px;
}

.badge--bovag {
  background: rgba(27,77,255,.1);
  color: var(--signal);
}

.over-ons-teaser__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 420px;
}

.over-ons-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   15. PROEFLES SECTION
   =========================== */
.proefles__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.proefles__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.proefles__title {
  color: var(--white);
  margin-bottom: 0;
}

.proefles__content p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin: 0;
}

.proefles__perks {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.proefles__perks li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}

.proefles__perks li::before {
  content: '✓';
  color: var(--plate);
  font-weight: 700;
  flex-shrink: 0;
}

.proefles-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}

/* ===========================
   16. SERVICEGEBIED
   =========================== */
.servicegebied__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.servicegebied__area {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  transition: border-color var(--t), color var(--t), box-shadow var(--t);
}

.servicegebied__area--main {
  border-color: var(--signal);
  color: var(--signal);
  font-weight: 600;
}

.servicegebied__area:hover {
  border-color: var(--signal);
  color: var(--signal);
  box-shadow: 0 4px 14px rgba(27, 77, 255, 0.12);
}

.servicegebied__pin {
  width: 14px;
  height: 14px;
  color: var(--signal);
  flex-shrink: 0;
}

.servicegebied__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.servicegebied__cta p {
  color: var(--steel);
  max-width: 44ch;
  margin: 0;
}

/* ===========================
   17. FORMS
   =========================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: .03em;
}

.form__label span {
  color: var(--signal);
}

.form__input {
  padding: .7rem .95rem;
  background: var(--fog);
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--ink);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  width: 100%;
}

.form__input:focus {
  outline: none;
  border-color: var(--signal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,77,255,.12);
}

.form__input::placeholder {
  color: var(--steel);
  opacity: .65;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B778C'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Proefles form – on signal bg */
.proefles-form .form__input {
  background: var(--fog);
  border-color: var(--mist);
}

.proefles-form .form__input:focus {
  background: var(--white);
}

.form-message {
  font-size: .875rem;
  padding: 0;
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

.form-message:not(:empty) {
  padding: .75rem 1rem;
}

.form-message--success {
  background: rgba(22,163,74,.1);
  color: #15803d;
  border: 1px solid rgba(22,163,74,.25);
}

.form-message--error {
  background: rgba(220,38,38,.08);
  color: #b91c1c;
  border: 1px solid rgba(220,38,38,.2);
}

/* ===========================
   18. PAGE HERO
   =========================== */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.page-hero--dark {
  background: var(--road);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  min-height: 55vh;
}

.page-hero--dark .page-hero__content {
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(2rem, 4vw, 4rem) var(--gutter);
  max-width: var(--container);
  padding-left: clamp(1.25rem, calc(50vw - var(--container)/2 + var(--gutter)), 6rem);
}

.page-hero--compact {
  background: var(--road);
  color: var(--white);
  text-align: center;
}

.page-hero--compact .page-hero__content {
  max-width: 720px;
  margin-inline: auto;
}

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 50ch;
  line-height: 1.7;
  margin: 0;
}

.page-hero--compact .page-hero__sub {
  margin-inline: auto;
}

.page-hero__car {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  max-height: 380px;
}

.page-hero__car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===========================
   19. FOOTER
   =========================== */
.site-footer {
  background: var(--road);
  color: rgba(255,255,255,.65);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.footer__logo .logo__snel { color: var(--signal); }
.footer__logo .logo__rijles { color: var(--white); }

.footer__tagline {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0;
}

.footer__bovag {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

.footer__bovag-icon {
  width: 16px;
  height: 16px;
  color: var(--plate);
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: .25rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.55);
  transition: background var(--t), color var(--t);
}

.footer__social a:hover {
  background: var(--signal);
  color: var(--white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}

.footer__address {
  font-style: normal;
  font-size: .875rem;
  line-height: 1.7;
}

.footer__address p {
  display: flex;
  gap: .5rem;
  margin-bottom: .75rem;
}

.footer__address p:last-child {
  margin-bottom: 0;
}

.footer__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: .2em;
  color: var(--steel);
}

.footer__address a {
  color: rgba(255,255,255,.65);
  transition: color var(--t);
}

.footer__address a:hover {
  color: var(--white);
}

.footer__phones {
  align-items: flex-start;
}

.footer__phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.footer__phone {
  display: inline-block;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__nav-list li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.footer__nav-list li a::before {
  content: '→';
  font-size: .7rem;
  color: var(--signal);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--t), transform var(--t);
}

.footer__nav-list li a:hover {
  color: var(--white);
}

.footer__nav-list li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__area-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__area-list li {
  font-size: .875rem;
}

.footer__area-list a {
  color: rgba(255,255,255,.6);
  transition: color var(--t);
}

.footer__area-list a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy,
.footer__kvk {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* ===========================
   20. FAB STACK (proefles + WhatsApp)
   =========================== */
.fab-stack {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
}

.proefles-fab {
  display: none;
  align-items: center;
  background: var(--signal);
  color: var(--white);
  border-radius: 100px;
  padding: .7rem 1.15rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .01em;
  transition: transform var(--t), box-shadow var(--t);
}

@media (prefers-reduced-motion: no-preference) {
  .proefles-fab:hover {
    transform: translateY(-2px);
  }
}

.whatsapp-fab {
  position: static;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: .7rem 1.25rem .7rem .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  .whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(37,211,102,.5);
  }
}

.whatsapp-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-fab__label {
  font-size: .85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .proefles-fab {
    display: inline-flex;
  }
}

/* ===========================
   21. LOSSE LESSEN (Tarieven)
   =========================== */
.losse-lessen__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.losse-lessen__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--mist);
}

.losse-lessen__item:last-child {
  border-bottom: none;
}

.losse-lessen__dienst {
  font-weight: 500;
  flex-shrink: 0;
}

.losse-lessen__dots {
  flex: 1;
  border-bottom: 2px dotted var(--mist);
}

.losse-lessen__prijs {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--signal);
  flex-shrink: 0;
}

.losse-lessen__note {
  text-align: center;
  font-size: .8rem;
  color: var(--steel);
  max-width: 640px;
  margin-inline: auto;
  margin-top: .5rem;
}

/* ===========================
   22. FAQ (Tarieven)
   =========================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 720px;
  margin-inline: auto;
}

.faq__item {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq__item[open] {
  border-color: var(--signal);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--signal);
  flex-shrink: 0;
  transition: transform var(--t);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.5rem 1.1rem;
}

.faq__answer p {
  font-size: .9rem;
  color: var(--steel);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   23. CTA BLOCK
   =========================== */
.cta-block {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-block__title {
  color: var(--white);
  margin-bottom: .75rem;
}

.cta-block__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===========================
   24. CONTACT PAGE
   =========================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact__info-title,
.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact__info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact__info-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fog);
  border-radius: var(--radius-sm);
  color: var(--signal);
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
}

.contact__info-icon--green { background: rgba(37,211,102,.1); color: #25D366; }
.contact__info-icon--facebook { background: rgba(24,119,242,.1); color: #1877F2; }

.contact__info-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--steel);
  margin-bottom: .35rem;
}

.contact__address {
  font-style: normal;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink);
}

.contact__link {
  color: var(--ink);
  font-size: .9rem;
  text-decoration: none;
  transition: color var(--t);
}

.contact__link:hover {
  color: var(--signal);
  text-decoration: underline;
}

.contact__link--whatsapp { color: #25D366; }
.contact__link--whatsapp:hover { color: #128C7E; }

.contact__bovag {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.1rem;
  background: var(--fog);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--steel);
  margin-top: .5rem;
}

.contact__bovag-icon {
  width: 18px;
  height: 18px;
  color: var(--signal);
}

.contact__form-wrap {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
}

/* ===========================
   25. OVER ONS PAGE
   =========================== */
.over-ons-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.over-ons-story__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.over-ons-story__content p { color: var(--steel); }

.over-ons-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 400px;
}

.over-ons-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value {
  padding: 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
}

.value__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.1);
  line-height: 1;
  margin-bottom: .75rem;
}

.value__title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.value__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.65;
}

/* BOVAG section */
.bovag-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.bovag-section__badge svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.bovag-section__content h2 {
  margin-bottom: 1rem;
}

.bovag-section__content p { color: var(--steel); }

/* Cars detail */
.cars-detail {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.car-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.car-detail--reversed {
  direction: rtl;
}

.car-detail--reversed > * {
  direction: ltr;
}

.car-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 360px;
  background: linear-gradient(180deg, #d0d7e2 0%, #a8b2c2 100%);
}

.car-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.car-detail__name {
  font-size: 1.4rem;
  margin-bottom: .75rem;
}

.car-detail__content p {
  color: var(--steel);
  margin-bottom: 1rem;
  font-size: .9rem;
}

.car-detail__specs {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.car-detail__specs li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--steel);
}

.car-detail__specs li::before {
  content: '✓';
  color: var(--signal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   26. GENERIC PAGES & POSTS
   =========================== */
.page-content,
.post-content {
  max-width: 700px;
  margin-inline: auto;
}

.page-article__content h2,
.page-article__content h3 {
  margin-top: 2em;
  margin-bottom: .75em;
}

.page-article__content ul,
.page-article__content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25em;
}

.post-hero {
  padding-top: var(--header-h);
  background: var(--road);
}

.post-hero .container {
  padding-block: 3rem 2rem;
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.post-hero__date,
.post-hero__cat {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

.post-hero__cat {
  background: rgba(27,77,255,.2);
  color: var(--signal);
  padding: .2rem .6rem;
  border-radius: 100px;
}

.post-hero__title {
  color: var(--white);
  max-width: 20ch;
}

.post-hero__thumbnail {
  max-height: 480px;
  overflow: hidden;
}

.post-hero__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1.5px solid var(--mist);
  margin-top: 3rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.post-nav__item { display: flex; flex-direction: column; gap: .25rem; }
.post-nav__item--next { align-items: flex-end; }
.post-nav__label { font-size: .75rem; color: var(--steel); }
.post-nav__link { font-size: .9rem; font-weight: 600; color: var(--signal); }

/* Blog grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--t), border-color var(--t);
}

.post-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--signal);
}

.post-card__image-link { display: block; overflow: hidden; }

.post-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.post-card__image-link:hover .post-card__image {
  transform: scale(1.04);
}

.post-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.post-card__meta {
  font-size: .75rem;
  color: var(--steel);
}

.post-card__title {
  font-size: 1.1rem;
  line-height: 1.3;
}

.post-card__title a {
  color: var(--ink);
  transition: color var(--t);
}

.post-card__title a:hover {
  color: var(--signal);
}

.post-card__excerpt {
  font-size: .875rem;
  color: var(--steel);
  flex: 1;
  margin: 0;
}

.post-card__read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--signal);
  margin-top: auto;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--steel);
  transition: border-color var(--t), background var(--t), color var(--t);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--white);
}

/* ===========================
   27. 404 PAGE
   =========================== */
.not-found {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
}

.not-found__inner {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
}

.not-found__number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  line-height: 1;
  color: var(--mist);
  margin-bottom: .5rem;
}

.not-found__title {
  margin-bottom: 1rem;
}

.not-found__desc {
  color: var(--steel);
  margin-bottom: 2rem;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.not-found__links-title {
  font-size: 1rem;
  margin-bottom: .75rem;
}

.not-found__links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

.not-found__links a {
  color: var(--signal);
  font-size: .875rem;
  font-weight: 600;
}

/* ===========================
   28. SCROLL REVEAL ANIMATIONS
   =========================== */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.28s cubic-bezier(.25,.46,.45,.94),
                transform 0.28s cubic-bezier(.25,.46,.45,.94);
  }

  [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   29. RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .car-gallery {
    grid-template-columns: 1fr;
  }

  .car-gallery__thumbs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .car-gallery__thumb {
    flex: 1 1 calc(25% - .75rem);
    min-width: 120px;
  }

  .lesautos__info {
    grid-template-columns: 1fr;
  }

  .car-detail,
  .car-detail--reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ===========================
   30. RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  /* Mobile nav — fullscreen overlay, goed leesbaar */
  .nav-toggle {
    display: flex;
    margin-left: auto;
    order: 3;
    z-index: 1002;
    position: relative;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.45);
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: #07111f;
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(var(--header-h) + 1.25rem) var(--gutter) 2rem;
    padding-top: calc(var(--header-h) + 1.5rem + env(safe-area-inset-top, 0px));
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-bar .site-nav {
    padding-top: calc(var(--header-h) + 46px + 1.25rem);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__label {
    display: block;
    margin: 0 0 1rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .site-nav__list li {
    width: 100%;
  }

  .site-nav__list li a {
    font-size: 1.35rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    width: 100%;
    color: #fff !important;
    background: transparent !important;
  }

  .site-nav__list li a:hover,
  .site-nav__list li.current-menu-item > a {
    color: var(--signal) !important;
  }

  .site-nav__cta {
    display: inline-flex !important;
    margin-top: 1.75rem;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: .95rem 1.25rem;
  }

  body.nav-open,
  body.lightbox-open {
    overflow: hidden;
    touch-action: none;
  }

  body.nav-open .site-header {
    background: #07111f;
  }

  /* Hero — full-bleed car, no white gaps; height via svh (not vw) so landscape stays sane */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .hero__content {
    clip-path: none;
    padding: 2rem var(--gutter) 2.25rem;
    order: 2;
    color: var(--white);
  }

  .hero__media {
    order: 1;
    position: relative;
    width: 100%;
    height: min(42svh, 360px);
    min-height: 220px;
    max-height: 42svh;
    aspect-ratio: auto;
    background: var(--ink);
    line-height: 0;
    overflow: hidden;
  }

  .hero__media picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero__media picture,
  .hero__media img {
    min-height: 0;
    max-height: none;
  }

  .hero__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 48%;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Landscape phones: keep car visible, don't let image eat the viewport */
  @media (orientation: landscape) {
    .hero__media {
      height: min(48svh, 280px);
      min-height: 160px;
      max-height: 48svh;
    }
    .hero__media img {
      object-position: 50% 45%;
    }
    .hero__content {
      padding: 1.25rem var(--gutter) 1.5rem;
    }
    .hero__heading {
      font-size: clamp(1.55rem, 4.5vw, 2.1rem);
      margin-bottom: .75rem;
    }
    .hero__sub {
      margin-bottom: 1rem;
      font-size: .95rem;
    }
    .hero__ctas {
      flex-direction: row;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }
    .hero__ctas .btn {
      width: auto;
      flex: 1 1 auto;
    }
  }

  /* Page hero */
  .page-hero--dark {
    grid-template-columns: 1fr;
  }

  .page-hero--dark .page-hero__content {
    padding: 2rem var(--gutter) 1.5rem;
  }

  .page-hero__car {
    position: relative;
    max-height: none;
    height: min(38svh, 320px);
    min-height: 200px;
    max-height: 38svh;
    background: var(--ink);
    line-height: 0;
    overflow: hidden;
  }

  .page-hero__car picture,
  .page-hero__car img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 50% 48%;
  }

  /* Over ons teaser */
  .over-ons-teaser__inner,
  .over-ons-story__inner,
  .proefles__inner,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  /* Proefles */
  .proefles-form {
    padding: 1.5rem;
  }

  /* Contact */
  .contact__form-wrap {
    padding: 1.5rem;
  }

  /* BOVAG */
  .bovag-section__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* WhatsApp fab */
  .whatsapp-fab__label,
  .proefles-fab__label {
    /* keep short labels on mobile */
  }

  .whatsapp-fab {
    border-radius: 50%;
    padding: .8rem;
  }

  .whatsapp-fab__label {
    display: none;
  }

  /* Form row */
  .form__row {
    grid-template-columns: 1fr;
  }

  /* Servicegebied */
  .servicegebied__areas {
    gap: .6rem;
  }
}

@media (max-width: 520px) {
  .hero__heading {
    font-size: 2.1rem;
  }

  .pricing-cards {
    max-width: 100%;
  }
}

/* ===========================
   31. GOOGLE REVIEWS
   =========================== */
.reviews-section {
  background: var(--fog);
}

.reviews__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews__google-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--signal);
  text-decoration: none;
  margin-top: 1rem;
  transition: color var(--t);
}

.reviews__google-link:hover {
  color: var(--signal-deep);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,22,40,.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--t), transform var(--t);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
  font-size: 1.1rem;
}

.review-card__text {
  font-size: .975rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  font-style: italic;
  margin: 0;
}

.review-card__text::before {
  content: '\201C';
  font-size: 1.8rem;
  line-height: 1;
  color: var(--signal);
  display: block;
  margin-bottom: .25rem;
  font-style: normal;
}

.review-card__meta {
  font-size: .8rem;
  font-weight: 600;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.review-card__meta::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--mist);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile touch targets */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
  }

  .site-nav__list li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   32. PRINT STYLES
   =========================== */
@media print {
  .site-header,
  .fab-stack,
  .whatsapp-fab,
  .nav-toggle,
  .hero__ctas,
  .proefles-section,
  .servicegebied,
  .site-footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: .75em;
  }
}

/* ===========================
   32. ENTRY CONTENT (WP)
   =========================== */
.entry-content a {
  color: var(--signal);
  text-decoration: underline;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2em;
  margin-bottom: .65em;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.6rem;
  margin-bottom: 1.25em;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li { margin-bottom: .4em; }

.entry-content blockquote {
  border-left: 3px solid var(--signal);
  padding: 1rem 1.5rem;
  margin: 2em 0;
  background: var(--fog);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--steel);
}

.entry-content img {
  border-radius: var(--radius);
  max-height: 480px;
  object-fit: cover;
}

.entry-content figure { margin: 2em 0; }
.entry-content figcaption {
  font-size: .8rem;
  color: var(--steel);
  text-align: center;
  margin-top: .5rem;
}

/* === Logo: PNG zichtbaar === */
.logo__img {
  display: block !important;
}
.logo__svg,
.custom-logo {
  display: none !important;
}
.custom-logo-link { display: none !important; }
.logo__wordmark,
.logo__l-badge {
  display: none !important;
}

.site-nav__label,
.site-nav__cta {
  display: none;
}

.car-gallery__display {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--fog);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
}
.car-gallery__display img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}
.car-gallery__display:hover img {
  transform: scale(1.03);
}
.car-gallery__zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(7,17,31,.72);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  pointer-events: none;
}

/* Lightbox */
.sr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(4, 10, 18, .92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: .75rem;
}
.sr-lightbox[hidden] { display: none !important; }
.sr-lightbox__img {
  max-width: min(96vw, 1100px);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.sr-lightbox__caption {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  text-align: center;
}
.sr-lightbox__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.sr-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}
.sr-lightbox__nav--prev { left: 10px; }
.sr-lightbox__nav--next { right: 10px; }
@media (max-width: 720px) {
  .sr-lightbox__nav { width: 40px; height: 40px; }
  .logo__wordmark { font-size: 1.45rem; }
}

/* Car images — keep subject framed; mobile overrides below */
.car-gallery__main img,
.car-detail__media img,
.page-hero__car img,
.over-ons-teaser img,
.instructor__media img,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.car-gallery__main,
.car-detail__media {
  min-height: 280px;
  background: var(--fog);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 720px) {
  .car-gallery__main,
  .car-detail__media {
    min-height: 220px !important;
  }
  .page-hero__car {
    height: min(38svh, 320px) !important;
    min-height: 200px !important;
    max-height: 38svh !important;
  }
  .hero__media img,
  .page-hero__car img,
  .over-ons-teaser img,
  .instructor__media img,
  .car-gallery__display img,
  .car-detail__image img {
    object-position: 50% 48% !important;
  }
}
.over-ons-teaser__image,
.instructor__media,
.car-detail__image {
  overflow: hidden;
  border-radius: var(--radius);
}
.over-ons-teaser__image img,
.instructor__media img,
.car-detail__image img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ===========================
   33. PLAN MODULES (SEO / leads / unique)
   =========================== */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: .8rem;
  font-weight: 600;
  color: var(--steel, #5a6a7a);
}

.trust-strip li {
  position: relative;
  padding-left: 1rem;
}

.trust-strip li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--signal);
}

.traject {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.traject__step {
  background: var(--fog, #f3f5f8);
  border-radius: var(--radius, 12px);
  padding: 1.25rem 1rem;
  text-align: center;
}

.traject__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .65rem;
}

.traject__title {
  font-size: 1rem;
  margin: 0 0 .35rem;
}

.traject__desc {
  font-size: .85rem;
  margin: 0;
  color: var(--steel, #5a6a7a);
  line-height: 1.45;
}

.instructor__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.instructor__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius, 12px);
  display: block;
}

.instructor__bio {
  font-size: 1.05rem;
  line-height: 1.65;
}

.instructor__how {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--steel, #5a6a7a);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  background: #0a1628;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reviews__cta {
  text-align: center;
  margin-top: 2rem;
}

.reviews__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1rem;
}

.compare-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-table {
  background: var(--white, #fff);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: var(--radius, 12px);
  padding: 1.25rem;
  overflow-x: auto;
}

.compare-table__title {
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: .55rem .4rem;
  border-bottom: 1px solid rgba(10,22,40,.08);
  vertical-align: top;
}

.compare-table thead th {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--steel, #5a6a7a);
}

.compare-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: .9rem;
}

.review-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

.review-steps__item {
  background: var(--fog, #f3f5f8);
  border-radius: var(--radius, 12px);
  padding: 1.5rem;
}

.review-steps__num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-weight: 800;
  margin-bottom: .75rem;
}

.gbp-checklist {
  background: var(--ink, #0a1628);
  color: #fff;
  border-radius: var(--radius, 12px);
  padding: 1.75rem;
}

.gbp-checklist__title {
  margin: 0 0 .5rem;
  font-size: 1.15rem;
}

.gbp-checklist__lead {
  opacity: .85;
  margin: 0 0 1rem;
}

.gbp-checklist__list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  line-height: 1.55;
}

.gbp-checklist__tip {
  margin: 0;
  font-size: .85rem;
  opacity: .75;
}

@media (max-width: 900px) {
  .traject {
    grid-template-columns: 1fr 1fr;
  }
  .instructor__inner,
  .compare-tables,
  .review-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .traject {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   34. EXAMEN / DOWNLOADS / THEORIE
   =========================== */
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}
.narrow { max-width: 720px; margin-inline: auto; }
.examen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.examen-card {
  background: var(--white, #fff);
  border-radius: var(--radius, 12px);
  padding: 1.35rem;
  border: 1px solid rgba(10,22,40,.08);
}
.examen-card h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.examen-card p { margin: 0; color: var(--steel, #5a6a7a); line-height: 1.55; font-size: .95rem; }
.examen-routes__list { display: flex; flex-direction: column; gap: 1rem; }
.examen-route {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(10,22,40,.08);
}
.examen-route h3 { margin: 0 0 .35rem; }
.examen-route p { margin: 0; color: var(--steel, #5a6a7a); }
.examen-note { margin-top: 1.5rem; font-size: .95rem; }
.examen-mistakes__list {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.2rem;
  line-height: 1.7;
}
.examen-mistakes__list li { margin-bottom: .75rem; }
.downloads-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--fog, #f3f5f8);
  border-radius: var(--radius, 12px);
}
.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.download-card {
  background: var(--fog, #f3f5f8);
  border-radius: var(--radius, 12px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.download-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: var(--signal);
  color: #0a1628;
  font-weight: 800;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-card__title { margin: 0; font-size: 1.1rem; }
.download-card__desc { margin: 0; flex: 1; color: var(--steel, #5a6a7a); font-size: .92rem; }
.downloads-extra { margin-top: 2.5rem; }
.downloads-disclaimer { font-size: .85rem; color: var(--steel, #5a6a7a); }
.theorie-quiz__progress { font-size: .85rem; font-weight: 600; color: var(--steel, #5a6a7a); }
.theorie-quiz__card {
  background: var(--fog, #f3f5f8);
  border-radius: var(--radius, 12px);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.theorie-quiz__question { font-size: 1.2rem; margin: 0 0 1rem; }
.theorie-quiz__options { display: flex; flex-direction: column; gap: .65rem; }
.theorie-quiz__option {
  text-align: left;
  padding: .9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(10,22,40,.12);
  background: #fff;
  cursor: pointer;
  font: inherit;
  transition: border-color .15s, background .15s;
}
.theorie-quiz__option:hover:not(:disabled) { border-color: var(--signal); }
.theorie-quiz__option.is-correct { border-color: #1a7f37; background: #e8f8ee; }
.theorie-quiz__option.is-wrong { border-color: #b42318; background: #fdecea; }
.theorie-quiz__feedback { margin: 1rem 0; font-size: .95rem; }
.theorie-quiz__feedback.is-ok { color: #1a7f37; }
.theorie-quiz__feedback.is-bad { color: #b42318; }
.theorie-quiz__result {
  background: var(--fog, #f3f5f8);
  border-radius: var(--radius, 12px);
  padding: 1.75rem;
  text-align: center;
}
.theorie-quiz__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.theorie-aside {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10,22,40,.08);
}
.unique-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.unique-tool {
  padding: 1.35rem;
  border-radius: var(--radius, 12px);
  background: var(--fog, #f3f5f8);
}
.unique-tool h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.unique-tool p { margin: 0 0 1rem; font-size: .92rem; color: var(--steel, #5a6a7a); }
@media (max-width: 900px) {
  .examen-grid, .download-cards, .unique-tools { grid-template-columns: 1fr; }
}

/* ===========================
   35. COST CALCULATOR
   =========================== */
.cost-calc {
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 48%);
}
.cost-calc__compare {
  margin-bottom: 2rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(10,22,40,.1);
  border-radius: var(--radius, 12px);
}
.cost-calc__compare-title {
  margin: 0 0 1rem;
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.1rem;
}
.cost-calc__compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cost-calc__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .9rem;
}
.cost-calc__table th,
.cost-calc__table td {
  text-align: left;
  padding: .65rem .5rem;
  border-bottom: 1px solid rgba(10,22,40,.08);
  vertical-align: top;
}
.cost-calc__table thead th {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--steel, #5a6a7a);
}
.cost-calc__diff-cell {
  font-weight: 700;
  color: var(--signal, #1B4DFF);
  white-space: nowrap;
}
.cost-calc__compare-note {
  margin: .9rem 0 0;
  font-size: .85rem;
  color: var(--steel, #5a6a7a);
}
.cost-calc__form {
  display: grid;
  gap: 1.5rem;
}
.cost-calc__legend {
  margin: 0 0 .85rem;
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
}
.cost-calc__cars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cost-calc__car {
  cursor: pointer;
}
.cost-calc__car input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cost-calc__car-body {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  height: 100%;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 2px solid rgba(10,22,40,.12);
  border-radius: var(--radius, 12px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cost-calc__car input:checked + .cost-calc__car-body {
  border-color: var(--signal, #1B4DFF);
  box-shadow: 0 0 0 3px rgba(232,93,4,.15);
}
.cost-calc__car input:focus-visible + .cost-calc__car-body {
  outline: 2px solid var(--navy, #0a1628);
  outline-offset: 2px;
}
.cost-calc__car-name {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
}
.cost-calc__car-type {
  font-size: .88rem;
  color: var(--steel, #5a6a7a);
}
.cost-calc__car-from {
  margin-top: .35rem;
  font-weight: 700;
  font-size: .95rem;
}
.cost-calc__car-delta {
  font-size: .82rem;
  font-weight: 600;
  color: var(--signal, #1B4DFF);
}
.cost-calc__mode {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.cost-calc__chip {
  cursor: pointer;
}
.cost-calc__chip input { position: absolute; opacity: 0; pointer-events: none; }
.cost-calc__chip span {
  display: inline-block;
  padding: .55rem 1rem;
  border: 1px solid rgba(10,22,40,.15);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem;
  font-weight: 600;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.cost-calc__chip input:checked + span {
  background: var(--navy, #0a1628);
  border-color: var(--navy, #0a1628);
  color: #fff;
}
.cost-calc__packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.cost-calc__pkg {
  cursor: pointer;
}
.cost-calc__pkg input { position: absolute; opacity: 0; pointer-events: none; }
.cost-calc__pkg > span {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  height: 100%;
  padding: 1rem;
  background: #fff;
  border: 2px solid rgba(10,22,40,.1);
  border-radius: var(--radius, 12px);
  transition: border-color .2s ease;
}
.cost-calc__pkg input:checked + span {
  border-color: var(--signal, #1B4DFF);
}
.cost-calc__pkg strong { font-size: 1rem; }
.cost-calc__pkg span span { font-size: .82rem; color: var(--steel, #5a6a7a); }
.cost-calc__pkg em {
  margin-top: .35rem;
  font-style: normal;
  font-weight: 800;
  font-size: 1.15rem;
  font-family: var(--font-display, Outfit, sans-serif);
}
.cost-calc__loose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cost-calc__field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
}
.cost-calc__field input,
.cost-calc__field select {
  padding: .7rem .85rem;
  border: 1px solid rgba(10,22,40,.18);
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
  background: #fff;
}
.cost-calc__extras {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.cost-calc__check {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .92rem;
  cursor: pointer;
}
.cost-calc__check input { margin-top: .2rem; }
.cost-calc__result {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--navy, #0a1628);
  color: #fff;
  border-radius: var(--radius, 12px);
}
.cost-calc__result-label {
  margin: 0;
  font-size: .85rem;
  opacity: .8;
}
.cost-calc__result-total {
  margin: .2rem 0 .35rem;
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
}
.cost-calc__result-meta {
  margin: 0;
  font-size: .9rem;
  opacity: .85;
}
.cost-calc__result-alt {
  margin: 0 0 1rem;
  font-size: .95rem;
  font-weight: 600;
  color: #c8d6ff;
}
.cost-calc__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.cost-calc__disclaimer {
  margin: 0;
  font-size: .82rem;
  color: var(--steel, #5a6a7a);
}
.pricing-card__dual {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin: .35rem 0 .25rem;
}
.pricing-card__dual-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .9rem;
}
.pricing-card__dual-row strong {
  font-family: var(--font-display, Outfit, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  white-space: nowrap;
}
.pricing-card--featured .pricing-card__dual-row strong { color: inherit; }
.pricing-card__dual-diff {
  margin: .25rem 0 0;
  font-size: .8rem;
  font-weight: 600;
  color: var(--signal, #1B4DFF);
}
.pricing-card--featured .pricing-card__dual-diff { color: #ffe8a8; }
.pricing-card__alt-price {
  margin: .35rem 0 0;
  font-size: .85rem;
  color: var(--steel, #5a6a7a);
}
.pricing-card--featured .pricing-card__alt-price { color: rgba(255,255,255,.75); }
@media (max-width: 900px) {
  .cost-calc__cars,
  .cost-calc__packages,
  .cost-calc__result,
  .cost-calc__loose-grid {
    grid-template-columns: 1fr;
  }
}


.cost-calc__request-label {
  margin: 0 0 .55rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  opacity: .85;
}
.cost-calc__result-actions--secondary {
  margin-top: .75rem;
  opacity: .95;
}
.cost-calc__result .btn--ghost-white {
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.cost-calc__result .btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.cost-calc__result .btn--signal {
  background: #fff;
  color: var(--navy, #0a1628);
  border-color: #fff;
}
.cost-calc__result .btn--signal:hover {
  background: #e8eefc;
  border-color: #e8eefc;
}
.hero__cta-note {
  margin: .85rem 0 0;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .78);
}
.hero__cta-note a {
  color: rgba(255, 255, 255, .92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cost-calc__nudge {
  margin: 0 0 1.25rem;
  padding: .9rem 1.1rem;
  background: rgba(27,77,255,.08);
  border-left: 3px solid var(--signal, #1B4DFF);
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
}
.cost-calc__nudge p { margin: 0; }
.cost-calc__result-actions .btn.is-preferred {
  box-shadow: 0 0 0 3px rgba(255,255,255,.55);
  transform: scale(1.02);
}

.cost-calc__field-note {
  margin: .35rem 0 0;
  font-size: .88rem;
  color: var(--steel, #5a6a7a);
  grid-column: 1 / -1;
}
