/* ==========================================================================
   G.L.M. Cleaning: Design System
   Schitterende ramen, heldere afspraken.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand, afgeleid van het logo */
  --navy-900: #050d16;
  --navy-800: #08151f;
  --navy-700: #0b1e2d;
  --navy-600: #12293c;
  --navy-500: #1b3a52;

  --cyan-400: #4fd1ff;
  --cyan-500: #22b8f0;
  --cyan-600: #0e9ad4;
  --cyan-700: #0b7cad;

  --ice-50:  #f4fbff;
  --ice-100: #e6f4fd;
  --ice-200: #cbe8f8;

  --ink:        #0b1e2d;
  --ink-soft:   #3c5567;
  --ink-mute:   #6b8398;

  --white: #ffffff;
  --line: rgba(11, 30, 45, .10);
  --line-strong: rgba(11, 30, 45, .18);

  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #f4f9fd;
  --surface: #ffffff;

  /* Effects */
  --grad-brand: linear-gradient(135deg, var(--cyan-400) 0%, var(--cyan-600) 55%, #0a6f9c 100%);
  --grad-deep:  linear-gradient(160deg, #0b1e2d 0%, #08151f 55%, #061019 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.03));

  --shadow-sm: 0 1px 2px rgba(8,21,31,.06), 0 2px 6px rgba(8,21,31,.05);
  --shadow-md: 0 4px 10px rgba(8,21,31,.06), 0 14px 34px rgba(8,21,31,.09);
  --shadow-lg: 0 10px 24px rgba(8,21,31,.09), 0 30px 70px rgba(8,21,31,.14);
  --shadow-cyan: 0 10px 30px rgba(34,184,240,.32);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  --container: 1220px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --nav-h: 86px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Typografie ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.022em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.95rem, 3.9vw, 3rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; }
p  { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.eyebrow--light { color: var(--cyan-400); }

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.62;
  color: var(--ink-soft);
}

.section-head { max-width: 700px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }

.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--grad-deep); color: rgba(255,255,255,.72); }
.section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }

.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- 5. Knoppen ---------- */
.btn {
  --btn-bg: var(--grad-brand);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: .97rem;
  letter-spacing: -.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  box-shadow: var(--shadow-cyan);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(34,184,240,.42); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cyan-500); background: rgba(34,184,240,.06); }

.btn--glass {
  --btn-bg: rgba(255,255,255,.09);
  --btn-fg: #fff;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.24);
}
.btn--glass:hover { background: rgba(255,255,255,.16); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }

.btn--white { --btn-bg: #fff; --btn-fg: var(--navy-700); box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.03rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: .95rem;
  color: var(--cyan-600);
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: .75rem; color: var(--cyan-700); }
.link-arrow:hover svg { transform: translateX(2px); }

/* ---------- 6. Topbar + navigatie ---------- */
.topbar {
  background: var(--navy-800);
  color: rgba(255,255,255,.82);
  font-size: .84rem;
  position: relative;
  z-index: 60;
  overflow: hidden;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar__spoed {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  color: #fff;
}
.topbar__spoed .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: pulse 2.2s infinite;
  flex: none;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.topbar__links { display: flex; align-items: center; gap: 1.4rem; }
.topbar__links a { display: inline-flex; align-items: center; gap: .4rem; transition: color .25s; }
.topbar__links a:hover { color: var(--cyan-400); }
.topbar__links svg { width: 15px; height: 15px; }
@media (max-width: 840px) { .topbar__links { display: none; } .topbar__inner { justify-content: center; } }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease), border-color .35s, background-color .35s;
}
.nav.is-stuck {
  box-shadow: 0 6px 30px rgba(8,21,31,.09);
  border-bottom-color: var(--line);
  background: rgba(255,255,255,.93);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-h);
}
/* Het logobestand heeft ruime transparante marges; .brand snijdt die weg,
   zodat het beeldmerk zelf de opgegeven hoogte krijgt. */
.brand {
  display: block;
  position: relative;
  flex: none;
  height: var(--lh, 54px);
  width: calc(var(--lh, 54px) * 1.41);
  overflow: hidden;
}
.brand img {
  position: absolute;
  max-width: none;
  width: calc(var(--lh, 54px) * 1.9575);
  height: auto;
  left: calc(var(--lh, 54px) * -0.2737);
  top:  calc(var(--lh, 54px) * -0.2830);
  transition: transform .4s var(--ease);
}

.nav__logo { display: flex; align-items: center; gap: .75rem; flex: none; --lh: 54px; }
.nav__logo:hover img { transform: scale(1.06) rotate(-1.5deg); }

.nav__menu { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .6rem .95rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  transition: color .25s, background-color .25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 6px;
  width: 0; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--cyan-600); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 22px; }
.nav__link.is-active { color: var(--cyan-600); }
.nav__link .chev { width: 13px; height: 13px; transition: transform .3s var(--ease); }

