/* ============================================================
   wboost.nl — design system
   Dark performance-look · Termina · ijsblauw #56C9EA
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Thin.otf') format('opentype'); font-weight: 100; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-ExtraLight.otf') format('opentype'); font-weight: 200; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Light.otf') format('opentype'); font-weight: 300; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Medium.otf') format('opentype'); font-weight: 500; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Demi.otf') format('opentype'); font-weight: 600; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Heavy.otf') format('opentype'); font-weight: 800; font-display: swap; unicode-range: U+0020-007E, U+20AC; }
@font-face { font-family: 'Termina'; src: url('../fonts/TerminaTest-Black.otf') format('opentype'); font-weight: 900; font-display: swap; unicode-range: U+0020-007E, U+20AC; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0c0e;
  --bg-2: #0e1114;
  --bg-3: #13171b;
  --ink: #f2f6f8;
  --muted: #d6dee4;
  --faint: #9aa6af;
  --blue: #56c9ea;
  --blue-deep: #2fa8d0;
  --blue-dim: rgba(86, 201, 234, 0.12);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --font: 'Termina', 'Avenir Next', 'Helvetica Neue', sans-serif;
  --pad: clamp(20px, 5vw, 72px);
  --maxw: 1360px;
  --skew: -12deg;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 200;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #06232e; }

/* grain overlay */
body::after {
  content: '';
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 2000;
  opacity: 0.5;
  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.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(4%, 2%); }
}

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--blue);
}
.kicker::before {
  content: ''; width: 22px; height: 10px;
  background: var(--blue);
  clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
}
h1, h2, h3 { font-weight: 600; line-height: 1.08; text-transform: uppercase; letter-spacing: 0.01em; }
.h-display { font-size: clamp(34px, 5.6vw, 84px); font-weight: 800; }
.h-xl { font-size: clamp(28px, 4vw, 58px); }
.h-lg { font-size: clamp(22px, 2.8vw, 38px); }
.h-md { font-size: clamp(16px, 1.6vw, 21px); }
.blue { color: var(--blue); }
.outline-txt {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 246, 248, 0.85);
}
.lead { font-size: clamp(15px, 1.4vw, 18px); color: var(--muted); font-weight: 300; max-width: 62ch; }
p { color: var(--muted); }
p strong, .lead strong { color: var(--ink); font-weight: 500; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { position: relative; padding: clamp(72px, 10vw, 150px) 0; }
.sect-head { margin-bottom: clamp(36px, 5vw, 72px); display: flex; flex-direction: column; gap: 18px; }
.sect-head .h-xl { max-width: 22ch; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 12, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: none;
}
.logo { position: relative; z-index: 1100; }
.logo img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 6px 0;
  transition: color 0.25s;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--blue); transition: width 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  transform: skewX(var(--skew));
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { color: #06232e; padding: 13px 24px; }
.nav .btn:hover { color: #0a0c0e; }
.nav .btn::after { display: none; }
/* ghost-knop in het menu: lichte tekst en duidelijke rand op donker */
.nav .btn--ghost { color: var(--ink); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32); }
.nav .btn--ghost:hover { color: #0a0c0e; }
.lang-switch {
  display: inline-flex; align-items: center; flex: 0 0 auto; gap: 3px;
  padding: 4px 6px; border: 1px solid var(--line-strong);
  background: rgba(10, 12, 14, 0.62);
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
.lang-switch span { color: var(--line-strong); font-size: 9px; }
.lang-switch button {
  border: 0; background: none; color: var(--muted); cursor: pointer;
  padding: 3px 2px; font-family: var(--font); font-size: 8.5px;
  font-weight: 700; letter-spacing: 0.08em; line-height: 1;
  transition: color 0.2s;
}
.lang-switch button:hover, .lang-switch button.active { color: var(--blue); }
.lang-switch button:focus-visible { outline: 1px solid var(--blue); outline-offset: 2px; }

/* ---------- Megamenu ---------- */
.nav-item { display: flex; align-items: center; height: 76px; }
.sub-toggle { display: none; }
.site-header:has(.nav-item:hover) {
  background: rgba(10, 12, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(12, 15, 18, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s;
  z-index: 999;
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px var(--pad) 46px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 60px);
}
.mega-col h6 { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 14px; }
.mega-col a:not(.btn) { display: block; padding: 12px 0; border-top: 1px solid var(--line); }
.mega-col a::after { display: none; }
.mega-col a b { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); transition: color 0.25s; }
.mega-col a:not(.btn) span { display: block; font-size: 11.5px; color: var(--muted); letter-spacing: 0; text-transform: none; margin-top: 3px; }
.mega-col a:hover b { color: var(--blue); }
.mega-aside p { font-size: 12.5px; color: var(--muted); margin: 4px 0 20px; letter-spacing: 0; text-transform: none; }
.mega-aside .btn { padding: 14px 24px; }
.mega-review { display: flex; align-items: center; gap: 10px; margin: 2px 0 22px; }
.mega-review img { width: 20px; height: 20px; }
.mega-review b { font-size: 16px; font-weight: 800; color: var(--ink); }
.mega-review .gstars { font-size: 12px; letter-spacing: 2px; }
.mega-review span:last-child { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.mega-stats { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 2px 0 22px; }
.mega-stats span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.mega-stats b { color: var(--blue); font-weight: 700; font-size: 13px; margin-right: 4px; letter-spacing: 0; }

/* CTA button */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #06232e; background: var(--blue);
  padding: 16px 28px; border: 0; cursor: pointer;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  position: relative; overflow: hidden;
  transition: color 0.3s;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: var(--ink);
  transform: translateX(-101%) skewX(var(--skew)) scaleX(1.2);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}
.btn:hover::before { transform: translateX(0) skewX(0) scaleX(1.2); }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn:hover { color: #0a0c0e; }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn--ghost:hover { color: #0a0c0e; }
.btn--lg { padding: 20px 36px; font-size: 12px; }
.arrow { width: 16px; height: 10px; }

/* hamburger */
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1100; align-items: center; gap: 10px; }
.burger .flits { width: 26px; height: 26px; border-radius: 6px; animation: flitsflicker 4.5s infinite; }
.burger .bt-menu, .burger .bt-sluit {
  font-family: var(--font); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink);
}
.burger .bt-sluit { display: none; }
.burger.open .bt-menu { display: none; }
.burger.open .bt-sluit { display: inline; }
.burger.open .flits { animation-duration: 1.6s; }
@keyframes flitsflicker {
  0%, 78%, 100% { opacity: 1; filter: drop-shadow(0 0 5px rgba(86, 201, 234, 0.45)); }
  81% { opacity: 0.35; }
  83% { opacity: 1; }
  86% { opacity: 0.45; }
  90% { opacity: 1; filter: drop-shadow(0 0 12px rgba(86, 201, 234, 0.95)); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(48px, 7vh, 90px);
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 65% 30%;
  filter: grayscale(0.35) contrast(1.06) brightness(0.6);
}
/* zware overlay op de foto, onder de fx-canvas */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 4%, rgba(10, 12, 14, 0.55) 42%, rgba(10, 12, 14, 0.35) 100%),
    linear-gradient(100deg, var(--bg) 0%, rgba(10, 12, 14, 0.6) 38%, rgba(10, 12, 14, 0.1) 75%);
}
/* lichte sluier boven de fx-canvas: curve ligt achter de content maar blijft zichtbaar */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(10, 12, 14, 0.75) 6%, rgba(10, 12, 14, 0.2) 34%, rgba(10, 12, 14, 0) 55%),
    linear-gradient(100deg, rgba(10, 12, 14, 0.5) 0%, rgba(10, 12, 14, 0.24) 38%, rgba(10, 12, 14, 0) 70%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(1000px 480px at 78% 22%, rgba(86, 201, 234, 0.16), transparent 65%);
}
.hero .wrap { width: 100%; }
.hero h1 { margin: 26px 0 30px; max-width: 15ch; }
.hero .lead { margin-bottom: 44px; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

/* staggered load-in */
.hero [data-stagger] { opacity: 0; transform: translateY(34px); animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero [data-stagger='1'] { animation-delay: 0.1s; }
.hero [data-stagger='2'] { animation-delay: 0.22s; }
.hero [data-stagger='3'] { animation-delay: 0.36s; }
.hero [data-stagger='4'] { animation-delay: 0.5s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.scroll-hint {
  position: absolute; right: var(--pad); bottom: 40px;
  writing-mode: vertical-rl; font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--faint);
  display: flex; align-items: center; gap: 14px;
}
.scroll-hint::after {
  content: ''; width: 1px; height: 54px;
  background: linear-gradient(var(--blue), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Stats strip ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(32px, 4vw, 56px) clamp(16px, 2.4vw, 40px);
  border-left: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.stat:first-child { border-left: 0; }
.stat::before {
  content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 3px;
  background: var(--blue); transform: skewX(var(--skew));
}
.stat-num {
  font-size: clamp(30px, 3.6vw, 56px); font-weight: 800; line-height: 1;
  letter-spacing: -0.01em; display: flex; align-items: baseline; gap: 2px;
}
.stat-num .unit { font-size: 0.42em; font-weight: 600; color: var(--blue); }
.stat-label { margin-top: 14px; font-size: 10px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--bg); position: relative; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 34px; padding: 0 34px;
  font-size: clamp(15px, 1.6vw, 20px); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--faint); white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--ink); }
.marquee-item::after {
  content: ''; width: 12px; height: 16px; flex: none;
  background: var(--blue); opacity: 0.55;
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc {
  background: var(--bg); padding: clamp(30px, 3.4vw, 52px);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px; min-height: 420px;
  transition: background 0.4s;
}
.svc:hover { background: var(--bg-3); }
.svc::after {
  content: ''; position: absolute; right: -60px; top: -40px;
  width: 190px; height: 260px;
  background: var(--blue-dim);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.45s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc:hover::after { opacity: 1; transform: translateX(0); }
.svc-idx {
  font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.2em;
}
.svc h3 { font-size: clamp(17px, 1.7vw, 24px); }
.svc p { font-size: 13.5px; }
.svc-facts { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.svc-fact { display: flex; gap: 12px; align-items: baseline; font-size: 12px; color: var(--muted); }
.svc-fact b { color: var(--ink); font-weight: 600; font-size: 15px; white-space: nowrap; }
.svc-link {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue);
}
.svc-link svg { transition: transform 0.3s; }
.svc:hover .svc-link svg { transform: translateX(6px); }

/* ---------- Full service stack ---------- */
.stack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stack-item {
  background: var(--bg); padding: 26px 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.stack-item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 26px; height: 3px;
  background: var(--blue); transform: skewX(var(--skew)) translateX(-40px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.stack-item:hover { background: var(--bg-3); }
.stack-item:hover::before { transform: skewX(var(--skew)) translateX(0); }
.stack-item b { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.stack-item span { font-size: 11.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Tech & partners strip ---------- */
.tech-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: clamp(36px, 4vw, 56px) 0; }
.tech-strip .wrap { display: flex; flex-direction: column; gap: 26px; }
.tech-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(20px, 2.6vw, 40px) clamp(16px, 2vw, 32px); align-items: center; }
.tech-item { display: inline-flex; align-items: center; gap: 12px; opacity: 0.75; transition: opacity 0.3s; }
.tech-item:hover { opacity: 1; }
.tech-item img { height: 24px; width: 24px; }
.tech-item span { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); }
.partner-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 2px; }
.partner-badge {
  display: inline-flex; align-items: center; gap: 12px;
  width: auto; padding: 7px 0;
  opacity: 0.75;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.partner-badge:hover { transform: translateY(-2px); opacity: 1; }
.partner-badge img { display: block; width: 24px; height: 24px; flex: none; }
.partner-badge span { display: flex; flex-direction: column; gap: 2px; }
.partner-badge b {
  color: var(--ink); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; line-height: 1.1; text-transform: uppercase;
}
.partner-badge small {
  color: var(--blue); font-size: 8px; font-weight: 500;
  letter-spacing: 0.2em; line-height: 1.1; text-transform: uppercase;
}
.tech-note { font-size: 12px; color: var(--muted); }
.tech-note b { color: var(--ink); font-weight: 500; }

/* ---------- Edge / unfair advantages ---------- */
.edge { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.edge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.edge-card {
  border: 1px solid var(--line); padding: clamp(26px, 3vw, 44px);
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--bg); position: relative; overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}
.edge-card:hover { border-color: rgba(86, 201, 234, 0.45); transform: translateY(-4px); }
.edge-num {
  font-size: clamp(34px, 3.4vw, 52px); font-weight: 800; line-height: 0.9;
  color: transparent; -webkit-text-stroke: 1px var(--blue); flex: none;
}
.edge-card h3 { font-size: 15px; margin-bottom: 10px; }
.edge-card p { font-size: 13px; }

/* ---------- Cases ---------- */
.case-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 64px);
  align-items: center; padding: clamp(40px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
}
.case-row:last-child { border-bottom: 1px solid var(--line); }
.case-tag { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 14px; }
.case-row h3 { font-size: clamp(20px, 2.4vw, 34px); margin-bottom: 16px; }
.case-row p { font-size: 13.5px; max-width: 52ch; }
.case-metrics { display: flex; gap: clamp(24px, 3vw, 52px); margin-top: 28px; flex-wrap: wrap; }
.cm b { display: block; font-size: clamp(24px, 2.6vw, 40px); font-weight: 800; color: var(--blue); line-height: 1; }
.cm span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 8px; }
.case-visual {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  background: var(--bg-3);
}
.case-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) contrast(1.05) brightness(0.85); transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s; }
.case-row:hover .case-visual img { transform: scale(1.05); filter: grayscale(0) contrast(1.02) brightness(0.95); }
.case-visual--shot { aspect-ratio: auto; clip-path: none; border: 1px solid var(--line); background: var(--bg-2); padding: 10px; display: flex; flex-direction: column; gap: 10px; }
.case-visual--shot img { filter: none; width: 100%; height: auto; max-height: 540px; object-fit: contain; }
.case-row:hover .case-visual--shot img { transform: none; filter: none; }
.case-visual .cv-word {
  position: absolute; inset: auto 0 0 0; padding: 18px 26px;
  background: linear-gradient(transparent, rgba(6, 10, 12, 0.9));
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: clamp(16px, 1.8vw, 24px);
  color: var(--ink);
}

