/* =========================================================
   HENK detachering — homepage
   Huisstijl: blauw #0089CF, oranje #F99D1C, Kanit
   ========================================================= */

:root {
  --blue: #0089CF;
  --blue-600: #0075B3;
  --blue-700: #005E91;
  --blue-50: #EBF6FC;
  --blue-100: #D5ECF9;
  --orange: #F99D1C;
  --orange-600: #EA8A05;
  --orange-50: #FFF4E3;
  --navy: #0B1F3A;
  --navy-700: #12305A;
  --ink: #0E1B2C;
  --muted: #56667B;
  --line: #E3E9F2;
  --bg: #FAFBFE;
  --surface: #FFFFFF;

  --logo-b: var(--blue);
  --logo-o: var(--orange);
  --logo-w: var(--blue);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 58, .05), 0 4px 14px -6px rgba(11, 31, 58, .08);
  --shadow: 0 18px 40px -18px rgba(11, 31, 58, .22);
  --shadow-lg: 0 40px 80px -30px rgba(11, 31, 58, .35);

  --container: 1240px;
  --gutter: 16px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);

  --header-h: 76px;
  --topbar-h: 38px;

  --font: "Kanit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, figure, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
button, input, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px; text-decoration: none; }
.skip-link:focus { top: 16px; }

