/* =====================================================================
   LORIN LOGISTICS — Prototype stylesheet
   Design tokens + componenten. Opgezet voor latere WordPress-vertaling.
   Merkkleur: #f7771e (oranje) + antraciet/zwart — conform officieel logo
   ===================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Manrope:wght@400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* Brand — LORIN oranje (#f7771e) + antraciet/charcoal.
     Let op: token-namen --blue* zijn behouden maar bevatten nu de ORANJE accentkleur. */
  --blue:        #F7771E;
  --blue-400:    #FF9B4F;
  --blue-600:    #E0620C;
  --blue-700:    #C24E06;

  /* Neutrals — dark base (zachter graphite = lichter, luchtiger thema) */
  --navy:        #23242B;
  --navy-800:    #2C2D35;
  --navy-700:    #383A45;
  --navy-600:    #4B4D5A;

  /* Neutrals — light (helderder) */
  --paper:       #FFFFFF;
  --paper-2:     #F6F5F2;
  --paper-3:     #EAE9E5;

  /* Ink */
  --ink:         #18181B;
  --ink-2:       #3D3D44;
  --muted:       #7C7C86;
  --muted-dark:  #ADADB6;

  /* Lines & surfaces */
  --line:        rgba(20, 20, 23, 0.10);
  --line-dark:   rgba(255, 255, 255, 0.10);

  /* Effects */
  --shadow-sm:   0 2px 8px rgba(20, 20, 23, 0.06);
  --shadow-md:   0 14px 40px rgba(20, 20, 23, 0.12);
  --shadow-lg:   0 30px 70px rgba(20, 20, 23, 0.18);
  --shadow-blue: 0 18px 44px rgba(247, 119, 30, 0.34);

  /* Type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  /* Spacing / layout */
  --container: 1240px;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --header-h: 116px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--blue); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mw-680 { max-width: 680px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
h2.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.lead { font-size: clamp(1rem, 1.2vw, 1.125rem); color: var(--ink-2); }

/* Eyebrow / section label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-700);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--blue);
}
.eyebrow--light { color: var(--blue-400); }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 18px; }

/* Highlight text */
.hl { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #04121d;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.btn:hover svg { transform: translateX(4px); }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
}
.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn--outline-light:hover { background: #fff; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  /* Altijd lichte achtergrond */
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s, box-shadow .35s, height .35s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
  height: 92px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mark { width: 42px; height: 42px; flex: none; }

/* Echt logo (oranje/zwart) + witte variant voor donkere achtergrond */
.brand-logo { height: 88px; width: auto; display: block; }
.brand-logo--light { display: none; }
.site-header.scrolled .brand-logo { height: 66px; }
.site-footer .brand-logo { height: 92px; }
.site-footer .brand-logo--dark { display: none; }
.site-footer .brand-logo--light { display: block; }
.brand-text { line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue-700); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--blue);
  border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 14px; }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--navy);
  padding: 24px 24px 34px;
  transform: translateY(-120%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 22px; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 82% -10%, var(--navy-700) 0%, var(--navy) 55%);
  color: #fff;
  padding: calc(var(--header-h) + 70px) 0 90px;
  overflow: hidden;
}
.hero::before { /* grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 60% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 620px; height: 620px;
  right: -140px; top: -160px;
  background: radial-gradient(circle, rgba(247,119,30,0.42), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: #fff; }
.hero .display { margin: 22px 0; }
.hero .lead { color: var(--muted-dark); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.86rem;
  color: #cfe6f6;
  padding: 8px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.hero-tag svg { width: 16px; height: 16px; color: var(--blue); }

/* Hero visual panel */
.hero-visual {
  position: relative;
  aspect-ratio: 4/4.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(247,119,30,0.10), transparent 40%),
    linear-gradient(180deg, var(--navy-700), var(--navy-800));
  box-shadow: var(--shadow-lg);
}
.hero-visual .scene { position: absolute; inset: 0; }
.hero-visual .badge {
  position: absolute;
  left: 20px; bottom: 20px;
  right: 20px;
  display: flex; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(7,23,38,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
}
.hero-visual .badge .num {
  display: block;
  font-family: var(--font-display); font-weight: 900; font-size: 2.1rem; color: var(--blue); line-height: 1;
}
.hero-visual .badge .lbl { display: block; margin-top: 4px; font-size: 0.82rem; color: var(--muted-dark); }
.hero-visual .badge > div { flex: 1; }
.hero-visual .badge .sep { flex: none; width: 1px; background: var(--line-dark); }

/* ---------- Marquee / partners ---------- */
.marquee-band {
  background: var(--navy-800);
  color: #fff;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.marquee { display: flex; gap: 60px; width: max-content; animation: marquee 28s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; gap: 60px; white-space: nowrap;
}
.marquee span::after { content: "●"; color: var(--blue); font-size: 0.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- USP strip ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.usp {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.usp:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.usp .ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--blue), var(--blue-700));
  color: #fff; margin-bottom: 18px;
  box-shadow: var(--shadow-blue);
}
.usp .ico svg { width: 26px; height: 26px; }
.usp h3 { font-size: 1.18rem; margin-bottom: 8px; }
.usp p { font-size: 0.96rem; color: var(--ink-2); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 320px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card .num {
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  color: var(--blue-700); letter-spacing: 0.1em;
}
.service-card .svc-ico {
  width: 62px; height: 62px; margin: 16px 0 20px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--paper-2);
  color: var(--blue-700);
  transition: background .35s, color .35s;
}
.service-card:hover .svc-ico { background: var(--blue); color: #fff; }
.service-card .svc-ico svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.55rem; text-transform: uppercase; letter-spacing: -0.01em; }
.service-card p { margin-top: 12px; color: var(--ink-2); font-size: 0.98rem; }
.service-card .more {
  margin-top: auto; padding-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--ink);
}
.service-card .more svg { width: 16px; height: 16px; color: var(--blue); transition: transform .25s; }
.service-card:hover .more svg { transform: translateX(5px); }