/* ---------- Quotes ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.quote { background: var(--bg); padding: clamp(28px, 3vw, 46px); display: flex; flex-direction: column; gap: 22px; }
.quote-mark { width: 30px; height: 24px; background: var(--blue); clip-path: polygon(30% 0, 65% 0, 45% 100%, 0 100%, 20% 45%, 0 45%, 22% 0); opacity: 0.9; }
.quote p { font-size: 14px; color: var(--ink); font-weight: 300; line-height: 1.8; }
.quote footer { margin-top: auto; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.quote footer b { color: var(--blue); display: block; font-weight: 600; margin-bottom: 4px; }

/* ---------- Google reviews ---------- */
.greview-bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 6px;
}
.greview-bar .glogo { width: 26px; height: 26px; flex: none; }
.greview-bar b { font-size: 22px; font-weight: 800; }
.gstars { color: #fbbc04; font-size: 15px; letter-spacing: 2px; }
.gcount { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.greview-bar .btn { margin-left: 10px; }
.quote .gstars { font-size: 13px; }

/* ---------- W-Invest: ventures & software ---------- */
.venture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.venture {
  background: var(--bg); padding: clamp(26px, 3vw, 42px);
  display: flex; flex-direction: column; gap: 14px; min-height: 250px;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.venture:hover { background: var(--bg-3); }
.venture::before {
  content: attr(data-mono);
  position: absolute; top: 18px; right: 22px;
  font-size: 40px; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(86, 201, 234, 0.28);
  transition: -webkit-text-stroke-color 0.35s;
}
.venture:hover::before { -webkit-text-stroke-color: var(--blue); }
.venture-tag { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.venture h3 { font-size: 17px; }
.venture p { font-size: 12.5px; }
.venture .svc-link { margin-top: auto; }
.soft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 32px); }
.soft-card {
  border: 1px solid var(--line); background: var(--bg-2);
  padding: clamp(28px, 3.4vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}
.soft-card:hover { border-color: rgba(86, 201, 234, 0.45); transform: translateY(-4px); }
.soft-card::after {
  content: ''; position: absolute; right: -50px; top: -40px;
  width: 170px; height: 240px; background: var(--blue-dim);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  opacity: 0.6;
}
.soft-logo { height: 34px; display: flex; align-items: center; }
.soft-logo img { height: 100%; width: auto; max-width: 260px; object-fit: contain; }
.soft-card p { font-size: 13px; position: relative; z-index: 1; }
.soft-url { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 600; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tm {
  background: var(--bg); padding: 30px 26px 26px; min-height: 170px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.tm:hover { background: var(--bg-3); }
.tm::before {
  content: attr(data-initials);
  position: absolute; top: 14px; right: 18px;
  font-size: 42px; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(86, 201, 234, 0.3);
  transition: -webkit-text-stroke-color 0.35s, transform 0.35s;
}
.tm:hover::before { -webkit-text-stroke-color: var(--blue); transform: translateY(-3px); }
.tm h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.tm span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.tm.tm--founder::after {
  content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 3px;
  background: var(--blue); transform: skewX(var(--skew));
}

/* photo band */
.photo-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.2vw, 18px); }
.photo-band figure { overflow: hidden; aspect-ratio: 3/4; clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); }
.photo-band figure:nth-child(2) { transform: translateY(clamp(16px, 2.6vw, 42px)); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) brightness(0.88); transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s; }
.photo-band figure:hover img { transform: scale(1.06); filter: grayscale(0) brightness(0.96); }

/* ---------- Levensloop timeline ---------- */
.tl-row {
  display: grid; grid-template-columns: minmax(120px, 0.5fr) 1.15fr 1fr;
  gap: clamp(24px, 3.5vw, 60px); align-items: center;
  padding: clamp(36px, 4.5vw, 68px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.timeline .tl-row:last-child { border-bottom: 1px solid var(--line); }
.tl-row::after {
  content: ''; position: absolute; top: -2px; left: 0; height: 3px; width: 0;
  background: var(--blue); transform: skewX(var(--skew));
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.tl-row.in-view::after { width: clamp(70px, 12vw, 190px); }
.tl-year {
  font-size: clamp(30px, 3.8vw, 60px); font-weight: 800; line-height: 0.95;
  color: transparent; -webkit-text-stroke: 1px var(--blue);
  display: flex; flex-direction: column;
}
.tl-year small {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blue); -webkit-text-stroke: 0; margin-bottom: 6px;
}
.tl-shots { position: relative; }
.tl-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1vw, 14px); }
.tl-gallery .tl-media:first-child,
.tl-gallery .tl-media:last-child:nth-child(even) { grid-column: 1 / -1; }
.tl-media {
  aspect-ratio: 16/10; overflow: hidden; position: relative;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  background: var(--bg-3);
}
.tl-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.45) brightness(0.85); transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s; }
.tl-row:hover .tl-media img { transform: scale(1.05); filter: grayscale(0) brightness(0.95); }
.tl-loc { display: block; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 14px; }
.tl-body h3 { font-size: clamp(17px, 1.9vw, 26px); margin-bottom: 14px; }
.tl-body p { font-size: 13.5px; max-width: 48ch; }
.timeline .tl-row:nth-child(even) .tl-shots { order: 2; }
.timeline .tl-row:nth-child(even) .tl-body { order: 1; }
.tl-tease {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
  font-size: clamp(22px, 2.6vw, 40px); font-weight: 900;
  text-transform: uppercase; line-height: 1.05; letter-spacing: 0.08em;
  color: transparent; -webkit-text-stroke: 1px rgba(242, 246, 248, 0.92);
  background: rgba(10, 12, 14, 0.28);
}
.tl-row--tease .tl-media img { filter: brightness(0.85); }
.tl-row--tease:hover .tl-media img { transform: none; filter: brightness(0.9); }
@media (max-width: 860px) {
  .tl-row { grid-template-columns: 1fr; gap: 22px; align-items: start; padding: 34px 0 42px; }
  .timeline .tl-row:nth-child(even) .tl-shots, .timeline .tl-row:nth-child(even) .tl-body { order: 0; }
  .tl-year { flex-direction: row; align-items: baseline; gap: 12px; }
}

