/* ============================================================
   NOORDZEE KOERIERS — v2 (MVP-logistics richting)
   Indigo blauw + wit, condensed caps display, kaart-layout
   ============================================================ */

:root {
  --ink: #032356;
  --ink-deep: #00173B;
  --ink-soft: rgba(3, 35, 86, 0.62);
  --paper: #f2f3f7;
  --paper-2: #e9eaf1;
  --white: #ffffff;
  --page: #ffffff;
  --dark: #001029;
  --line-light: rgba(3, 35, 86, 0.12);
  --line-dark: rgba(255, 255, 255, 0.28);
  --r-card: 14px;
  --r-panel: 26px;
  --gutter: 14px;
  --font-display: 'Pliant', 'Oswald', 'Arial Narrow', sans-serif;
  --font-sans: 'Archivo', 'Helvetica Neue', sans-serif;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  overflow-x: clip;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }
section { scroll-margin-top: 110px; }

.wrap { width: min(1380px, calc(100% - 2 * var(--gutter) - 20px)); margin: 0 auto; }

/* display type */
.d {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.03;
}

.tag {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; border-radius: 50%;
  z-index: 9999; opacity: 0;
}
.cursor-dot { width: 6px; height: 6px; background: var(--ink); transform: translate(-50%, -50%); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(3, 35, 86, 0.45);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-soft), height 0.25s var(--ease-soft), border-color 0.25s, background-color 0.25s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  background: rgba(3, 35, 86, 0.07);
  border-color: rgba(3, 35, 86, 0.85);
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   NAV — glass bar
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 14px var(--gutter) 0;
  transition: transform 0.5s var(--ease-out);
}
.nav.is-hidden { transform: translateY(-120%); }
.nav-bar {
  display: flex;
  align-items: stretch;
  gap: 10px;
  background: rgba(0, 23, 59, 0.78);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 16, 41, 0.35);
  padding: 8px 10px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: none;
}
.nav-logo img {
  height: 93px;
  width: 138px;
  display: block;
  object-fit: contain;
}
.footer-logo {
  width: 132px;
  height: auto;
  display: block;
}
.nav-center {
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.nav-center ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-center li { position: relative; }
.nav-center a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.07em;
  color: #fff;
  padding: 16px 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  transition: opacity 0.25s;
  white-space: nowrap;
}
.nav-center a::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 10px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-soft);
}
.nav-center a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-center a.is-current::after { transform: scaleX(1); transform-origin: left; background: #6f9ceb; }
.nav-center a.is-current { opacity: 1; }
.nav-sub a.is-current { color: #fff; background: rgba(255, 255, 255, 0.12); }
.nav-center .caret {
  width: 12px; height: 12px;
  stroke: #fff;
  flex: none;
  transition: transform 0.35s var(--ease-soft);
}
li.has-sub:hover .caret, li.has-sub.is-open .caret { transform: rotate(180deg); }
li.has-sub::before {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 18px;
}
.nav-sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 6px;
  min-width: 250px;
  background: rgba(0, 23, 59, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 16, 41, 0.45);
  padding: 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease-soft), transform 0.45s var(--ease-out);
}
li.has-sub:hover .nav-sub, li.has-sub.is-open .nav-sub {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-sub li { width: 100%; }
.nav-sub a {
  padding: 13px 16px;
  border-radius: 9px;
  font-size: 13px;
  transition: background-color 0.25s;
}
.nav-sub a::after { display: none; }
.nav-sub a:hover { background: rgba(255, 255, 255, 0.1); }
.nav-right { display: flex; gap: 10px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.07em;
  color: #fff;
  background: #6f9ceb;
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav-cta:hover { background: #fff; color: var(--ink-deep); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 16, 41, 0.28); }
.lang-switch { display: flex; align-items: center; padding: 0 4px; gap: 0; }
.lang-switch button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  padding: 10px 9px;
  cursor: pointer;
  transition: color 0.25s;
  text-transform: uppercase;
}
.lang-switch button.is-active { color: #fff; }

.nav-burger {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  width: 54px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform 0.4s var(--ease-soft);
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: var(--ink-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(100px, 15vh, 132px) 30px 44px;
  gap: 4px;
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-out);
}
body.menu-open .mobile-menu { clip-path: inset(0); }
.mobile-menu > a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(30px, 7vw, 50px);
  color: #fff;
  line-height: 1.18;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.mobile-menu > a small {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}
.mobile-menu > a.is-current { color: #6f9ceb; }
.mobile-menu > a.is-current small { color: #6f9ceb; }
.mobile-menu-foot { margin-top: 36px; color: rgba(255, 255, 255, 0.7); font-size: 14px; display: flex; flex-direction: column; gap: 8px; }
.mm-portal { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.mm-portal-label { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.13em; font-size: 11px; color: rgba(255, 255, 255, 0.5); }
.mm-portal a { color: #fff; font-weight: 600; font-size: 17px; width: max-content; }
.mobile-menu-foot > a[href^="tel"] { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 6vw, 30px); color: #fff; letter-spacing: 0.01em; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark);
  padding: 0 var(--gutter);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s var(--ease-soft);
  will-change: opacity;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.55) brightness(0.8) contrast(1.05);
  transform: scale(1.14);
  will-change: transform;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide.is-active img {
  transform: scale(1);
  transition: transform 9.5s linear;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0, 23, 59, 0.6) 0%, rgba(0, 23, 59, 0.18) 40%, rgba(0, 16, 41, 0.82) 100%),
    linear-gradient(110deg, rgba(0, 23, 59, 0.5) 0%, rgba(0, 23, 59, 0) 55%);
}
.hero-dots {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}
.hero-dots button {
  width: 8px; height: 8px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: height 0.4s var(--ease-out), background-color 0.3s;
}
.hero-dots button.is-active {
  height: 30px;
  background: #fff;
}
.hero-spread {
  position: relative;
  z-index: 2;
  margin-top: clamp(150px, 24vh, 240px);
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid var(--line-dark);
  padding: 0 12px 14px;
}
.hero-spread .sp {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 36px);
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(var(--from, 0));
  transition: transform 1.3s var(--ease-out), opacity 1s var(--ease-soft);
}
.hero-spread .sp:nth-child(1) { --from: 18vw; }
.hero-spread .sp:nth-child(2) { --from: 6vw; margin-left: clamp(120px, 22vw, 420px); }
.hero-spread .sp:nth-child(3) { --from: -18vw; margin-left: auto; }
.is-loaded .hero-spread .sp { opacity: 1; transform: translateX(0); }
.is-loaded .hero-spread .sp:nth-child(1) { transition-delay: 0.15s; }
.is-loaded .hero-spread .sp:nth-child(2) { transition-delay: 0.22s; }
.is-loaded .hero-spread .sp:nth-child(3) { transition-delay: 0.3s; }

.hero-lower {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 60px);
  padding: 0 12px clamp(26px, 4vh, 48px);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(27px, 3.5vw, 56px);
  line-height: 1.04;
  color: #fff;
  letter-spacing: 0.01em;
  max-width: 17ch;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vh, 38px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-soft) 0.62s, transform 1s var(--ease-out) 0.62s;
}
.is-loaded .hero-cta { opacity: 1; transform: none; }
.big-btn.glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.big-btn.glass:hover { background: rgba(255, 255, 255, 0.24); }
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-inner { display: block; transform: translateY(112%); transition: transform 1.1s var(--ease-out); }
.is-loaded .line:nth-child(1) .line-inner { transition-delay: 0.4s; }
.is-loaded .line:nth-child(2) .line-inner { transition-delay: 0.52s; }
.is-loaded .line-inner { transform: translateY(0); }

/* hero services cycler card */
.hero-card {
  background: var(--white);
  border-radius: var(--r-panel);
  width: min(440px, 100%);
  flex: none;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 16, 41, 0.35);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-soft) 0.7s, transform 1s var(--ease-out) 0.7s;
}
.is-loaded .hero-card { opacity: 1; transform: none; }
.hc-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: var(--paper);
}
.hc-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0, 16, 41, 0.36) 0%, rgba(0, 16, 41, 0) 48%);
  pointer-events: none;
}
.hc-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.9s var(--ease-out), opacity 0.4s var(--ease-soft);
}
.hc-media:hover .hc-thumb { transform: scale(1.05); }
.hc-thumb.is-swapping { opacity: 0; }
.hc-chip {
  position: absolute;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(0, 23, 59, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  color: #fff;
}
.hc-chip.hc-count { left: 14px; }
.hc-chip.hc-count .total { color: rgba(255, 255, 255, 0.55); }
.hc-chip.hc-label { right: 14px; letter-spacing: 0.12em; font-size: 11.5px; }
.hc-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 2;
}
.hc-progress i {
  position: absolute;
  inset: 0;
  background: #6f9ceb;
  transform: scaleX(0);
  transform-origin: left;
}
.hc-body { padding: 20px 26px 22px; }
.hc-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  transition: opacity 0.3s var(--ease-soft);
}
.hc-kicker.is-swapping { opacity: 0; }
.hc-title-clip { overflow: hidden; min-height: 1.1em; display: flex; align-items: flex-end; }
.hc-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.02;
  color: var(--ink);
  transition: transform 0.45s var(--ease-out), opacity 0.35s;
}
.hc-title.is-out { transform: translateY(-110%); opacity: 0; transition-duration: 0.3s; }
.hc-title.is-prep { transform: translateY(110%); opacity: 0; transition: none; }
.hero-card hr {
  border: none;
  border-top: 1px solid var(--line-light);
  margin: 16px 0 14px;
}
.hero-card .hc-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.hc-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--ink);
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.hc-visit:hover { gap: 12px; color: var(--ink-deep); }
.hc-visit svg { transition: transform 0.3s var(--ease-out); }
.hc-visit:hover svg { transform: translateX(3px); }