/* Featured dark service card variant */
.service-card--dark {
  background: radial-gradient(120% 120% at 90% 0%, var(--navy-700), var(--navy));
  color: #fff; border-color: transparent;
}
.service-card--dark h3 { color: #fff; }
.service-card--dark p { color: var(--muted-dark); }
.service-card--dark .svc-ico { background: rgba(255,255,255,0.08); color: var(--blue-400); }
.service-card--dark .more { color: #fff; }
.service-card--dark .num { color: var(--blue-400); }

/* ---------- Split / feature blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4.4;
  box-shadow: var(--shadow-lg);
}
.split__body h2 { margin-bottom: 20px; }
.split__body .lead { margin-bottom: 26px; }

.feature-list { display: grid; gap: 16px; margin: 8px 0 30px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  background: rgba(247,119,30,0.14); color: var(--blue-700);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list b { font-family: var(--font-display); font-weight: 700; }
.feature-list span { color: var(--ink-2); font-size: 0.96rem; }

/* Media "photo slot" — placeholder scene */
.media-slot {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy-700), var(--navy));
  display: grid; place-items: center;
}
.media-slot .note {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3); padding: 5px 10px; border-radius: 6px;
}

/* Echte foto's in de media-slots */
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual img.scene { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { /* leesbaarheid badge over foto */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(7,23,38,0.55) 100%);
  pointer-events: none;
}
.hero-visual .badge { z-index: 2; }