/* ---------- Levensloop scrollytelling (desktop) ---------- */
.journey { display: none; }
.lv-scrolly .timeline { display: none; }
.lv-scrolly .journey { display: block; height: 560vh; position: relative; }
.journey-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.journey-slide {
  position: absolute; inset: 0;
  max-width: var(--maxw); margin: 0 auto;
  padding: 104px calc(var(--pad) + 16px) 48px calc(var(--pad) + 120px);
  display: grid; grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(32px, 4vw, 72px); align-items: center;
  opacity: 0; transform: translateY(80px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.journey-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.journey-slide.passed { transform: translateY(-80px); }
.journey-slide .tl-year { font-size: clamp(60px, 7.5vw, 130px); margin-bottom: 26px; }
.journey-slide .tl-year small { font-size: 12px; }
.journey-slide .tl-shots:has(.tl-media:only-child) { height: min(48vh, 440px); }
.journey-slide .tl-body h3 { font-size: clamp(22px, 2.2vw, 34px); }
.journey-slide .tl-body p { font-size: 14.5px; max-width: 44ch; }
.journey-slide .tl-shots { height: min(70vh, 640px); }
.journey-slide .tl-gallery { height: 100%; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
.journey-slide .tl-media { aspect-ratio: auto; height: 100%; min-height: 0; grid-column: auto; grid-row: auto; }
.journey-slide .tl-gallery .tl-media:first-child { grid-column: 1 / -1; grid-row: span 2; }
/* voortgangsrail */
.jr-rail {
  position: absolute; left: var(--pad); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 30px; align-items: flex-start; z-index: 3;
  padding: 8px 0;
}
.jr-line { position: absolute; left: 5px; top: 0; bottom: 0; width: 2px; background: var(--line-strong); }
.jr-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--blue); box-shadow: 0 0 12px rgba(86, 201, 234, 0.8); }
.jr-dot { display: inline-flex; align-items: center; gap: 14px; background: none; border: 0; cursor: pointer; padding: 0; position: relative; z-index: 1; font-family: var(--font); }
.jr-dot i { width: 12px; height: 12px; background: var(--bg); border: 2px solid var(--line-strong); transform: rotate(45deg); transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; }
.jr-dot span { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint); font-weight: 500; transition: color 0.3s; white-space: nowrap; }
.jr-dot.active i { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 10px rgba(86, 201, 234, 0.7); }
.jr-dot.active span { color: var(--ink); }