.i { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
/* mini-pixel uit het beeldmerk */
.eyebrow::before {
  content: ""; width: 7px; height: 7px; background: var(--orange);
  box-shadow: 9px 0 0 var(--blue), 9px -9px 0 var(--blue);
  margin: 9px 10px 0 0;
}
.eyebrow--light { color: #CFE9F9; }
.eyebrow--light::before { box-shadow: 9px 0 0 #8FD3F8, 9px -9px 0 #8FD3F8; }

.h2 {
  font-weight: 700;
  font-size: clamp(2rem, 1.35rem + 2.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--navy);
  text-wrap: balance;
}
.h2--blue { color: var(--blue); }
.h2--light { color: #fff; }
.h3 {
  font-weight: 600;
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.625rem);
  line-height: 1.2;
  color: var(--navy);
  margin-top: 14px;
  text-wrap: balance;
}
.h3--ink { margin-top: 0; }
.body { color: #34455B; margin-top: 18px; max-width: 56ch; }
.body--muted { color: var(--muted); margin-top: 0; }

/* ---------- Knoppen ---------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px;
  border-radius: 999px; border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 500; font-size: 1rem; line-height: 1; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .25s, color .25s, border-color .25s;
}
.btn .i { transition: transform .35s var(--ease-out); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(11, 31, 58, .45); }
.btn:hover .i { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--orange { --btn-bg: var(--orange); --btn-fg: var(--navy); font-weight: 600; }
.btn--orange:hover { --btn-bg: #FFAA33; }
.btn--blue { --btn-bg: var(--blue-600); }
.btn--blue:hover { --btn-bg: var(--blue-700); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--blue-600); --btn-bd: var(--blue-100); }
.btn--outline:hover { --btn-bd: var(--blue); --btn-bg: var(--blue-50); }
.btn--ghost { --btn-bg: transparent; --btn-fg: currentColor; --btn-bd: currentColor; }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: .9375rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-600); font-weight: 500; text-decoration: none;
}
.link-arrow .i { transition: transform .3s var(--ease-out); }
.link-arrow:hover .i { transform: translateX(4px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  color: var(--navy);
  transition: transform .45s var(--ease-out), background-color .35s, box-shadow .35s, color .35s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(250, 251, 254, .86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  opacity: 1; transition: opacity .35s;
}
.site-header.is-top { color: #fff; --logo-b: #3FB0EE; --logo-w: #fff; }
.site-header.is-top::before { opacity: 0; }
.site-header.is-hidden { transform: translateY(calc(-100% - 2px)); }

.topbar {
  height: var(--topbar-h);
  background: var(--navy); color: #D7E6F5;
  font-size: .8125rem;
  overflow: hidden;
  transition: height .4s var(--ease-out);
}
.site-header:not(.is-top) .topbar { height: 0; }
.topbar__inner { height: var(--topbar-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ticker { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.ticker__dot { width: 7px; height: 7px; background: var(--orange); flex: none; }
.ticker__list { position: relative; height: 1.4em; overflow: hidden; min-width: 0; flex: 1; }
.ticker__list li { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.4; }
.js .ticker__list li { position: absolute; inset: 0 auto auto 0; opacity: 0; }
.js .ticker__list li:first-child { opacity: 1; }
.topbar__links { display: flex; gap: 22px; flex: none; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; color: #fff; font-weight: 400; }
.topbar__link:hover { color: var(--orange); }

.nav { height: var(--header-h); display: flex; align-items: center; gap: 28px; }
.nav__logo { display: block; flex: none; }
.logo { width: auto; height: 50px; overflow: visible; }
.logo__b { fill: var(--logo-b); transition: fill .35s; }
.logo__o { fill: var(--logo-o); }
.logo__w { fill: var(--logo-w); transition: fill .35s; }
.logo__sub { fill: var(--logo-o); font-family: var(--font); font-weight: 400; font-size: 42px; }

.nav__menu { display: flex; gap: 4px; margin-left: auto; }
.nav__menu a {
  position: relative; padding: 8px 12px; border-radius: 999px;
  font-weight: 400; font-size: .98rem; text-decoration: none;
  transition: background-color .25s;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; gap: 10px; }

.nav__toggle {
  display: none; margin-left: auto;
  width: 48px; height: 48px; border-radius: 14px;
  border: 1.5px solid currentColor; background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle-bars { position: relative; width: 20px; height: 12px; }
.nav__toggle-bars i { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease-out), top .35s var(--ease-out); }
.nav__toggle-bars i:first-child { top: 0; }
.nav__toggle-bars i:last-child { top: 10px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:first-child { top: 5px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:last-child { top: 5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: var(--navy); color: #fff;
  padding: calc(var(--header-h) + var(--topbar-h) + 24px) 24px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-size: clamp(1.75rem, 8vw, 2.5rem); font-weight: 600; line-height: 1.25;
  text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-menu__foot { display: grid; gap: 10px; margin-top: 24px; }
.menu-open .site-header { color: #fff; --logo-b: #3FB0EE; --logo-w: #fff; }
.menu-open .site-header::before { opacity: 0; }
.menu-open { overflow: hidden; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: max(640px, min(100svh, 940px));
  display: flex; align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background: var(--navy);
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 46, .86) 0%, rgba(8, 24, 46, .62) 42%, rgba(8, 24, 46, .18) 75%),
    linear-gradient(0deg, rgba(8, 24, 46, .7) 0%, rgba(8, 24, 46, 0) 45%),
    linear-gradient(180deg, rgba(8, 24, 46, .55) 0%, rgba(8, 24, 46, 0) 22%);
}
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: end; gap: 48px;
  padding-top: calc(var(--header-h) + var(--topbar-h) + 48px);
  padding-bottom: 150px;
}
.hero__title {
  font-weight: 700;
  font-size: clamp(2.75rem, 1.4rem + 5.6vw, 6rem);
  line-height: .98;
  letter-spacing: -.025em;
  max-width: 11ch;
  text-wrap: balance;
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .word > span { display: inline-block; }
.hl { color: var(--orange); }
.hero__lead { margin-top: 24px; font-size: clamp(1.0625rem, 1rem + .4vw, 1.3rem); color: #E4EEF8; max-width: 46ch; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; font-size: .95rem; color: #fff; font-weight: 400; }
.hero__checks li { display: inline-flex; align-items: center; gap: 8px; }
.hero__checks .i { color: var(--orange); }

.hero-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(11, 31, 58, .72), rgba(11, 31, 58, .5));
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
}
.hero-card__badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--orange); color: var(--navy);
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.hero-card__title { margin-top: 14px; font-weight: 600; font-size: 1.3rem; line-height: 1.2; }
.hero-card__text { margin: 8px 0 20px; font-size: .95rem; color: #DCE8F4; }

.hero__pause {
  position: absolute; right: 24px; bottom: 120px;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .14); color: #fff;
  border: 1px solid rgba(255, 255, 255, .3); cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color .25s;
}
.hero__pause:hover { background: rgba(255, 255, 255, .26); }
.hero__pause .i--play { display: none; }
.hero__pause[aria-pressed="true"] .i--play { display: block; }
.hero__pause[aria-pressed="true"] .i--pause { display: none; }

/* ---------- Zoekbalk ---------- */
.search-wrap { position: relative; z-index: 5; margin-top: -86px; }
.search {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  border: 1px solid var(--line);
}
.search__fields { display: grid; grid-template-columns: 1.25fr 1fr 1fr auto; gap: 10px; }
.field {
  position: relative; display: flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--bg);
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.field:focus-within { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px var(--blue-50); }
.field .i { position: absolute; left: 16px; color: var(--blue); pointer-events: none; }
.field input, .field select {
  width: 100%; height: 56px; padding: 0 16px 0 46px;
  border: 0; background: transparent; outline: none;
  font-weight: 400; color: var(--navy);
}
.field input::placeholder { color: #7A8AA0; }
.field select { appearance: none; cursor: pointer; padding-right: 40px; }
.field--select::after {
  content: ""; position: absolute; right: 18px; width: 8px; height: 8px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: translateY(-2px) rotate(45deg); pointer-events: none;
}
.search__submit { min-height: 56px; border-radius: 14px; padding: 0 28px; }
.search__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 14px 4px 2px; }
.radius { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; border: 0; padding: 0; margin: 0; }
.radius legend { float: left; margin-right: 6px; font-size: .9rem; color: var(--muted); }
.radius label { cursor: pointer; }
.radius input { position: absolute; opacity: 0; pointer-events: none; }
.radius span {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  font-size: .875rem; font-weight: 400;
  border: 1.5px solid var(--line); color: var(--navy);
  transition: all .2s;
}
.radius label:hover span { border-color: var(--blue-100); background: var(--blue-50); }
.radius input:checked + span { background: var(--orange-50); border-color: var(--orange); color: var(--navy); font-weight: 500; }
.radius input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 44px 0 8px; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; }
.marquee__track span {
  font-weight: 600; font-size: clamp(1.25rem, 1rem + 1vw, 1.9rem);
  color: transparent; -webkit-text-stroke: 1.2px #9FB3CB; white-space: nowrap;
  letter-spacing: -.01em;
}
.marquee__track b { width: 10px; height: 10px; background: var(--orange); flex: none; }
.marquee__track b:nth-of-type(even) { background: var(--blue); }

/* =========================================================
   SECTIES & PANELEN ("vakken")
   ========================================================= */
.section { padding-block: clamp(28px, 4vw, 48px); }
.section--tight { padding-top: 0; }
.panel {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.panel--navy {
  background:
    radial-gradient(1200px 400px at 90% -10%, rgba(0, 137, 207, .35), transparent 60%),
    radial-gradient(10px 10px at 1px 1px, rgba(255, 255, 255, .07) 1px, transparent 1.5px) 0 0 / 28px 28px,
    var(--navy);
  border-color: transparent; color: #fff;
}
.panel--blue {
  background:
    radial-gradient(900px 500px at 100% 100%, rgba(249, 157, 28, .22), transparent 60%),
    linear-gradient(135deg, #0089CF 0%, #0070AB 100%);
  border-color: transparent; color: #fff;
}
.section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split { display: grid; grid-template-columns: 1fr minmax(0, 440px); gap: 24px 48px; align-items: end; }

/* ---------- Split (tekst + beeld) ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.split__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3.2; background: var(--blue-50);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
.float-badge {
  position: absolute; left: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 14px; border-radius: 16px;
  background: rgba(255, 255, 255, .94); color: var(--navy);
  box-shadow: var(--shadow); font-size: .9rem; line-height: 1.25;
  backdrop-filter: blur(8px);
}
.float-badge .i { width: 36px; height: 36px; padding: 8px; border-radius: 10px; background: var(--orange); color: var(--navy); }
.float-badge strong { display: block; font-weight: 600; }

/* ---------- Vacatures + tegels ---------- */
.jobs-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1fr); gap: 20px; align-items: stretch; }
.jobs { padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; }
.jobs__head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.jobs__head .eyebrow { margin-bottom: 6px; }
.job-list { display: grid; }
.job + .job { border-top: 1px solid var(--line); }
.job__link {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "title arrow" "meta arrow";
  gap: 4px 16px; align-items: center;
  padding: 16px 8px; margin-inline: -8px; border-radius: 14px;
  text-decoration: none;
  transition: background-color .25s;
}
.job__link:hover { background: var(--blue-50); }
.job__title { grid-area: title; font-weight: 500; font-size: 1.1rem; color: var(--navy); line-height: 1.3; }
.job__meta { grid-area: meta; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: .9rem; color: var(--muted); }
.job__meta > span:first-child { display: inline-flex; align-items: center; gap: 5px; }
.job__meta .i { color: var(--orange); width: 1em; height: 1em; }
.tag { padding: 2px 10px; border-radius: 999px; background: var(--blue-50); color: var(--blue-700); font-size: .8rem; font-weight: 400; }
.job__arrow {
  grid-area: arrow; width: 40px; height: 40px; padding: 10px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--blue);
  transition: transform .35s var(--ease-out), background-color .25s, color .25s, border-color .25s;
}
.job__link:hover .job__arrow { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateX(3px); }
.job.is-hidden { display: none; }
.jobs__empty { padding: 16px 0; color: var(--muted); }
.jobs__empty a { color: var(--blue-600); }
.jobs__more { margin-top: auto; padding-top: 14px; }

.tile {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 34px 22px 24px; border-radius: var(--radius-xl);
  text-align: center; text-decoration: none; color: #fff;
  min-height: 360px;
  transition: translate .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.tile::before { /* pixelpatroon */
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .14;
  background: radial-gradient(circle at 1.5px 1.5px, #fff 1.5px, transparent 2px) 0 0 / 22px 22px;
  mask-image: linear-gradient(180deg, transparent, #000);
}
.tile > * { position: relative; z-index: 1; }
.tile:hover { translate: 0 -6px; box-shadow: var(--shadow-lg); }
.tile--blue { background: linear-gradient(160deg, #0089CF, #0068A0); }
.tile--orange { background: linear-gradient(160deg, #FBA83A, #F28C00); color: var(--navy); }
.tile__title { font-weight: 700; font-size: clamp(1.5rem, 1.2rem + .9vw, 2rem); line-height: 1.1; max-width: 9ch; }
.tile__text { font-size: .95rem; line-height: 1.5; opacity: .9; max-width: 26ch; }
.tile__icon { width: 104px; height: 104px; margin-block: auto; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; transition: transform .6s var(--ease-out); }
.tile:hover .tile__icon { transform: translateY(-4px) scale(1.06) rotate(-3deg); }
.tile__btn {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  background: #fff; color: var(--blue-600); font-weight: 600;
  transition: background-color .25s, color .25s;
}
.tile--orange .tile__btn { color: #C06A00; }
.tile:hover .tile__btn { background: var(--navy); color: #fff; }

/* ---------- USP's ---------- */
.usps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.usp {
  text-align: center; padding: 34px 22px 30px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: translate .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
}
.usp:hover { translate: 0 -6px; box-shadow: var(--shadow); border-color: var(--blue-100); }
.usp__icon {
  width: 84px; height: 84px; margin: 0 auto 18px;
  fill: none; stroke: var(--blue); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.usp__icon .acc { stroke: var(--orange); }
.usp__title { font-weight: 600; font-size: 1.2rem; color: var(--navy); line-height: 1.25; }
.usp__text { margin-top: 8px; font-size: .975rem; color: var(--muted); }

/* ---------- Vakgebieden ---------- */
.vak__head { display: grid; grid-template-columns: 1fr minmax(0, 400px); gap: 20px 48px; align-items: end; margin-bottom: clamp(28px, 4vw, 44px); }
.vak__intro { color: #BFD3E8; }
.vak__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vak-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; color: var(--navy); text-decoration: none;
  transition: translate .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.vak-card:hover { translate: 0 -6px; box-shadow: 0 30px 50px -24px rgba(0, 0, 0, .6); }
.vak-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-700); }
.vak-card__media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease-out); }
.vak-card:hover .vak-card__media video { transform: scale(1.08); }
.vak-card__media::after { /* blauwe tint die verdwijnt bij hover */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0) 50%, rgba(11, 31, 58, .35)), rgba(0, 137, 207, .18);
  transition: opacity .5s;
}
.vak-card:hover .vak-card__media::after { opacity: .2; }
.vak-card__body { position: relative; padding: 20px 76px 22px 22px; }
.vak-card__body h3 { font-weight: 600; font-size: 1.3rem; line-height: 1.2; }
.vak-card__body p { margin-top: 4px; font-size: .925rem; color: var(--muted); line-height: 1.45; }
.vak-card__arrow {
  position: absolute; right: 20px; top: 50%; translate: 0 -50%;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--orange); color: var(--navy);
  transition: transform .4s var(--ease-out), background-color .25s;
}
.vak-card:hover .vak-card__arrow { transform: rotate(-45deg); background: var(--blue); color: #fff; }

/* ---------- Werkwijze ---------- */
.steps { position: relative; }
.steps__line { position: absolute; left: 28px; right: calc((100% - 72px) / 4 - 28px); top: 27px; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.steps__line span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--blue), var(--orange)); transform-origin: left; transform: scaleX(0); }
.steps__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding-right: 12px; }
.step__num {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: #fff; border: 1.5px solid var(--line); color: var(--blue);
  font-weight: 700; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: background-color .4s, color .4s, border-color .4s;
  position: relative; z-index: 1;
}
.step.is-active .step__num { background: var(--blue); color: #fff; border-color: var(--blue); }
.step:last-child.is-active .step__num { background: var(--orange); border-color: var(--orange); color: var(--navy); }
.step h3 { margin-top: 22px; font-weight: 600; font-size: 1.25rem; color: var(--navy); }
.step p { margin-top: 6px; color: var(--muted); font-size: .975rem; }

/* ---------- Dit kenmerkt HENK ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.feature {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(340px, 34vw, 460px);
  border-radius: var(--radius-lg); overflow: hidden;
  color: #fff; text-decoration: none; isolation: isolate;
  background: var(--navy);
}
.feature__video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.feature::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8, 24, 46, 0) 30%, rgba(8, 24, 46, .55) 60%, rgba(8, 24, 46, .92) 100%);
  transition: opacity .5s;
}
.feature:hover .feature__video { transform: scale(1.05); }
.feature__body { padding: clamp(22px, 3vw, 36px); padding-right: 96px; max-width: 620px; }
.feature__kicker {
  display: inline-block; margin-bottom: 10px; padding: 4px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .28);
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.feature__title { font-weight: 700; font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); line-height: 1.1; letter-spacing: -.01em; }
.feature__text { margin-top: 10px; color: #D8E4F0; font-size: 1rem; max-width: 46ch; }
.feature__arrow {
  position: absolute; right: 24px; bottom: 28px;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--navy);
  transition: transform .45s var(--ease-out), background-color .3s;
}
.feature:hover .feature__arrow { background: var(--orange); transform: rotate(-45deg); }

/* ---------- CTA ---------- */
.cta { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 32px; align-items: center; }
.cta__lead { margin-top: 18px; color: #E1F0FA; max-width: 48ch; }
.offices { display: flex; flex-wrap: wrap; gap: 16px 40px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .22); font-size: .975rem; color: #E1F0FA; }
.office strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.cta__mark svg { width: 100%; max-width: 380px; margin-left: auto; overflow: visible; }
.cta__mark .logo__b { fill: #fff; }
.cta__mark .logo__o { fill: var(--orange); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  margin-top: clamp(28px, 4vw, 48px);
  background: var(--navy); color: #C5D5E6;
  padding: clamp(48px, 6vw, 80px) 0 28px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  font-size: .975rem;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr .8fr 1fr; gap: 40px; }
.footer__brand img { width: 180px; height: auto; }
.footer__brand p { margin-top: 16px; max-width: 34ch; }
.footer__certs { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__certs span { padding: 3px 10px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, .2); font-size: .8rem; color: #fff; }
.footer__h { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer__list { display: grid; gap: 8px; }
.footer__list a { text-decoration: none; }
.footer__list a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); color: #fff;
  transition: background-color .25s, transform .3s var(--ease-out);
}
.footer__social a:hover { background: var(--blue); transform: translateY(-2px); }
.footer__cta { margin-top: 26px; }
.footer__cta p { color: #fff; font-weight: 500; margin-bottom: 10px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .875rem; color: #8FA5BD; }
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: #fff; }

.mobile-bar { display: none; }

/* =========================================================
   ANIMATIE-BEGINSTAAT (alleen met JS; Motion animeert naar zichtbaar)
   ========================================================= */
.js [data-reveal],
.js [data-hero-el],
.js [data-hero-card],
.js [data-usp],
.js [data-vak-card],
.js [data-feature],
.js [data-step],
.js [data-tile],
.js .search { opacity: 0; }
.js .hero__title .word > span { transform: translateY(105%); }
.js .usp__icon path, .js .usp__icon circle { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .logo__b > *, .js .logo__o > * { transform-box: fill-box; transform-origin: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .nav__menu { display: none; }
  .nav__cta { margin-left: auto; }
  .nav__toggle { display: inline-flex; margin-left: 0; }
  .jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jobs { grid-column: 1 / -1; }
  .tile { min-height: 300px; }
  .usps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .logo { height: 42px; }
  .nav__cta .btn--ghost { display: none; }
  .hero__inner { grid-template-columns: 1fr; padding-bottom: 130px; gap: 28px; }
  .hero-card { max-width: 420px; }
  .hero__pause { bottom: 104px; right: 16px; }
  .search__fields { grid-template-columns: 1fr 1fr; }
  .field:first-child { grid-column: 1 / -1; }
  .search__submit { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse-mobile .split__media { order: -1; }
  .section-head--split, .vak__head { grid-template-columns: 1fr; }
  .vak__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps__line { display: none; }
  .steps__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .cta__mark { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; padding-bottom: 76px; }
  .topbar__link--hide-sm, .link-arrow--hide-sm { display: none; }
  .ticker { display: none; }
  .topbar__inner { justify-content: center; }
  .nav__cta { display: none; }
  .nav__toggle { margin-left: auto; }
  .hero { border-radius: 0 0 24px 24px; }
  .hero__inner { padding-top: calc(var(--header-h) + var(--topbar-h) + 32px); }
  .hero-card { display: none; }
  .hero__checks { gap: 8px 16px; font-size: .9rem; }
  .search { padding: 12px; }
  .search__fields { grid-template-columns: 1fr; }
  .field--select { grid-column: auto; }
  .search__meta { padding-top: 12px; }
  .radius { gap: 6px; }
  .radius legend { margin-right: 2px; }
  .radius span { padding: 5px 10px; }
  .jobs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tile { min-height: 0; padding: 22px 14px 16px; gap: 14px; border-radius: 24px; }
  .tile__icon { width: 64px; height: 64px; }
  .tile__title { font-size: 1.2rem; }
  .tile__btn { font-size: .875rem; padding: 12px 8px; }
  .tile__text { display: none; }
  .usps { grid-template-columns: 1fr; }
  .usp { display: grid; grid-template-columns: 64px 1fr; text-align: left; gap: 0 16px; padding: 20px; }
  .usp__icon { width: 64px; height: 64px; margin: 0; grid-row: span 2; }
  .vak__grid { grid-template-columns: 1fr; }
  .steps__list { grid-template-columns: 1fr; }
  .feature { min-height: 380px; }
  .feature__body { padding-right: 22px; padding-bottom: 88px; }
  .feature__arrow { right: auto; left: 22px; bottom: 22px; width: 46px; height: 46px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .mobile-bar {
    position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 40;
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    padding: 8px; border-radius: 20px;
    background: rgba(11, 31, 58, .92); backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, .4);
  }
  .mobile-bar__btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: 14px;
    color: #fff; text-decoration: none; font-weight: 500;
    background: rgba(255, 255, 255, .1);
  }
  .mobile-bar__btn--orange { background: var(--orange); color: var(--navy); font-weight: 600; }
}