.icon-btn {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--ink);
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s var(--ease-soft);
  flex: none;
}
.icon-btn:hover { background: var(--ink-deep); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; }

/* ============================================================
   GROTE KNOPPEN
   ============================================================ */
.big-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.07em;
  border: none;
  border-radius: var(--r-card);
  padding: 22px 44px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  will-change: transform;
}
.big-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 36%, rgba(3, 35, 86, 0.12) 50%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}
.big-btn.inverse::before, .big-btn.glass::before {
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.5) 50%, transparent 64%);
}
.big-btn:hover::before { transform: translateX(130%); }
.big-btn:hover {
  background: var(--paper-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 16, 41, 0.18);
}
.big-btn:active { transform: translateY(-1px); }
.big-btn.inverse { background: var(--ink); color: #fff; }
.big-btn.inverse:hover { background: var(--ink-deep); }

/* ============================================================
   PANEL (indigo, afgerond, inzet)
   ============================================================ */
.panel-indigo {
  margin: var(--gutter);
  border-radius: var(--r-panel);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.panel-pad { padding: clamp(34px, 4.5vw, 60px) clamp(24px, 4vw, 64px); }
.panel-toprow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 18px;
}
.panel-toprow .tag { color: #fff; }
.panel-toprow .tag.dim { color: rgba(255, 255, 255, 0.55); }

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin: clamp(54px, 7vw, 100px) 0 clamp(64px, 8vw, 120px);
}
.about-body { text-align: left; }
.about-body h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  color: #fff;
  margin-bottom: 26px;
  line-height: 1.0;
}
.about-body p {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  max-width: 52ch;
}
.about-body .big-btn { margin-top: 14px; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-photos figure {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
}
.about-photos img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.ap-main { grid-column: 1 / 3; aspect-ratio: 16 / 8.6; }
.ap-a { aspect-ratio: 4 / 3.4; }
.ap-b { aspect-ratio: 4 / 3.4; }
.watermark-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.watermark-track {
  display: flex;
  width: max-content;
  animation: wm 40s linear infinite;
}
.watermark-track span {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(80px, 13vw, 200px);
  line-height: 1.06;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  padding-right: 0.6em;
}
@keyframes wm { to { transform: translateX(-50%); } }

/* ============================================================
   VOORDELEN
   ============================================================ */
.voordelen { padding: clamp(100px, 12vw, 180px) 0; background: var(--page); }
.voordelen-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.vh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.vh-kicker::before { content: ''; width: 30px; height: 2px; background: #6f9ceb; }
.voordelen-head h2 {
  font-size: clamp(40px, 5.4vw, 88px);
  color: var(--ink);
  line-height: 1.02;
}
.voordelen-head .vh-side {
  max-width: 34ch;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-bottom: 8px;
}

/* expanding image-accordion */
.adv-accordion {
  display: flex;
  gap: 14px;
  height: clamp(440px, 58vh, 620px);
}
.adv-panel {
  position: relative;
  flex: 1 1 0%;
  flex-grow: 1;
  min-width: 0;
  border-radius: var(--r-panel);
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  outline: none;
  transition: flex-grow 0.72s var(--ease-out);
}
.adv-panel.is-active { flex-grow: 3.5; }
.adv-media { position: absolute; inset: 0; z-index: 0; }
.adv-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.62) brightness(0.66);
  transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease-soft);
}
.adv-panel.is-active .adv-media img { filter: saturate(0.92) brightness(0.82); transform: scale(1.04); }
.adv-panel::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(178deg, rgba(0, 16, 41, 0.12) 0%, rgba(0, 16, 41, 0) 32%, rgba(0, 16, 41, 0.86) 100%);
}
.adv-index {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(0, 23, 59, 0.55);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  transition: background-color 0.5s;
}
.adv-panel.is-active .adv-index { background: var(--ink); }
.adv-spine {
  position: absolute;
  left: 0; right: 0; bottom: clamp(20px, 2.4vw, 34px);
  z-index: 2;
  display: flex;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.35s var(--ease-soft);
}
.adv-spine-tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}
.adv-panel.is-active .adv-spine { opacity: 0; }
.adv-detail {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: clamp(24px, 2.4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-soft) 0.16s, transform 0.6s var(--ease-out) 0.16s;
}
.adv-panel.is-active .adv-detail { opacity: 1; transform: none; }
.adv-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.adv-tag::before { content: ''; width: 26px; height: 2px; background: #6f9ceb; flex: none; }
.adv-detail h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 42px);
  line-height: 1.0;
  color: #fff;
  max-width: 17ch;
}
.adv-detail p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42ch;
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten { padding: 0 0 clamp(40px, 5vw, 80px); background: var(--page); }
.diensten-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: start;
  width: calc(100% - 2 * var(--gutter));
  margin: 0 auto;
}
.dienst-visual {
  position: sticky;
  top: 110px;
  border-radius: var(--r-panel);
  overflow: hidden;
  background: var(--dark);
  min-height: min(82vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.5vw, 52px);
}
.dv-media { position: absolute; inset: 0; z-index: 0; }
.dienst-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.62) brightness(0.6);
}
.dv-media img {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s var(--ease-soft), transform 7s var(--ease-soft);
}
.dv-media img.is-active { opacity: 1; transform: scale(1); }
.dienst-visual:hover .dv-media img.is-active { transform: scale(1.06); }
.dienst-visual::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(158deg, rgba(0,16,41,0.5) 0%, rgba(0,16,41,0.16) 38%, rgba(0,16,41,0.88) 100%);
}
.dv-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dv-top .tag { color: rgba(255, 255, 255, 0.92); }
.dv-top .tag.dim { color: rgba(255, 255, 255, 0.5); }
.dv-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 28px);
}
.dienst-visual h2 {
  font-size: clamp(46px, 5.8vw, 100px);
  color: #fff;
  line-height: 1.0;
}
.dv-active {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: clamp(10px, 1.6vw, 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.dv-active-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}
.dv-active-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 34px);
  color: #fff;
  line-height: 1.05;
  transition: opacity 0.4s var(--ease-soft);
}
.dv-active-name.is-swapping { opacity: 0; }
.dienst-visual .dv-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}
.dv-progress { height: 2px; background: rgba(255, 255, 255, 0.25); flex: 1; max-width: 220px; position: relative; overflow: hidden; border-radius: 2px; }
.dv-progress i { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out); }
.dv-progress-label { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #fff; letter-spacing: 0.06em; }

.srv-list { display: flex; flex-direction: column; gap: 18px; }
.srv-card {
  background: var(--paper);
  border-radius: var(--r-panel);
  padding: clamp(30px, 3.6vw, 56px) clamp(26px, 3.2vw, 52px);
  border: 1px solid transparent;
  transition: background-color 0.4s, border-color 0.4s, box-shadow 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.srv-card:hover { background: var(--paper-2); }
.srv-card.is-open {
  background: var(--white);
  border-color: var(--line-light);
  box-shadow: 0 26px 64px rgba(0, 16, 41, 0.11);
}
.srv-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  cursor: pointer;
}
.srv-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(70px, 8vw, 130px);
  line-height: 0.9;
  color: rgba(3, 35, 86, 0.16);
  transition: color 0.45s var(--ease-soft);
}
.srv-card:hover .srv-num { color: rgba(3, 35, 86, 0.38); }
.srv-card.is-open .srv-num { color: var(--ink); }
.srv-title-wrap h3 {
  font-size: clamp(24px, 2.6vw, 40px);
  color: var(--ink);
  margin-bottom: 10px;
  max-width: 16ch;
}
.srv-title-wrap p {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 34ch;
  line-height: 1.6;
}
.srv-toggle {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--ink);
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.45s var(--ease-out);
  flex: none;
  align-self: end;
}
.srv-card.is-open .srv-toggle { transform: rotate(135deg); }
.srv-toggle svg { width: 20px; height: 20px; stroke: currentColor; }
.srv-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease-out);
}
.srv-card.is-open .srv-detail { grid-template-rows: 1fr; }
.srv-detail-inner { overflow: hidden; }
.srv-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 40px);
  padding-top: clamp(24px, 3vw, 40px);
  margin-top: clamp(20px, 2.5vw, 34px);
  border-top: 1px solid var(--line-light);
  align-items: center;
}
.srv-detail ul { list-style: none; display: flex; flex-direction: column; }
.srv-detail ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-light);
}
.srv-detail ul li:last-child { border-bottom: none; }
.srv-detail ul li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--ink);
  flex: none;
}
.srv-photo {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.srv-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }

/* temp widget (in dienst 02) */
.temp-widget {
  border: 1px solid var(--line-light);
  border-radius: var(--r-card);
  padding: 20px 22px 22px;
  background: var(--white);
}
.temp-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.temp-zones { display: flex; gap: 6px; }
.temp-zones button {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  background: var(--paper);
  color: var(--ink-soft);
  border: none;
  border-radius: 8px;
  padding: 9px 13px;
  cursor: pointer;
  transition: all 0.3s;
}
.temp-zones button.is-active { background: var(--ink); color: #fff; }
.temp-read {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.temp-read small { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.temp-track { position: relative; height: 34px; display: flex; align-items: center; }
.temp-track .rail {
  position: absolute; left: 0; right: 0;
  height: 5px; border-radius: 5px;
  background: linear-gradient(to right, #dbe7f7 0%, #9cb8e6 40%, #26519e 72%, #032356 100%);
}
.temp-track .band {
  position: absolute;
  height: 15px; border-radius: 8px;
  border: 1.5px solid var(--ink);
  background: rgba(3, 35, 86, 0.08);
  transition: left 0.45s var(--ease-out), width 0.45s var(--ease-out);
}
.temp-track input[type='range'] {
  -webkit-appearance: none; appearance: none;
  width: 100%; background: transparent;
  position: relative; z-index: 2; height: 34px; cursor: pointer;
}
.temp-track input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink);
  border: 4px solid #fff;
  box-shadow: 0 0 0 1.5px var(--ink);
  cursor: grab;
}
.temp-track input[type='range']::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink);
  border: 4px solid #fff;
  box-shadow: 0 0 0 1.5px var(--ink);
  cursor: grab;
}
.temp-scale { display: flex; justify-content: space-between; font-size: 10px; font-weight: 600; color: var(--ink-soft); margin-top: 2px; }
.temp-status {
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}
.temp-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
.temp-status.ok { color: #3553c4; }
.temp-status.alarm { color: var(--ink-deep); }

/* spoed CTA bar */
.spoed-bar {
  margin: 18px var(--gutter) 0;
  border-radius: var(--r-panel);
  background: var(--ink);
  color: #fff;
  padding: clamp(28px, 4vw, 52px) clamp(26px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.spoed-bar h3 { font-size: clamp(28px, 3.6vw, 54px); color: #fff; max-width: 22ch; }
.spoed-bar .big-btn { flex: none; }

/* ============================================================
   FOTO MARQUEE
   ============================================================ */
.photo-marquee { padding: clamp(90px, 11vw, 150px) 0 0; background: var(--page); overflow: hidden; }
.marquee-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.marquee-head h2 { font-size: clamp(44px, 6vw, 92px); color: var(--ink); }
.marquee-head .tag { color: var(--ink-soft); }
.pm-strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.pm-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: wm 54s linear infinite;
  padding: 4px 0;
}
.pm-track figure {
  width: clamp(260px, 28vw, 440px);
  aspect-ratio: 4 / 3;
  border-radius: var(--r-panel);
  overflow: hidden;
  flex: none;
}
.pm-track figure.tall { aspect-ratio: 3 / 3.6; width: clamp(210px, 21vw, 330px); }
.pm-track figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}
.pm-track figure:hover img { filter: saturate(1); }

/* ============================================================
   ROADWAY — scroll-gedreven proces-route
   ============================================================ */
.roadway { position: relative; height: 380vh; background: #fff; display: none; }
.roadway-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 104px;
  background: #f7fafd;
}
.roadway-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.roadway-head h2 { font-size: clamp(40px, 4.6vw, 72px); color: var(--ink); }
.roadway-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 34px);
  color: var(--ink);
  letter-spacing: 0.05em;
}
.roadway-count .total { color: rgba(3, 35, 86, 0.3); }
.road-svg {
  flex: 1;
  width: 100%;
  margin: 0;
  display: block;
  min-height: 0;
}
#road-edge {
  fill: none;
  stroke: rgba(3, 35, 86, 0.12);
  stroke-width: 70;
  stroke-linecap: round;
}
#road-base {
  fill: none;
  stroke: var(--ink);
  stroke-width: 58;
  stroke-linecap: round;
}
#road-dash {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 3.5;
  stroke-dasharray: 20 26;
  animation: roadDash 2.6s linear infinite;
}
#road-glow {
  fill: none;
  stroke: rgba(111, 156, 235, 0.3);
  stroke-width: 16;
  stroke-linecap: round;
}
#road-prog {
  fill: none;
  stroke: #6f9ceb;
  stroke-width: 7;
  stroke-linecap: round;
}
.road-marker { fill: #fff; stroke: var(--ink); stroke-width: 3.5; transition: fill 0.4s; }
.road-marker.is-passed { fill: #6f9ceb; }
.road-scenery { pointer-events: none; }
.map-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  fill: #8aa6cd;
}
.map-label.sm { font-size: 10.5px; letter-spacing: 0.2em; }
@keyframes roadDash {
  to { stroke-dashoffset: -46; }
}
.road-fo { overflow: visible; }
.road-card {
  margin: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 16, 41, 0.16);
  overflow: hidden;
  opacity: 0;
  font-family: var(--font-sans);
}
.road-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  filter: saturate(0.85);
  display: block;
  border-radius: 18px 18px 0 0;
}
.road-card .rc-body { padding: 15px 19px 18px; }
.road-card .rc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #4a76c4;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.road-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.road-card p {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
#van-group { will-change: transform; }