/* ---------- Nieuws overzicht ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.news-card { border: 1px solid var(--line); background: var(--bg-2); display: flex; flex-direction: column; transition: border-color 0.35s, transform 0.35s; }
.news-card:hover { border-color: rgba(86, 201, 234, 0.45); transform: translateY(-4px); }
.nc-img { aspect-ratio: 16/9; overflow: hidden; }
.nc-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) brightness(0.85); transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s; }
.news-card:hover .nc-img img { transform: scale(1.05); filter: grayscale(0) brightness(0.95); }
.nc-body { padding: 24px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.nc-meta { display: flex; gap: 16px; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.nc-meta b { color: var(--blue); font-weight: 600; }
.news-card h3 { font-size: 16px; line-height: 1.35; }
.news-card p { font-size: 12.5px; }
.nc-body .svc-link { margin-top: auto; padding-top: 14px; }
@media (max-width: 1080px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- Nieuws artikel ---------- */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint); margin-top: 26px; }
.article-meta b { color: var(--blue); font-weight: 600; }
.article-hero-img { aspect-ratio: 16/8; overflow: hidden; clip-path: polygon(2.5% 0, 100% 0, 97.5% 100%, 0 100%); margin: clamp(30px, 4vw, 54px) 0; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) brightness(0.9); }
.article-body h2 { font-size: clamp(19px, 2vw, 27px); margin: 46px 0 18px; }
.article-body p { font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.article-body ul { list-style: none; margin: 0 0 22px; }
.article-body li { position: relative; padding-left: 26px; margin-bottom: 12px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.article-body li::before { content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 13px; background: var(--blue); clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%); }
.article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-body b, .article-body strong { color: var(--ink); font-weight: 500; }
.article-note { border: 1px solid var(--line); border-left: 3px solid var(--blue); background: var(--bg-2); padding: 18px 24px; font-size: 13px; color: var(--muted); margin: 0 0 24px; }
.article-note b, .article-note strong { color: var(--ink); }
.article-cta { border: 1px solid var(--line); background: var(--bg-2); padding: clamp(26px, 3vw, 40px); margin-top: 50px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.article-cta h3 { font-size: 17px; }
.article-cta p { font-size: 13.5px; margin: 0; }
.article-footer { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px; font-size: 12.5px; color: var(--muted); font-style: italic; }

/* founders-foto (over-ons) */
.founders-photo { overflow: hidden; aspect-ratio: 21/10; clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%); }
.founders-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; filter: grayscale(0.4) brightness(0.88); transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s; }
.founders-photo:hover img { transform: scale(1.04); filter: grayscale(0) brightness(0.95); }
@media (max-width: 700px) { .founders-photo { aspect-ratio: 4/3; } }