/* Dropdown */
.nav__item { position: relative; }
.nav__item:hover .nav__link .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 306px;
  padding: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .65rem .8rem;
  border-radius: var(--r-sm);
  font-size: .93rem;
  font-weight: 550;
  color: var(--ink);
  transition: background-color .2s, color .2s;
}
.dropdown a:hover { background: var(--ice-100); color: var(--cyan-700); }
.dropdown .ic {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 9px;
  background: var(--ice-100);
  color: var(--cyan-600);
}
.dropdown .ic svg { width: 18px; height: 18px; }
.dropdown a:hover .ic { background: var(--grad-brand); color: #fff; }

.nav__cta { display: flex; align-items: center; gap: .6rem; flex: none; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  place-items: center;
  background: var(--ice-100);
  color: var(--ink);
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s;
}
.nav__burger span + span { margin-top: 5px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__menu, .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: grid; }
}
@media (max-width: 560px) {
  .nav__cta .btn { display: none; }
  .nav__logo { --lh: 42px; }
}

/* Mobiel paneel */
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(5,13,22,.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-panel.is-open { opacity: 1; visibility: visible; }
.mobile-panel__sheet {
  position: absolute;
  top: 0; right: 0;
  width: min(400px, 88vw);
  height: 100%;
  padding: 1.5rem 1.4rem 2.5rem;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.mobile-panel.is-open .mobile-panel__sheet { transform: none; }
.mobile-panel__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-panel__top .brand { --lh: 40px; }
.mobile-panel__close {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--ice-100);
}
.mobile-panel__close svg { width: 20px; height: 20px; }
.mobile-nav { display: flex; flex-direction: column; gap: .15rem; }
.mobile-nav > a, .mobile-nav__group > a {
  display: block;
  padding: .85rem .9rem;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--ink);
  transition: background-color .2s;
}
.mobile-nav > a:hover { background: var(--ice-100); }
.mobile-nav__sub { padding-left: .5rem; border-left: 2px solid var(--ice-200); margin: .2rem 0 .5rem .9rem; }
.mobile-nav__sub a {
  display: block;
  padding: .55rem .8rem;
  font-size: .95rem;
  font-weight: 550;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
}
.mobile-nav__sub a:hover { color: var(--cyan-600); background: var(--ice-50); }
.mobile-panel__foot { margin-top: auto; display: flex; flex-direction: column; gap: .7rem; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--grad-deep);
  color: rgba(255,255,255,.74);
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: .85;
}
.hero__glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--a {
  width: 620px; height: 620px;
  top: -18%; right: -12%;
  background: radial-gradient(circle, rgba(34,184,240,.4), transparent 68%);
}
.hero__glow--b {
  width: 520px; height: 520px;
  bottom: -22%; left: -10%;
  background: radial-gradient(circle, rgba(79,209,255,.22), transparent 70%);
}
.hero::after {
  /* fijn glasraster */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr);
  gap: clamp(2.5rem, 4.5vw, 4rem);
  align-items: center;
  width: 100%;
}
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .5rem .45rem .5rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-size: .84rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.6rem;
}
.hero__badge b {
  padding: .2rem .7rem;
  border-radius: var(--r-full);
  background: var(--grad-brand);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.hero__badge span { padding-right: .7rem; }

.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.7vw, 3.7rem); }
.hero h1 .word { display: inline-block; }
.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
  color: rgba(255,255,255,.68);
  max-width: 56ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.3rem; }

.hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__usp {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .93rem;
  color: rgba(255,255,255,.8);
}
.hero__usp svg { width: 20px; height: 20px; color: var(--cyan-400); flex: none; }