@media (min-width: 881px) {
  .roadway { display: block; }
  .werkwijze-fallback { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .roadway { display: none !important; }
  .werkwijze-fallback { display: block !important; }
}

/* ============================================================
   WERKWIJZE
   ============================================================ */
.werkwijze { padding: clamp(100px, 12vw, 170px) 0 clamp(60px, 7vw, 100px); background: var(--page); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--paper);
  border-radius: var(--r-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s;
}
.step-card:hover { background: var(--paper-2); }
.step-card figure { aspect-ratio: 4 / 3; overflow: hidden; }
.step-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 1s var(--ease-out);
}
.step-card:hover figure img { transform: scale(1.06); }
.step-card .sc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.step-card .sc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.step-card .sc-num small { color: rgba(3, 35, 86, 0.35); }
.step-card h3 { font-size: clamp(22px, 1.9vw, 30px); color: var(--ink); }
.step-card p { font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   TEAM (indigo panel)
   ============================================================ */
.team-panel .panel-pad { display: flex; flex-direction: column; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin: clamp(50px, 7vw, 100px) 0 clamp(56px, 8vw, 110px);
}
.team-copy h2 { font-size: clamp(44px, 5.6vw, 88px); color: #fff; margin-bottom: 24px; }
.team-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin-bottom: 18px;
}
.team-copy .big-btn { margin-top: 20px; }
.team-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.team-photos figure {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  will-change: transform;
}
.team-photos img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.85); }
.tp-1 { grid-column: 1 / 3; aspect-ratio: 16 / 9.4; }
.tp-2 { aspect-ratio: 4 / 3.4; }
.tp-3 { aspect-ratio: 4 / 3.4; }