/* ---------- Werkwijze / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 30px); counter-reset: step; }
.step { border-top: 2px solid var(--line-strong); padding-top: 24px; position: relative; }
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; color: var(--blue);
  display: block; margin-bottom: 16px;
}
.step::after {
  content: ''; position: absolute; top: -2px; left: 0; height: 2px; width: 0;
  background: var(--blue); transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.step.in-view::after { width: 100%; }
.step h4 { font-size: 14px; text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.step p { font-size: 12.5px; }

/* ---------- CTA banner ---------- */
.cta-banner { overflow: hidden; position: relative; background: var(--bg-2); border-top: 1px solid var(--line); }
.cta-banner::before {
  content: ''; position: absolute; right: -8%; top: -30%;
  width: 46%; height: 160%;
  background: linear-gradient(160deg, rgba(86, 201, 234, 0.14), transparent 70%);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}
.cta-banner .wrap { display: flex; flex-direction: column; gap: 30px; align-items: flex-start; position: relative; }
.cta-banner .h-xl { max-width: 18ch; }

/* footer socials */
.f-social { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; margin-right: 22px; opacity: 0.8; transition: opacity 0.25s; }
.f-social:hover { opacity: 1; }
.f-social img { width: 18px; height: 18px; }
.f-social span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }

/* hero fx canvas */
.hero-fx { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* backstage video */
.bts-grid { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(32px, 5vw, 90px); align-items: center; }
.bts-video { aspect-ratio: 9/16; overflow: hidden; clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); background: var(--bg-3); }
.bts-video video { width: 100%; height: 100%; object-fit: cover; }
.bts-grid .lead { margin: 22px 0 30px; }
@media (max-width: 860px) { .bts-grid { grid-template-columns: 1fr; } .bts-video { max-width: 320px; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); padding: clamp(48px, 6vw, 84px) 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 60px); margin-bottom: 56px; }
.site-footer .logo img { height: 34px; margin-bottom: 20px; }
.site-footer p { font-size: 12.5px; }
.f-col h5 { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 20px; }
.f-col a, .f-col span { display: block; font-size: 12.5px; color: var(--muted); padding: 5px 0; transition: color 0.25s; }
.f-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: clamp(150px, 20vh, 220px) 0 clamp(48px, 6vw, 80px); position: relative; overflow: hidden; }
.page-hero h1 { margin-top: 24px; max-width: 16ch; }
.page-hero .lead { margin-top: 26px; }
.page-hero::before {
  content: ''; position: absolute; top: -20%; right: -6%;
  width: 40%; height: 150%;
  background: linear-gradient(160deg, rgba(86, 201, 234, 0.09), transparent 70%);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  pointer-events: none;
}