/* 3D-kaart met bus */
.hero__visual { perspective: 1400px; }
.tilt-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 40px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.09);
  will-change: transform;
}
.tilt-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transform: scale(1.06) translateZ(0);
  transition: transform .7s var(--ease);
}
.tilt-card:hover img { transform: scale(1.12); }
.tilt-card__glare {
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.28), transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.tilt-card:hover .tilt-card__glare { opacity: 1; }
.tilt-card__shine {
  position: absolute;
  top: 0; left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  animation: squeegee 6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes squeegee {
  0%, 55% { left: -60%; }
  85%, 100% { left: 130%; }
}

.hero__float {
  position: absolute;
  padding: .9rem 1.15rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  gap: .8rem;
  transform: translateZ(70px);
  animation: floaty 6s ease-in-out infinite;
}
.hero__float--tl { top: 6%; left: -6%; }
.hero__float--br { bottom: 7%; right: -5%; animation-delay: -3s; }
@media (max-width: 1200px) { .hero__float--tl { left: 2%; } .hero__float--br { right: 2%; } }
@media (max-width: 520px) { .hero__float { display: none; } }
@keyframes floaty {
  0%, 100% { transform: translateY(0) translateZ(70px); }
  50%      { transform: translateY(-13px) translateZ(70px); }
}
.hero__float .ic {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  flex: none;
}
.hero__float .ic svg { width: 21px; height: 21px; }
.hero__float b { display: block; color: #fff; font-family: var(--font-display); font-size: 1.02rem; line-height: 1.2; }
.hero__float small { color: rgba(255,255,255,.6); font-size: .8rem; }

/* Scroll-hint */
.hero__scroll {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .5rem;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.hero__scroll i {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(rgba(255,255,255,.5), transparent);
  animation: scrollline 2.4s ease-in-out infinite;
}
@keyframes scrollline { 0%,100% { opacity: .25; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 1000px) { .hero__scroll { display: none; } }

/* ---------- 8. Logostrook / trust ---------- */
.trust {
  padding-block: 1.6rem;
  background: var(--navy-900);
  color: rgba(255,255,255,.55);
  overflow: hidden;
}
.trust__inner { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  font-weight: 550;
  white-space: nowrap;
}
.trust__item svg { width: 18px; height: 18px; color: var(--cyan-500); }

/* ---------- 9. Kaarten ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(34,184,240,.09), transparent 42%);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(34,184,240,.35); }
.card:hover::before { opacity: 1; }

.card__ic {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ice-100);
  color: var(--cyan-600);
  margin-bottom: 1.35rem;
  transition: background .45s var(--ease), color .45s, transform .45s var(--ease);
}
.card__ic svg { width: 27px; height: 27px; }
.card:hover .card__ic { background: var(--grad-brand); color: #fff; transform: scale(1.06) rotate(-4deg); box-shadow: var(--shadow-cyan); }
.card h3 { margin-bottom: .7rem; }
.card p { font-size: .97rem; }
.card .link-arrow { margin-top: 1.3rem; }

/* Dienstkaart met foto */
.svc {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(34,184,240,.3); }
.svc__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--navy-700); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.07); }
.svc__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,21,31,.78) 0%, rgba(8,21,31,.15) 45%, transparent 75%);
}
.svc__tag {
  position: absolute;
  top: .9rem; left: .9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .8rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.svc__media h3 {
  position: absolute;
  bottom: 1.1rem; left: 1.4rem; right: 1.4rem;
  z-index: 2;
  color: #fff;
  font-size: 1.28rem;
}
.svc__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.svc__body p { font-size: .96rem; }
.svc__list { margin: 1.1rem 0 0; display: grid; gap: .55rem; }
.svc__list li { display: flex; gap: .6rem; font-size: .92rem; align-items: flex-start; }
.svc__list svg { width: 17px; height: 17px; color: var(--cyan-500); flex: none; margin-top: .28rem; }
.svc .link-arrow { margin-top: auto; padding-top: 1.4rem; }

/* ---------- 10. Stappen / proces ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(1.25rem, 2.4vw, 1.9rem); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding: 2.2rem 1.5rem 1.8rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  transition: background .4s, border-color .4s, transform .4s var(--ease);
}
.step:hover { background: rgba(255,255,255,.07); border-color: rgba(34,184,240,.4); transform: translateY(-5px); }
.step__n {
  counter-increment: step;
  position: absolute;
  top: -18px; left: 1.5rem;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.05rem;
  box-shadow: var(--shadow-cyan);
}
.step__n::before { content: counter(step, decimal-leading-zero); }
.step h4 { color: #fff; margin-bottom: .55rem; font-size: 1.12rem; }
.step p { font-size: .93rem; color: rgba(255,255,255,.62); }

/* ---------- 11. Voor & na slider ---------- */
/* De originele projectfoto's zijn collages (voor + na in één beeld).
   We tonen per laag exact één helft en schuiven er met clip-path over. */
.ba {
  --maxh: 700px;
  position: relative;
  width: 100%;
  /* Staande voor/na-paren worden anders metershoog: begrens de hoogte
     en laat de breedte meebewegen, zodat de verhouding intact blijft. */
  max-width: calc(var(--maxh) * var(--ar, 1.6));
  margin-inline: auto;
  aspect-ratio: var(--ar, 1.6);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-700);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
@media (max-width: 760px) { .ba { --maxh: 460px; } }

.ba__pane { position: absolute; inset: 0; overflow: hidden; }
.ba__pane img {
  position: absolute;
  max-width: none;
  pointer-events: none;
  object-fit: cover;
}
/* 12% overmaat snijdt de witte fotorandjes van de collage weg */
/* links = voor, rechts = na */
.ba[data-split="lr"] .ba__pane img { top: -6%; left: -6%; width: 224%; height: 112%; }
.ba[data-split="lr"] .ba__pane--after img { left: -118%; }
/* boven = voor, onder = na */
.ba[data-split="tb"] .ba__pane img { top: -6%; left: -6%; width: 112%; height: 224%; }
.ba[data-split="tb"] .ba__pane--after img { top: -118%; }

.ba__pane--after { clip-path: inset(0 0 0 var(--pos, 50%)); }

.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(0,0,0,.4);
  pointer-events: none;
}
.ba__knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
  color: var(--cyan-600);
}
.ba__knob svg { width: 24px; height: 24px; }
.ba__label {
  position: absolute;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .9rem;
  border-radius: var(--r-full);
  background: rgba(5,13,22,.68);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.ba__label i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
/* Links = de situatie vooraf, rechts = het resultaat. Zodra een kant
   volledig is weggeschoven verdwijnt het bijbehorende label, zodat er
   nooit twijfel is over wat je ziet. */
.ba__label--l { left: 1rem; }
.ba__label--r { right: 1rem; }
.ba__label--l i { background: #ff9a9a; }
.ba__label--r i { background: #5ee9a4; }
.ba__label.is-hidden { opacity: 0; transform: translateY(-6px); }

/* Uitlegballon */
.ba__tip {
  position: absolute;
  left: var(--pos, 50%);
  top: 50%;
  transform: translate(-50%, calc(-50% - 58px));
  z-index: 3;
  padding: .55rem 1rem;
  border-radius: var(--r-full);
  background: #fff;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 26px rgba(0,0,0,.34);
  pointer-events: none;
  animation: tipBob 2.4s ease-in-out infinite;
  transition: opacity .3s var(--ease), visibility .3s;
}
.ba__tip::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 12px; height: 12px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.ba__tip b { color: var(--cyan-600); }
.ba.is-touched .ba__tip { opacity: 0; visibility: hidden; }
@keyframes tipBob {
  0%, 100% { transform: translate(-50%, calc(-50% - 58px)); }
  50%      { transform: translate(-50%, calc(-50% - 66px)); }
}
/* Op een smal scherm is de slider maar zo'n 190px hoog. De ballon zweeft
   dan precies over de labels VOOR en NA heen, dus zetten we hem onderin. */
@media (max-width: 640px) {
  .ba__tip {
    top: auto;
    bottom: .8rem;
    transform: translate(-50%, 0);
    animation: none;
    font-size: .78rem;
    padding: .45rem .85rem;
    max-width: calc(100% - 2rem);
    white-space: normal;
    text-align: center;
  }
  .ba__tip::after { display: none; }
}

.ba:not(.is-touched) .ba__knob { animation: knobNudge 2.4s ease-in-out infinite; }
@keyframes knobNudge {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.12); }
}

/* Galerij in masonry-indeling, zodat de complete voor/na-foto's zichtbaar blijven */
.gallery { columns: 3 300px; column-gap: 1.1rem; }
@media (min-width: 1180px) { .gallery { columns: 4 260px; } }
.gallery__item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 1.1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--navy-700);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.gallery__item img { width: 100%; height: auto; transition: transform .7s var(--ease); }
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem .95rem .85rem;
  background: linear-gradient(transparent, rgba(5,13,22,.85));
  color: #fff;
  font-size: .87rem;
  font-weight: 600;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .35s, transform .35s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; justify-content: center; }