/* ============================================================
   FOTO BAND (afgerond paneel)
   ============================================================ */
.photo-band {
  position: relative;
  margin: 18px var(--gutter);
  height: clamp(380px, 70vh, 720px);
  overflow: hidden;
  border-radius: var(--r-panel);
  background: var(--dark);
}
.photo-band img {
  position: absolute;
  left: 0; top: -14%;
  width: 100%; height: 128%;
  object-fit: cover;
  filter: saturate(0.78);
  will-change: transform;
}
.photo-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0, 16, 41, 0.08) 0%, rgba(0, 16, 41, 0) 45%, rgba(0, 16, 41, 0.6) 100%);
}
.photo-band .band-caption {
  position: absolute;
  left: clamp(22px, 3.5vw, 50px);
  bottom: clamp(22px, 3.5vw, 44px);
  z-index: 2;
}
.photo-band .band-caption .tag { color: #fff; letter-spacing: 0.1em; }

/* ============================================================
   CONTACT (indigo panel + wit formulier)
   ============================================================ */
.contact-panel .contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  margin-top: clamp(48px, 6vw, 80px);
  margin-bottom: clamp(20px, 3vw, 40px);
}
.contact-info h2 { font-size: clamp(42px, 5.2vw, 80px); color: #fff; margin-bottom: 22px; }
.contact-lede { color: rgba(255, 255, 255, 0.85); font-size: 16px; line-height: 1.75; max-width: 44ch; margin-bottom: 40px; }
.contact-rows { display: flex; flex-direction: column; }
.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  color: #fff;
}
.contact-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.contact-row .label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}
.contact-row a.big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 40px);
  color: #fff;
  transition: opacity 0.3s;
}
.contact-row a:hover { opacity: 0.75; }