/* ---------- Diensten detail ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; padding: clamp(48px, 6vw, 90px) 0; border-top: 1px solid var(--line); }
.svc-detail:nth-child(even) .svc-detail-media { order: -1; }
.svc-detail-media { aspect-ratio: 4/3; overflow: hidden; clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); }
.svc-detail-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.45) brightness(0.85); }
.svc-detail h2 { font-size: clamp(20px, 2.4vw, 32px); margin: 14px 0 18px; }
.svc-detail ul, ul.svc-detail-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.svc-detail li, .svc-detail-list li { display: flex; gap: 14px; align-items: baseline; font-size: 13px; color: var(--muted); }
.svc-detail li::before, .svc-detail-list li::before {
  content: ''; flex: none; width: 9px; height: 13px; transform: translateY(1px);
  background: var(--blue); clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
}
.svc-detail li b, .svc-detail-list li b { color: var(--ink); font-weight: 500; }
.svc-detail li > span, .svc-detail-list li > span { min-width: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 90px); align-items: start; }
.c-item { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.c-item span { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.c-item a, .c-item b { font-size: clamp(15px, 1.6vw, 20px); font-weight: 500; transition: color 0.25s; }
.c-item a:hover { color: var(--blue); }
.contact-form { display: flex; flex-direction: column; gap: 18px; border: 1px solid var(--line); padding: clamp(26px, 3.4vw, 48px); background: var(--bg-2); }
.field label { display: block; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong);
  color: var(--ink); font-family: var(--font); font-weight: 300; font-size: 14px;
  padding: 14px 16px; outline: none; transition: border-color 0.25s; border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); }
.field textarea { min-height: 120px; resize: vertical; }
.ghl-form-shell {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(86, 201, 234, 0.08), transparent 34%), var(--bg-2);
  padding: clamp(20px, 2.6vw, 34px);
}
.ghl-form-shell::before {
  content: ''; position: absolute; width: 82px; height: 7px; top: 0; left: 0;
  background: var(--blue); transform: skewX(var(--skew));
  transform-origin: left top;
}
.ghl-form-head { padding: 8px 4px 24px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.ghl-form-head h2 { margin: 13px 0 8px; font-size: clamp(22px, 2.4vw, 32px); }
.ghl-form-head p { max-width: 52ch; font-size: 13px; color: var(--muted); }
.ghl-embed {
  min-height: 434px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg); border-radius: 8px;
}
.ghl-embed iframe {
  display: block; width: 100%; min-height: 434px; height: 434px;
  border: 0; border-radius: 8px; background: transparent;
  filter: invert(1) hue-rotate(180deg);
}
.form-privacy {
  margin-top: 14px; font-size: 10.5px; line-height: 1.65; color: var(--muted);
}
.form-privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Juridische pagina's ---------- */
.legal-page-hero { padding-bottom: clamp(34px, 4vw, 56px); }
.legal-page-hero .lead { max-width: 68ch; }
.legal-section { padding-top: 20px; }
.legal-layout {
  display: grid; grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px); align-items: start;
}
.legal-sidebar {
  position: sticky; top: 108px; border-top: 1px solid var(--line-strong);
  padding-top: 25px;
}
.legal-sidebar .kicker { gap: 8px; font-size: 8.5px; letter-spacing: 0.22em; }
.legal-sidebar .kicker::before { width: 18px; flex: 0 0 18px; }
.legal-sidebar h2 { margin: 15px 0 24px; font-size: clamp(21px, 2.2vw, 30px); }
.legal-facts { display: flex; flex-direction: column; margin-bottom: 26px; }
.legal-facts > div {
  display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 10px;
  padding: 13px 0; border-top: 1px solid var(--line);
}
.legal-facts dt {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.legal-facts dd { font-size: 12.5px; color: var(--ink); line-height: 1.65; }
.legal-facts a:hover { color: var(--blue); }
.legal-download { margin-bottom: 20px; }
.legal-small, .legal-version { font-size: 10.5px; line-height: 1.65; color: var(--muted); }
.legal-version { border-top: 1px solid var(--line); padding-top: 17px; }
.legal-document { min-width: 0; }
.legal-intro {
  padding: clamp(25px, 3.5vw, 46px); border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(86, 201, 234, 0.08), transparent 42%), var(--bg-2);
  margin-bottom: 34px; position: relative; overflow: hidden;
}
.legal-intro::before {
  content: ''; position: absolute; left: 0; top: 0; width: 76px; height: 6px;
  background: var(--blue); transform: skewX(var(--skew)); transform-origin: left top;
}
.legal-intro h2 { margin: 14px 0 12px; font-size: clamp(24px, 3vw, 40px); }
.legal-intro p { max-width: 70ch; }
.legal-copy-block { padding: 30px 0 34px; border-top: 1px solid var(--line); }
.legal-copy-block h3, .legal-contact-box h3 {
  font-size: clamp(17px, 1.9vw, 24px); margin-bottom: 15px;
}
.legal-copy-block p + p { margin-top: 14px; }
.legal-copy-block p, .legal-copy-block li {
  font-size: 13px; line-height: 1.85; color: var(--muted);
}
.legal-copy-block a, .legal-contact-box a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy-block ul { margin: 16px 0 0 18px; display: grid; gap: 7px; }
.legal-copy-block li::marker { color: var(--blue); }
.legal-copy-block code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em; color: var(--ink); background: var(--blue-dim);
  border: 1px solid var(--line); padding: 2px 5px;
}
.legal-index {
  counter-reset: legal-item; list-style: none; margin-top: 19px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px; border-bottom: 1px solid var(--line);
}
.legal-index li {
  display: grid; grid-template-columns: 28px 1fr; gap: 8px;
  padding: 10px 0; border-top: 1px solid var(--line);
}
.legal-index li::before {
  counter-increment: legal-item; content: counter(legal-item, decimal-leading-zero);
  color: var(--blue); font-size: 9px; letter-spacing: 0.08em; padding-top: 3px;
}
.legal-purpose-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.legal-purpose-grid > div { border: 1px solid var(--line); background: var(--bg-2); padding: 20px; }
.legal-purpose-grid b { font-size: 12px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em; }
.legal-purpose-grid p { margin: 9px 0; line-height: 1.65; }
.legal-purpose-grid span { display: block; font-size: 10px; line-height: 1.55; color: var(--blue); }
.legal-pdf {
  display: block; width: 100%; height: min(920px, 82vh); min-height: 640px;
  margin-top: 20px; border: 1px solid var(--line-strong); background: #fff;
}
.legal-contact-box {
  border: 1px solid var(--line-strong); background: var(--blue-dim);
  padding: clamp(22px, 3vw, 36px); margin-top: 10px;
}
.legal-contact-box p { font-size: 13px; color: var(--muted); }
.footer-bottom a[aria-current='page'] { color: var(--blue); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay='1'] { transition-delay: 0.1s; }
.reveal[data-delay='2'] { transition-delay: 0.2s; }
.reveal[data-delay='3'] { transition-delay: 0.3s; }
.reveal[data-delay='4'] { transition-delay: 0.4s; }