.filters button {
  padding: .55rem 1.15rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
  transition: all .3s var(--ease);
}
.filters button:hover { color: var(--cyan-600); box-shadow: inset 0 0 0 1.5px var(--cyan-500); }
.filters button.is-active {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-cyan);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(5,13,22,.93);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform .4s var(--ease);
}
.lightbox.is-open img { transform: none; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__cap { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .9rem; }

/* ---------- 12. Statistieken ---------- */
.stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.stat { text-align: center; padding: 1.4rem .8rem; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { display: block; margin-top: .65rem; font-size: .93rem; color: var(--ink-mute); }
.section--deep .stat span { color: rgba(255,255,255,.55); }

/* ---------- 13. Split-sectie ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: -1; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.split__badge {
  position: absolute;
  right: -1.2rem; bottom: -1.2rem;
  padding: 1.15rem 1.4rem;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 80%;
}
/* Op een telefoon is de foto zelf nog geen 360px breed. Een kaartje dat
   daaroverheen zweeft dekt dan het grootste deel van het beeld af, dus
   zetten we hem daar gewoon onder de foto. */
@media (max-width: 700px) {
  .split__badge {
    position: static;
    max-width: none;
    margin-top: .9rem;
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
  }
}
.split__badge .ic {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--grad-brand);
  color: #fff; flex: none;
}
.split__badge .ic svg { width: 22px; height: 22px; }
.split__badge b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.02rem; }
.split__badge small { color: var(--ink-mute); font-size: .82rem; }