/* ---------- Fleet ---------- */
.fleet-band { background: var(--navy); color: #fff; }
.fleet-band h2, .fleet-band h3 { color: #fff; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.truck-card {
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.truck-card:hover { transform: translateY(-6px); border-color: rgba(247,119,30,0.5); }
.truck-card .pic {
  aspect-ratio: 16/11; position: relative;
  background: linear-gradient(160deg, #12354f, var(--navy-800));
  display: grid; place-items: center;
}
.truck-card .pic svg { width: 74%; color: rgba(255,255,255,0.9); }
.truck-card .info { padding: 18px 20px 22px; }
.truck-card .info .tag { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-400); }
.truck-card .info h4 { color: #fff; font-size: 1.2rem; margin: 6px 0 4px; }
.truck-card .info p { color: var(--muted-dark); font-size: 0.88rem; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.stat { text-align: center; padding: 20px; }
.stat .num {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.1rem, 3.6vw, 2.9rem); line-height: 1;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.stat .lbl { display: block; margin-top: 10px; font-weight: 600; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.fleet-band .stat .lbl, .cta-band .stat .lbl { color: var(--muted-dark); }

/* ---------- Sustainability highlight ---------- */
.eco-band {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(247,119,30,0.14), transparent 55%),
    var(--paper-2);
}
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.eco-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
}
.eco-card .ico { width: 50px; height: 50px; border-radius: 14px; background: rgba(247,119,30,0.12); color: var(--blue-700); display: grid; place-items: center; margin-bottom: 18px; }
.eco-card .ico svg { width: 26px; height: 26px; }
.eco-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.eco-card p { color: var(--ink-2); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink);
}
.faq-q .pm { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform .3s; }
.faq-item.open .pm { background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 4px 26px; color: var(--ink-2); max-width: 680px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--paper-2); overflow: hidden; }
.cta-band::before { content: none; }
.cta-inner {
  position: relative; z-index: 2; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(38px, 5.5vw, 74px);
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(247,119,30,.36), transparent 52%),
    linear-gradient(100deg, var(--navy) 0%, rgba(35,36,43,.92) 50%, rgba(35,36,43,.60) 100%),
    url('../assets/svc-ftl-hero.jpg') right center / cover no-repeat;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 44px; align-items: center;
}
.cta-inner::after {
  content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-700));
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 2.9vw, 2.4rem); text-transform: uppercase; }
.cta-band p { color: #dcd9d5; margin-top: 16px; max-width: 480px; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 26px; }
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: #fff; }
.cta-trust svg { width: 18px; height: 18px; color: var(--blue-400); flex: none; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-actions .btn { justify-content: center; box-shadow: var(--shadow-blue); }
.cta-phone { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(10,10,12,.5); backdrop-filter: blur(6px); }
.cta-phone .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--blue); color: #1a1206; display: grid; place-items: center; flex: none; }
.cta-phone .ico svg { width: 22px; height: 22px; }
.cta-phone .lbl { font-size: 0.78rem; color: var(--muted-dark); text-transform: uppercase; letter-spacing: 0.1em; }
.cta-phone .val { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: radial-gradient(110% 120% at 85% -20%, var(--navy-700), var(--navy));
  color: #fff;
  padding: calc(var(--header-h) + 64px) 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(80% 100% at 80% 0%, #000, transparent 75%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; z-index: 0; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); text-transform: uppercase; margin: 18px 0 18px; }
.page-hero .lead { color: var(--muted-dark); max-width: 620px; }
.crumbs { display: flex; gap: 8px; font-size: 0.85rem; color: var(--muted-dark); }
.crumbs a:hover { color: var(--blue-400); }

/* ---------- Detailed service rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: clamp(40px,6vw,72px) 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: none; }
.svc-row--reverse .svc-row__media { order: 2; }
.svc-row__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; position: relative; box-shadow: var(--shadow-lg); }
.svc-row .big-num { font-family: var(--font-display); font-weight: 900; font-size: 3.4rem; color: var(--paper-3); line-height: 1; letter-spacing: -0.04em; }
.svc-row h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); text-transform: uppercase; margin: 6px 0 16px; }
.svc-row p { color: var(--ink-2); margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--font-display); font-weight: 600; font-size: 0.84rem; padding: 8px 15px; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); border: 1px solid var(--line); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member { border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.member .avatar { aspect-ratio: 4/3.4; background: linear-gradient(160deg, var(--navy-700), var(--navy)); display: grid; place-items: center; position: relative; }
.member .avatar .initials { font-family: var(--font-display); font-weight: 900; font-size: 3rem; color: rgba(255,255,255,0.16); }
.member .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.member .info { padding: 22px 24px 26px; }
.member .info h3 { font-size: 1.25rem; }
.member .info .role { color: var(--blue-700); font-weight: 700; font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.member .info p { color: var(--ink-2); font-size: 0.92rem; margin-top: 12px; }

/* ---------- Careers ---------- */
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.perk { padding: 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); }
.perk .ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(247,119,30,0.12); color: var(--blue-700); display: grid; place-items: center; margin-bottom: 16px; }
.perk .ico svg { width: 24px; height: 24px; }
.perk h3 { font-size: 1.15rem; margin-bottom: 6px; }
.perk p { color: var(--ink-2); font-size: 0.94rem; }

.vacancy { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: border-color .3s, box-shadow .3s, transform .3s; }
.vacancy + .vacancy { margin-top: 16px; }
.vacancy:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateX(4px); }
.vacancy__meta { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.vacancy h3 { font-size: 1.4rem; text-transform: uppercase; }
.vacancy .tag { font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: box-shadow .3s, transform .3s; }
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-card .ico { flex: none; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(150deg, var(--blue), var(--blue-700)); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-blue); }
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card .lbl { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--muted); }
.contact-card .val { font-size: 1.12rem; font-weight: 600; margin-top: 4px; }
.contact-card .val:hover { color: var(--blue-700); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper-2); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(247,119,30,0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.form-success { display: none; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(247,119,30,0.10); color: var(--blue-700); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #fff; padding: 76px 0 30px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand .brand-name, .footer-brand .brand-sub { color: #fff; }
.footer-brand p { color: var(--muted-dark); margin-top: 18px; max-width: 300px; font-size: 0.95rem; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue-400); margin-bottom: 20px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: var(--muted-dark); padding: 6px 0; font-size: 0.96rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s, border-color .25s; }
.footer-social a:hover { background: var(--blue); color: #04121d; transform: translateY(-3px); border-color: var(--blue); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-dark); font-size: 0.86rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split, .svc-row, .contact-grid, .cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media, .svc-row--reverse .svc-row__media { order: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .eco-grid, .team-grid, .perks-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .usp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .vacancy { flex-direction: column; align-items: flex-start; }
  .hero-visual { max-width: 100%; }
}

/* =====================================================================
   AWARD-LEVEL + FUNNEL COMPONENTEN (v2)
   ===================================================================== */

/* ---------- Grain / textuur overlay (globaal) ---------- */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Scroll-progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue-700), var(--blue), var(--blue-400));
  z-index: 200; transition: width .12s linear;
}