/* ---------- Big word strip ---------- */
.bigword { padding: clamp(40px, 6vw, 90px) 0; overflow: hidden; border-bottom: 1px solid var(--line); }
.bigword div {
  font-size: clamp(44px, 9vw, 150px); font-weight: 900; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.01em; white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .services-grid, .quotes-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .venture-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-row { grid-template-columns: repeat(3, 1fr); }
  .svc { min-height: 0; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1181px) and (max-width: 1279px) {
  .site-header .wrap {
    padding-left: 38px;
    padding-right: 38px;
  }
  .logo img { height: 38px; }
  .nav { gap: 22px; }
  .nav > .nav-item > a,
  .nav > .btn {
    font-size: 10px;
    letter-spacing: 0.15em;
    white-space: nowrap;
  }
  .nav > .btn {
    padding: 12px 18px;
    font-size: 10px;
    white-space: nowrap;
  }
}
@media (min-width: 961px) and (max-width: 1180px) {
  .site-header .wrap {
    height: 72px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .logo {
    flex: 0 0 auto;
    margin-right: 20px;
  }
  .logo img {
    width: 126px;
    height: auto;
    max-width: none;
  }
  .nav {
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
  }
  .nav-item { height: 72px; flex: 0 0 auto; }
  .nav > .nav-item > a,
  .nav > .btn,
  .lang-switch {
    font-size: clamp(9.25px, 0.95vw, 10.25px);
    letter-spacing: 0.13em;
    white-space: nowrap;
  }
  .nav > .btn {
    flex: 0 0 auto;
    padding: 11px 14px;
    font-size: clamp(8.5px, 0.88vw, 9.25px);
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
}
@media (max-width: 960px) {
  body.menu-open { overflow: hidden; }
  .site-header:has(.nav.open) {
    background: var(--bg);
    border-bottom-color: var(--line);
  }
  .nav {
    position: fixed; inset: 0; height: 100dvh; background: var(--bg);
    flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0;
    padding: 96px var(--pad) 48px; overflow-y: auto;
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  }
  .nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav a { font-size: 16px; }
  .nav-item { display: block; height: auto; border-top: 1px solid var(--line); position: relative; }
  .nav-item > a { display: block; padding: 14px 44px 14px 0; }
  /* accordion-toggle naast items met submenu */
  .sub-toggle {
    display: block; position: absolute; top: 8px; right: 0;
    width: 40px; height: 40px; background: none;
    border: 1px solid var(--line-strong); cursor: pointer; padding: 0;
    transition: border-color 0.3s, background-color 0.3s;
  }
  .nav-item.open .sub-toggle { border-color: var(--blue); background: var(--blue-dim); }
  .sub-toggle::before {
    content: ''; position: absolute; left: 50%; top: 50%; margin: -3px 0 0 -5px;
    width: 10px; height: 6px; background: var(--blue);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: transform 0.3s;
  }
  .nav-item.open .sub-toggle::before { transform: rotate(180deg); }
  /* submenu: dicht standaard, klapt open */
  .mega {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; border: 0; backdrop-filter: none; -webkit-backdrop-filter: none;
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-item.open .mega { max-height: var(--submenu-height, 640px); }
  .mega-inner { display: block; padding: 0 0 16px; max-width: none; }
  .mega-col h6 { display: none; }
  .mega-col a:not(.btn) { border-top: 0; padding: 8px 0 8px 22px; position: relative; }
  .mega-col a b { font-size: 12px; letter-spacing: 0.1em; }
  .mega-col a:not(.btn) span { display: none; }
  .mega-col a:not(.btn)::before {
    content: ''; position: absolute; left: 2px; top: 14px; width: 8px; height: 11px;
    background: var(--blue); clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  }
  .mega-aside { display: none; }
  .lang-switch {
    align-self: flex-start; margin-top: 18px;
    padding: 8px 10px; background: var(--bg-2);
  }
  .lang-switch button { padding: 4px 3px; font-size: 11px; }
  .nav .btn { margin-top: 22px; align-self: flex-start; }
  .burger { display: flex; }
  .case-row, .svc-detail, .contact-grid { grid-template-columns: 1fr; }
  .svc-detail > * { min-width: 0; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-purpose-grid { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) .svc-detail-media { order: 0; }
  .edge-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .venture-grid { grid-template-columns: 1fr; }
  .tech-row { grid-template-columns: repeat(2, 1fr); }
  .partner-badge { width: auto; }
  .soft-grid { grid-template-columns: 1fr; }
  .venture { min-height: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-band { grid-template-columns: repeat(2, 1fr); }
  .photo-band figure:nth-child(3) { display: none; }
  .scroll-hint { display: none; }
}
@media (max-width: 560px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .legal-page-hero h1 { font-size: clamp(29px, 8.1vw, 32px); letter-spacing: 0; }
  .legal-index { grid-template-columns: 1fr; }
  .legal-pdf { min-height: 520px; height: 72vh; }
}
/* flat mode (?flat=1): alles zichtbaar zonder animatie */
html.flat .reveal, html.flat .hero [data-stagger] { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
html.flat .hero { min-height: 0; padding-top: 150px; }
html.flat .step::after { width: 100%; }
html.flat body::after { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .hero [data-stagger] { opacity: 1 !important; transform: none !important; }
}