.checklist { display: grid; gap: .9rem; margin-top: 1.9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-size: .99rem; }
.checklist .tick {
  display: grid; place-items: center;
  width: 25px; height: 25px;
  border-radius: 50%;
  background: var(--ice-100);
  color: var(--cyan-600);
  flex: none;
  margin-top: .12rem;
}
.section--deep .checklist .tick { background: rgba(34,184,240,.16); color: var(--cyan-400); }
.checklist .tick svg { width: 14px; height: 14px; }
.checklist b { color: var(--ink); font-weight: 650; }
.section--deep .checklist b { color: #fff; }

/* ---------- 14. Pakketten ---------- */
.plans { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }
.plan {
  position: relative;
  padding: 2.1rem 1.9rem 2.3rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan--feat {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
}
.plan__flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: .32rem 1rem;
  border-radius: var(--r-full);
  background: var(--grad-brand);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-cyan);
}
.plan h3 { margin-bottom: .5rem; }
.plan__desc { font-size: .95rem; margin-bottom: 1.5rem; }
.plan__feats { display: grid; gap: .8rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.plan__feats li { display: flex; gap: .7rem; font-size: .95rem; align-items: flex-start; }
.plan__feats svg { width: 18px; height: 18px; color: var(--cyan-500); flex: none; margin-top: .2rem; }
.plan .btn { margin-top: 1.8rem; }
.plan__note { margin-top: 1rem; font-size: .85rem; color: var(--ink-mute); }

/* ---------- 15. Accordeon (FAQ) ---------- */
.faq { display: grid; gap: .8rem; max-width: 840px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item.is-open { border-color: rgba(34,184,240,.4); box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.4rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.03rem;
  color: var(--ink);
}
.faq__q .sign {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ice-100);
  color: var(--cyan-600);
  flex: none;
  transition: background .3s, color .3s, transform .35s var(--ease);
}
.faq__item.is-open .sign { background: var(--grad-brand); color: #fff; transform: rotate(45deg); }
.faq__q .sign svg { width: 15px; height: 15px; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 1.4rem 1.4rem; font-size: .97rem; }

/* ---------- 16. Formulier ---------- */
.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 3.4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}
.form-shell::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
}

/* Voortgang */
.progress { margin-bottom: 2.2rem; }
.progress__bar {
  height: 5px;
  border-radius: var(--r-full);
  background: var(--ice-200);
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 33%;
  border-radius: var(--r-full);
  background: var(--grad-brand);
  transition: width .55s var(--ease);
}
.progress__steps { display: flex; justify-content: space-between; margin-top: .95rem; gap: .5rem; }
.progress__step { display: flex; align-items: center; gap: .55rem; font-size: .86rem; color: var(--ink-mute); transition: color .3s; }
.progress__step .dot {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ice-100);
  color: var(--ink-mute);
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex: none;
  transition: background .35s var(--ease), color .35s, transform .35s var(--ease);
}
.progress__step .dot svg { width: 14px; height: 14px; }
.progress__step.is-active { color: var(--ink); font-weight: 600; }
.progress__step.is-active .dot { background: var(--grad-brand); color: #fff; transform: scale(1.1); box-shadow: var(--shadow-cyan); }
.progress__step.is-done .dot { background: var(--cyan-600); color: #fff; }
@media (max-width: 640px) { .progress__step span { display: none; } .progress__steps { justify-content: flex-start; gap: 1rem; } }

/* Stappen */
.fstep { display: none; animation: stepIn .5s var(--ease); }
.fstep.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.fstep h3 { margin-bottom: .5rem; }
.fstep > p.hint { font-size: .95rem; margin-bottom: 1.7rem; color: var(--ink-mute); }

/* Keuzekaarten */
.choices { display: grid; gap: .85rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice__box {
  display: flex;
  align-items: center;
  gap: .9rem;
  height: 100%;
  padding: 1.05rem 1.15rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong);
  background: #fff;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.choice__box:hover { border-color: var(--cyan-500); background: var(--ice-50); transform: translateY(-2px); }
.choice__box .ic {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ice-100);
  color: var(--cyan-600);
  flex: none;
  transition: background .3s, color .3s;
}
.choice__box .ic svg { width: 21px; height: 21px; }
.choice__box b { display: block; font-family: var(--font-display); font-size: .97rem; color: var(--ink); font-weight: 650; line-height: 1.3; }
.choice__box small { display: block; font-size: .82rem; color: var(--ink-mute); margin-top: .1rem; }
.choice input:checked + .choice__box {
  border-color: var(--cyan-500);
  background: var(--ice-50);
  box-shadow: 0 0 0 4px rgba(34,184,240,.13);
}
.choice input:checked + .choice__box .ic { background: var(--grad-brand); color: #fff; }
.choice input:focus-visible + .choice__box { outline: 3px solid var(--cyan-500); outline-offset: 2px; }
.choice__check {
  position: absolute;
  top: .7rem; right: .7rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.5);
  transition: all .3s var(--ease);
  pointer-events: none;
}
.choice__check svg { width: 12px; height: 12px; }
.choice input:checked ~ .choice__check { opacity: 1; transform: none; }

/* Velden */
.fields { display: grid; gap: 1.15rem; }
.fields--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .fields--2 { grid-template-columns: 1fr; } }

.field { position: relative; display: flex; flex-direction: column; }
.field label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .45rem;
  font-family: var(--font-display);
}
.field label .req { color: var(--cyan-600); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: .92rem 1.05rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line-strong);
  background: #fff;
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s, background-color .25s;
  appearance: none;
}
.field textarea { min-height: 138px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b8398' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 17px;
  padding-right: 2.6rem;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: #9db0c0; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(34,184,240,.14);
}
.field .err {
  font-size: .82rem;
  color: #dc2b48;
  margin-top: .4rem;
  display: none;
  align-items: center;
  gap: .35rem;
}
.field .err svg { width: 14px; height: 14px; flex: none; }
.field.has-error input, .field.has-error textarea, .field.has-error select {
  border-color: #f0546f;
  background: #fff6f7;
}
.field.has-error .err { display: flex; }
.field-help { font-size: .84rem; color: var(--ink-mute); margin-top: .4rem; }