/* ---------- Sticky CTA-dock ---------- */
/* Offerte/Bel-dock: alleen op mobiel (op desktop uit) */
.cta-dock {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  display: none; gap: 10px; align-items: center;
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.cta-dock.show { opacity: 1; transform: none; pointer-events: auto; }
.dock-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  padding: 13px 20px; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform .25s, box-shadow .25s;
}
.dock-btn svg { width: 17px; height: 17px; }
.dock-btn--primary { background: var(--blue); color: #1a1206; }
.dock-btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.dock-btn--call {
  background: rgba(20,20,23,.9); color: #fff; backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
}
.dock-btn--call:hover { transform: translateY(-3px); }
@media (max-width: 640px) {
  .cta-dock {
    display: flex;
    right: 0; left: 0; bottom: 0; gap: 0;
    background: rgba(20,20,23,.94); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-dark); padding: 10px 12px;
  }
  .cta-dock .dock-btn { flex: 1; justify-content: center; border-radius: 12px; box-shadow: none; }
  .cta-dock.show { transform: none; }
}

/* Sticky WhatsApp-knop (rechtsonder, alle schermen) */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 160;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.42);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse { to { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }
.wa-fab svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.wa-fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 38px rgba(37,211,102,.55); }
.wa-fab .wa-tip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
  white-space: nowrap; background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.wa-fab:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 640px) {
  .wa-fab { right: 16px; bottom: 88px; width: 54px; height: 54px; }
  .wa-fab svg { width: 27px; height: 27px; }
  .wa-fab .wa-tip { display: none; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

/* ---------- Landing hero (dienst-pagina) ---------- */
.lhero {
  position: relative; overflow: hidden; color: #fff;
  min-height: 86vh; display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 60px;
}
.lhero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.lhero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,16,.55) 0%, rgba(14,14,16,.25) 35%, rgba(14,14,16,.9) 100%),
    linear-gradient(90deg, rgba(14,14,16,.6) 0%, transparent 55%);
}
.lhero .container { position: relative; z-index: 2; }
.lhero__num {
  font-family: var(--font-display); font-weight: 900; line-height: .8;
  font-size: clamp(3rem, 7.5vw, 6rem);
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.22);
  letter-spacing: -.04em; margin-bottom: -.12em; user-select: none;
}
.lhero h1 {
  color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  text-transform: uppercase; letter-spacing: -.03em; line-height: 1.0; margin: 10px 0 20px;
}
.lhero .lead { color: #e6e2df; max-width: 560px; }
.lhero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.lhero__facts { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.lhero__fact .n { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; color: var(--blue-400); line-height: 1; }
.lhero__fact .l { display: block; font-size: .82rem; color: #c9c4c0; text-transform: uppercase; letter-spacing: .08em; margin-top: 5px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-800); color: #fff; border-bottom: 1px solid var(--line-dark); }
.trustbar__grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 24px; height: 24px; color: var(--blue); flex: none; }
.trust-item b { font-family: var(--font-display); font-weight: 700; display: block; font-size: .98rem; }
.trust-item span { color: var(--muted-dark); font-size: .82rem; }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit {
  padding: 32px 28px; border-radius: var(--radius); background: var(--paper);
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.benefit:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit .bn { font-family: var(--font-display); font-weight: 800; font-size: .8rem; color: var(--blue-700); letter-spacing: .1em; }
.benefit .ico { width: 50px; height: 50px; border-radius: 14px; background: rgba(247,119,30,.12); color: var(--blue-700); display: grid; place-items: center; margin: 14px 0 16px; transition: background .35s, color .35s; }
.benefit:hover .ico { background: var(--blue); color: #fff; }
.benefit .ico svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.22rem; margin-bottom: 8px; }
.benefit p { color: var(--ink-2); font-size: .96rem; }

/* ---------- Proces-timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 20px; }
.tl-step { position: relative; padding: 0 24px; }
.tl-step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: 50%; right: -50%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 16px); opacity: .5;
}
.tl-step .dot {
  width: 54px; height: 54px; border-radius: 50%; position: relative; z-index: 1;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.2rem;
  box-shadow: 0 0 0 6px var(--paper);
}
.tl-step h3 { font-size: 1.12rem; margin: 20px 0 8px; text-transform: uppercase; letter-spacing: -.01em; }
.tl-step p { color: var(--ink-2); font-size: .93rem; }
.timeline--on-light .tl-step .dot { box-shadow: 0 0 0 6px var(--paper-2); }

/* ---------- Split met echte foto (dienst) ---------- */
.svc-intro .split__media { aspect-ratio: 5/4; }

/* ---------- Related services ---------- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
}
.related-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.related-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(14,14,16,.9)); }
.related-card:hover img { transform: scale(1.08); }
.related-card .rc-body { padding: 24px; width: 100%; }
.related-card h3 { color: #fff; font-size: 1.3rem; text-transform: uppercase; }
.related-card .rc-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--blue-400); }
.related-card .rc-more svg { width: 16px; height: 16px; transition: transform .25s; }
.related-card:hover .rc-more svg { transform: translateX(5px); }

/* ---------- Section index-nummer (editorial) ---------- */
.sec-index { font-family: var(--font-display); font-weight: 900; font-size: .8rem; letter-spacing: .18em; color: var(--blue-700); text-transform: uppercase; }

/* ---------- Reveal-image (scale) ---------- */
.reveal-img { clip-path: inset(0 0 0 0); }
.reveal-img img { transform: scale(1.12); transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.reveal-img.in img { transform: scale(1); }

/* ---------- Responsive v2 ---------- */
@media (max-width: 1080px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .tl-step:nth-child(2)::after { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .lhero { min-height: 78vh; }
  .benefits-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; row-gap: 28px; }
  .tl-step::after { display: none !important; }
  .related-grid { grid-template-columns: 1fr; }
  .trustbar__grid { gap: 14px; }
  .trust-item { width: 45%; }
}

/* =====================================================================
   MEGA-MENU (Diensten) — via JS geïnjecteerd op elke pagina
   ===================================================================== */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-caret { display: inline-block; vertical-align: middle; width: 13px; height: 13px; margin: -2px 0 0 5px; transition: transform .3s; }
.nav-item.has-mega:hover .nav-caret { transform: rotate(180deg); }
/* onzichtbare hover-brug tussen link en paneel */
.nav-item.has-mega::after { content: ""; position: absolute; top: 100%; left: -24px; right: -24px; height: 20px; }

.mega {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 660px; max-width: 92vw;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 130;
}
.nav-item.has-mega:hover .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(4px); }
.mega-link { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: var(--radius); transition: background .2s; }
.mega-link:hover { background: var(--paper-2); }
.mega-link .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(247,119,30,.12); color: var(--blue-700); display: grid; place-items: center; transition: background .25s, color .25s; }
.mega-link:hover .ico { background: var(--blue); color: #fff; }
.mega-link .ico svg { width: 24px; height: 24px; }
.mega-tx { display: flex; flex-direction: column; }
.mega-link .t { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.mega-link .d { font-size: .84rem; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.mega-all { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 4px; padding: 13px; border-radius: var(--radius); background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .9rem; transition: background .25s, color .25s; }
.mega-all svg { width: 16px; height: 16px; transition: transform .25s; }
.mega-all:hover { background: var(--blue); color: #04121d; }
.mega-all:hover svg { transform: translateX(4px); }

/* Mobiel: sub-items onder Diensten */
.mobile-nav .mn-sub {
  display: block !important; font-family: var(--font-body) !important; font-weight: 600 !important;
  font-size: 1.02rem !important; text-transform: none !important; letter-spacing: 0 !important;
  color: var(--muted-dark) !important; padding: 11px 0 11px 20px !important;
  border-bottom: 1px solid var(--line-dark) !important;
}
.mobile-nav .mn-sub::before { content: "→"; color: var(--blue); margin-right: 10px; }
.mobile-nav .mn-sub:hover { color: #fff !important; }

/* Wagenpark-blok op donkere band: leesbare tekst + merk-chips */
.fleet-band .lead { color: var(--muted-dark); }
.fleet-band .feature-list b { color: #fff; }
.fleet-band .feature-list span { color: var(--muted-dark); }
.fleet-band .split__media { aspect-ratio: 5/4; }
.brand-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; }
.brand-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.03); font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .04em; color: #fff; }
.brand-chip svg { width: 16px; height: 16px; color: var(--blue); }

/* Contact-funnel: reassurance + vervolgstappen */
.form-reassure { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 2px 0 22px; }
.form-reassure span { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.form-reassure svg { width: 15px; height: 15px; color: var(--blue-700); flex: none; }
.after-steps { margin-top: 34px; display: grid; gap: 16px; }
.after-steps .lbl-h { font-family: var(--font-display); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.after-step { display: flex; gap: 14px; align-items: flex-start; }
.after-step .n { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: #1a1206; font-family: var(--font-display); font-weight: 800; font-size: .92rem; display: grid; place-items: center; }
.after-step b { font-family: var(--font-display); font-weight: 700; }
.after-step p { color: var(--ink-2); font-size: .9rem; margin-top: 1px; }

/* Home-hero: dienst-hero-stijl, iets hoger */
.lhero--home { min-height: 90vh; }
.lhero--home .lhero__facts { gap: 20px 34px; }
@media (max-width: 560px) { .lhero--home { min-height: 82vh; } }

/* Bestand-upload in formulieren */
.field input[type="file"] { padding: 12px 16px; font-size: .9rem; cursor: pointer; color: var(--ink-2); }
.field input[type="file"]::file-selector-button { margin-right: 12px; padding: 8px 14px; border-radius: 8px; border: none; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .82rem; cursor: pointer; }
.field input[type="file"]::file-selector-button:hover { background: var(--blue); color: #1a1206; }

/* =====================================================================
   CONTACT FORM 7 — aansluiten op de huisstijl (WordPress)
   ===================================================================== */
.form-card .wpcf7-form-control-wrap { display: block; }
.form-card input[type="submit"] { width: 100%; }
.wpcf7-response-output { margin: 10px 0 0 !important; padding: 14px 18px !important; border-radius: var(--radius-sm); border: 1px solid var(--line) !important; font-weight: 600; font-size: .92rem; }
.wpcf7 form.sent .wpcf7-response-output { background: rgba(247,119,30,.10); border-color: transparent !important; color: var(--blue-700); }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { background: #fdecec; border-color: transparent !important; color: #b3261e; }
.wpcf7-not-valid-tip { color: #b3261e; font-size: .82rem; margin-top: 6px; display: block; }
.wpcf7-spinner { margin-left: 12px; }