.quote-form {
  background: var(--white);
  border-radius: var(--r-panel);
  padding: clamp(26px, 3.5vw, 48px);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.form-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.form-note { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); max-width: 30ch; line-height: 1.6; }
.form-success {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-soft);
}
.quote-form.is-sent .form-success { opacity: 1; pointer-events: auto; }
.form-success .check {
  width: 62px; height: 62px;
  border-radius: 14px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.form-success .check svg { width: 26px; height: 26px; stroke: #fff; }
.form-success h3 { font-size: 34px; color: var(--ink); }
.form-success p { color: var(--ink-soft); font-size: 15px; font-weight: 500; max-width: 36ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding: clamp(70px, 9vw, 120px) 0 0; color: #fff; overflow: hidden; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.footer .mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: #fff;
}
.footer-tag { margin-top: 16px; font-size: 14.5px; font-weight: 500; line-height: 1.7; max-width: 30ch; color: rgba(255, 255, 255, 0.62); }
.footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.footer ul a { transition: opacity 0.3s; }
.footer ul a:hover { opacity: 0.6; }
.footer-watermark {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(64px, 11.5vw, 190px);
  line-height: 0.95;
  text-align: center;
  color: rgba(255, 255, 255, 0.06);
  margin-top: clamp(50px, 7vw, 90px);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: -8px; padding: 20px 0; }
.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.footer-credit { color: rgba(255, 255, 255, 0.5); }
.footer-credit a { color: rgba(255, 255, 255, 0.8); font-weight: 700; transition: color 0.3s; }
.footer-credit a:hover { color: #6f9ceb; }

/* ============================================================
   REVEALS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s var(--ease-soft), transform 1s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-soft), transform 0.9s var(--ease-out);
}
[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.14s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.23s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.32s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.41s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1120px) {
  .nav-center { display: none; }
  .nav-burger { display: flex; }
  .nav-cta, .lang-switch.desktop-only { display: none; }
  .nav-right { margin-left: auto; }
  .diensten-grid { grid-template-columns: 1fr; }
  .dienst-visual { position: relative; top: 0; min-height: 420px; }
  .voordelen-grid { grid-template-columns: 1fr; }
  .voordelen-left { position: relative; top: 0; }
  .voordelen-left .vl-foot { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .team-grid, .contact-panel .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav { padding: 10px var(--gutter) 0; }
  .nav-logo img { height: 56px; width: 84px; }
  section { scroll-margin-top: 92px; }
  .hero-dots { right: 14px; }
  .hero-spread .sp:nth-child(2) { margin-left: clamp(40px, 12vw, 120px); }
  .hero-lower { flex-direction: column; align-items: stretch; }
  .hero-card { width: 100%; }
  .srv-head { grid-template-columns: auto 1fr; }
  .srv-toggle { grid-column: 2; justify-self: end; }
  .srv-num { font-size: clamp(52px, 14vw, 80px); }
  .srv-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .adv-accordion { flex-direction: column; height: auto; gap: 12px; }
  .adv-panel { flex: none; flex-grow: 0 !important; height: 290px; }
  .adv-spine { display: none; }
  .adv-detail { opacity: 1; transform: none; }
  .adv-media img { filter: saturate(0.9) brightness(0.74); transform: none; }
  .adv-panel .adv-index { background: var(--ink); }
}

@media (max-width: 560px) {
  .big-btn { padding: 19px 30px; width: 100%; }
  .hero-cta .big-btn, .dhero-cta .big-btn, .dcta-actions .big-btn { width: 100%; }
  .big-btn.inverse[type='submit'] { width: 100%; }
  .form-foot { flex-direction: column-reverse; align-items: stretch; }
  .form-note { max-width: none; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .team-photos { grid-template-columns: 1fr; }
  .tp-1 { grid-row: auto; aspect-ratio: 4 / 3.4; }
  .spoed-bar { flex-direction: column; align-items: flex-start; }
  .spoed-bar .big-btn { width: 100%; }
  .temp-head { flex-wrap: wrap; gap: 10px; }
  .temp-zones { flex-wrap: wrap; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
  .line-inner, .hero-spread .sp, .hero-card, .hero-cta { opacity: 1; transform: none; }
  .hero-slide:first-child { opacity: 1; }
  .hero-slide img { transform: none; }
  .watermark-track, .pm-track { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