.group-err {
  display: none;
  align-items: center;
  gap: .35rem;
  font-size: .84rem;
  color: #dc2b48;
  margin-top: .7rem;
}
.group-err svg { width: 14px; height: 14px; flex: none; }

/* Serverfout bij het versturen */
.form-error {
  display: none;
  align-items: flex-start;
  gap: .55rem;
  margin: 1.6rem 0 0;
  padding: .95rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1.5px solid #f5b9c4;
  background: #fff6f7;
  color: #b3243d;
  font-size: .9rem;
  line-height: 1.55;
}

/* ---------- Foto's meesturen ---------- */
.field label .opt {
  margin-left: .35rem;
  font-family: var(--font);
  font-weight: 500;
  font-size: .78rem;
  color: var(--ink-mute);
}

/* De reden om een foto mee te sturen staat bewust bóven de knop: wie het
   pas eronder leest, heeft de knop al voorbij gescrold. */
.uploader__waarom {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 0 0 .7rem;
  padding: .8rem 1rem;
  border-radius: var(--r-sm);
  background: var(--ice-50);
  border: 1px solid var(--ice-200);
  font-size: .88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.uploader__waarom svg { width: 17px; height: 17px; flex: none; margin-top: .18rem; color: var(--cyan-600); }
.uploader__waarom b { color: var(--ink); }

.uploader__knop {
  display: flex;
  align-items: center;
  gap: .85rem;
  width: 100%;
  padding: .95rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1.5px dashed var(--line-strong);
  background: #fff;
  text-align: left;
  transition: border-color .25s, background-color .25s;
}
.uploader__knop:hover { border-color: var(--cyan-500); background: var(--ice-50); }
.uploader__knop:disabled { opacity: .55; cursor: wait; }
.uploader__ic {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: var(--ice-100);
  color: var(--cyan-600);
}
.uploader__ic svg { width: 21px; height: 21px; }
.uploader__tekst b { display: block; font-family: var(--font-display); font-size: .97rem; color: var(--ink); }
.uploader__tekst small { display: block; font-size: .82rem; color: var(--ink-mute); margin-top: .1rem; }

/* Vaste vierkanten in een raster: of er nu één of vier foto's staan,
   het formulier verspringt niet. */
.uploader__lijst {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .55rem;
  margin: .7rem 0 0;
  padding: 0;
  list-style: none;
}
.uploader__lijst:empty { display: none; }
.uploader__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--ice-100);
  box-shadow: inset 0 0 0 1px var(--line);
}
.uploader__item img { width: 100%; height: 100%; object-fit: cover; }
.uploader__weg {
  position: absolute;
  top: 4px; right: 4px;
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(5,13,22,.68);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: background-color .2s;
}
.uploader__weg:hover { background: #b3243d; }
.uploader__weg svg { width: 13px; height: 13px; }

.uploader__status {
  display: none;
  margin: .6rem 0 0;
  font-size: .85rem;
  color: var(--ink-mute);
}
.uploader__status.is-waarschuwing { color: #b3243d; }

@media (max-width: 480px) {
  /* Drie op een rij houdt de vierkanten op een telefoon groot genoeg om
     te zien wat erop staat, en het kruisje groot genoeg om te raken. */
  .uploader__lijst { grid-template-columns: repeat(3, 1fr); }
}

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.check-line { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; }
.field--check .check-line label {
  font-family: var(--font);
  font-weight: 400;
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 0;
  cursor: pointer;
}
.field--check .check-line label a { color: var(--cyan-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.field--check.has-error .check-line input[type="checkbox"] { border-color: #f0546f; background: #fff6f7; }
.check-line input[type="checkbox"] {
  appearance: none;
  width: 21px; height: 21px;
  flex: none;
  margin-top: .1rem;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  cursor: pointer;
  transition: all .25s var(--ease);
  position: relative;
}
.check-line input[type="checkbox"]:checked {
  background: var(--grad-brand);
  border-color: transparent;
}
.check-line input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.1rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.form-nav .btn--ghost svg { transform: rotate(180deg); }

/* Samenvatting */
.summary {
  background: var(--ice-50);
  border: 1px solid var(--ice-200);
  border-radius: var(--r-md);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.6rem;
}
.summary h4 { font-size: .95rem; margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; }
.summary h4 svg { width: 17px; height: 17px; color: var(--cyan-600); }
.summary dl { display: grid; gap: .55rem; margin: 0; }
.summary .row { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.summary dt { color: var(--ink-mute); }
.summary dd { margin: 0; color: var(--ink); font-weight: 600; text-align: right; }

/* Succes */
.form-done { display: none; text-align: center; padding: 1.5rem 0 .5rem; }
.form-done.is-active { display: block; animation: stepIn .55s var(--ease); }
.form-done__ic {
  width: 88px; height: 88px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-cyan);
  animation: pop .6s var(--ease);
}
.form-done__ic svg { width: 42px; height: 42px; }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
.form-done h3 { margin-bottom: .8rem; }
.form-done .actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.9rem; }

/* ---------- 17. Contactblokken ---------- */
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.contact-card:hover { border-color: rgba(34,184,240,.4); box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card .ic {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--ice-100);
  color: var(--cyan-600);
  flex: none;
  transition: background .35s, color .35s;
}
.contact-card:hover .ic { background: var(--grad-brand); color: #fff; }
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card small { display: block; font-size: .81rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.contact-card b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-top: .12rem; }

.wa-card {
  background: linear-gradient(135deg, #25d366, #14a344);
  border: 0;
  color: #fff;
}
.wa-card .ic { background: rgba(255,255,255,.2); color: #fff; }
.wa-card:hover .ic { background: rgba(255,255,255,.3); }
.wa-card small { color: rgba(255,255,255,.85); }
.wa-card b { color: #fff; }

.hours { display: grid; gap: .6rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .94rem; padding-bottom: .6rem; border-bottom: 1px dashed var(--line); }
.hours li:last-child { border: 0; padding-bottom: 0; }
.hours b { color: var(--ink); font-weight: 600; }
.section--deep .hours b { color: #fff; }
.section--deep .hours li { border-color: rgba(255,255,255,.12); }

/* ---------- 18. Werkgebied ---------- */
.regions { display: flex; flex-wrap: wrap; gap: .55rem; }
.regions span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .48rem 1rem;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--line);
  font-size: .89rem;
  font-weight: 550;
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.regions span:hover { border-color: var(--cyan-500); color: var(--cyan-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.regions span::before { content: "📍"; font-size: .8rem; }

/* ---------- 19. CTA-band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--grad-deep);
  text-align: center;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(34,184,240,.28), transparent 62%);
  z-index: -1;
  filter: blur(20px);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.68); max-width: 60ch; margin: 1.2rem auto 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.2rem; }

/* ---------- 20. Pagina-hero (subpagina's) ---------- */
.phero {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--grad-deep);
  color: rgba(255,255,255,.7);
  overflow: hidden;
  isolation: isolate;
}
.phero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,184,240,.3), transparent 66%);
  filter: blur(60px);
  z-index: -1;
}
.phero__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: clamp(2rem,4vw,3.5rem); align-items: center; }
@media (max-width: 900px) { .phero__grid { grid-template-columns: 1fr; } .phero__media { display: none; } }
.phero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.phero p { margin-top: 1.2rem; max-width: 62ch; font-size: 1.08rem; }
.phero__media img { border-radius: var(--r-lg); box-shadow: 0 30px 70px rgba(0,0,0,.45); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.phero .btn { margin-top: 2rem; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .87rem; color: rgba(255,255,255,.5); margin-bottom: 1.4rem; }
.crumbs a:hover { color: var(--cyan-400); }
.crumbs svg { width: 13px; height: 13px; opacity: .5; }

/* ---------- 21. Prose (juridische pagina's) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-top: 2.8rem; margin-bottom: .9rem; }
.prose h3 { font-size: 1.16rem; margin-top: 1.9rem; margin-bottom: .6rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.3rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-brand);
}
.prose a { color: var(--cyan-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .meta { font-size: .9rem; color: var(--ink-mute); padding: 1rem 1.2rem; background: var(--bg-alt); border-radius: var(--r-sm); border-left: 3px solid var(--cyan-500); }

/* ---------- 22. Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.55);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  font-size: .94rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.5rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { --lh: 64px; margin-bottom: 1.4rem; }
.footer h4 {
  color: #fff;
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}
.footer ul { display: grid; gap: .7rem; }
.footer a { transition: color .25s, padding-left .25s; }
.footer ul a:hover { color: var(--cyan-400); padding-left: 4px; }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--cyan-500); flex: none; margin-top: .25rem; }
.footer__socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer__socials a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  transition: all .35s var(--ease);
}
.footer__socials a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-cyan); }
.footer__socials svg { width: 19px; height: 19px; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .87rem;
  color: rgba(255,255,255,.4);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer__bar a:hover { color: var(--cyan-400); }

/* ---------- 23. Mobiele actiebalk ---------- */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: none;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(8,21,31,.09);
  padding: .55rem max(.8rem, env(safe-area-inset-left)) calc(.55rem + env(safe-area-inset-bottom));
}
.dock__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.dock a {
  display: grid;
  justify-items: center;
  gap: .22rem;
  padding: .5rem .3rem;
  border-radius: 12px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background-color .25s, color .25s;
}
.dock a svg { width: 21px; height: 21px; }
.dock a:hover, .dock a.accent { color: var(--cyan-600); }
.dock a.accent { background: var(--ice-100); }
@media (max-width: 700px) {
  .dock { display: block; }
  body { padding-bottom: 74px; }
}

/* ---------- 24. Zwevende WhatsApp-knop ---------- */
.wa-fab {
  position: fixed;
  right: 1.35rem;
  bottom: 1.5rem;
  z-index: 44;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #14a344);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37,211,102,.42);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.wa-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,.5); }
.wa-fab svg { width: 29px; height: 29px; }
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: ring 2.6s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (max-width: 700px) { .wa-fab { bottom: 88px; right: 1rem; width: 52px; height: 52px; } .wa-fab svg { width: 26px; height: 26px; } }

/* ---------- 25. Scroll-animaties ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="zoom"]  { transform: scale(.94); }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: var(--grad-brand);
  transition: width .1s linear;
}

/* ---------- 26. Diverse ---------- */
.skip {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 300;
  padding: .8rem 1.3rem;
  border-radius: var(--r-sm);
  background: var(--navy-800);
  color: #fff;
  font-weight: 600;
  transition: top .3s;
}
.skip:focus { top: 1rem; }

.divider-wave { display: block; width: 100%; height: auto; }

.badge-eco {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: var(--r-full);
  background: rgba(74,222,128,.12);
  color: #15803d;
  font-size: .84rem;
  font-weight: 650;
}
.badge-eco svg { width: 16px; height: 16px; }

.note {
  padding: 1.15rem 1.3rem;
  border-radius: var(--r-md);
  background: var(--ice-50);
  border-left: 3px solid var(--cyan-500);
  font-size: .95rem;
}
.note b { color: var(--ink); }

/* ---------- 26b. Contactpagina-indeling ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 1020px) { .contact-layout { grid-template-columns: 1fr; } }

/* ---------- 27. Voor/na: case-kiezer ---------- */
.ba-wrap { display: grid; gap: 1.25rem; }
.ba-cases { display: flex; gap: .7rem; overflow-x: auto; padding-bottom: .4rem; scrollbar-width: thin; }
.ba-case {
  position: relative;
  flex: none;
  width: 108px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .55;
  transition: all .35s var(--ease);
  background: var(--navy-700);
}
.ba-case img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-case:hover { opacity: .85; transform: translateY(-2px); }
.ba-case.is-active { opacity: 1; border-color: var(--cyan-500); box-shadow: var(--shadow-cyan); }
.ba-case span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem .4rem .35rem;
  background: linear-gradient(transparent, rgba(5,13,22,.9));
  color: #fff;
  font-size: .68rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
}
.ba-hint {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .87rem;
  color: var(--ink-mute);
}
.section--deep .ba-hint { color: rgba(255,255,255,.55); }
.ba-hint svg { width: 17px; height: 17px; color: var(--cyan-500); }

/* ---------- 28. Telefoon ----------
   Wat op een muis prima werkt, is met een duim vaak te klein of te krap.
   Hieronder staat alles wat alleen op smalle schermen anders moet. */

.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; }

@media (max-width: 640px) {
  /* Tapdoelen. Een linkje van 19px hoog is met een duim niet te raken;
     44px is de maat die zowel Apple als Google aanhouden. */
  .footer ul a,
  .footer__bar nav a,
  .crumbs a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer ul { gap: 0; }
  .footer__contact li { align-items: center; }
  .footer__contact svg { margin-top: 0; }
  .footer__socials a { width: 46px; height: 46px; }
  .footer__bar nav { gap: .4rem 1.3rem; }
  .crumbs { gap: .2rem .5rem; margin-bottom: 1rem; }
  .filters button { padding: .72rem 1.15rem; }

  /* Twee knoppen naast elkaar worden op deze breedte toch afgebroken.
     Onder elkaar en even breed leest rustiger dan twee ongelijke pillen. */
  .hero__actions .btn,
  .cta-band__actions .btn,
  .btn-row .btn,
  .phero .btn { width: 100%; }
  .hero__actions, .cta-band__actions, .btn-row { gap: .7rem; }

  /* Kleine hoofdletterlabels worden onder de 12px slecht leesbaar. */
  .svc__tag { font-size: .8rem; padding: .42rem .85rem; }
  .eyebrow { font-size: .8rem; letter-spacing: .12em; }

  /* De bovenbalk viel over twee regels en at een kwart van het eerste beeld op. */
  .topbar { font-size: .8rem; }
  .topbar__inner { min-height: 38px; }
}

@media (max-width: 400px) {
  /* Op de smalste toestellen (iPhone SE) net iets meer lucht winnen. */
  .trust__inner { gap: .9rem 2rem; }
  .form-shell { padding-inline: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .nav, .topbar, .dock, .wa-fab, .hero__canvas, .footer__socials { display: none !important; }
  body { color: #000; }
}
