@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
}

/* ============================================================
   IT EVOLUTIONS - Premium B2B website
   Brand: #0b2438 navy · #ecc81d gold · #ffffff white · #000 black
   Desktop-first, 12-column grid
============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy:        #0b2438;
  --navy-deep:   #071827;
  --navy-line:   #16344b;
  --gold:        #ecc81d;
  --gold-soft:   #f3d84e;
  --gold-deep:   #c9aa10;
  --white:       #ffffff;
  --paper:       #f6f8fb;
  --paper-2:     #eef2f7;
  --ink:         #0b2438;
  --muted:       #5b6b7d;
  --muted-soft:  #8a98a8;
  --border:      #dde5ee;
  --border-navy: rgba(255,255,255,0.10);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --gut: 32px;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --sh-1: 0 1px 2px rgba(11,36,56,.06), 0 2px 6px rgba(11,36,56,.05);
  --sh-2: 0 6px 22px rgba(11,36,56,.10), 0 2px 8px rgba(11,36,56,.06);
  --sh-3: 0 24px 60px rgba(11,36,56,.16), 0 8px 22px rgba(11,36,56,.08);
  --sh-gold: 0 10px 30px rgba(236,200,29,.32);

  --t: .25s cubic-bezier(.4,0,.2,1);

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

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { width: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  overflow-x: clip;
}
img,svg,video,canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { color: var(--navy); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; }
h1,h2,h3,h4,p,li,span,b,a { overflow-wrap: anywhere; }
h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); letter-spacing: -.03em; }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; }
p  { color: var(--muted); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block;
}
.kicker.on-dark { color: var(--gold); }
.kicker-center { justify-content: center; }
.kicker-offset { margin-top: 6px; }

.lead { font-size: 1.08rem; line-height: 1.75; color: var(--muted); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); min-width: 0; margin-inline: auto; padding-inline: var(--gut); }
.section { padding: 120px 0; }
.section-sm { padding: 84px 0; }

.grid12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gut); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .94rem; letter-spacing: .005em;
  padding: 15px 28px; border-radius: var(--r-sm);
  border: 2px solid transparent; transition: var(--t);
  white-space: nowrap;
  max-width: 100%;
}
.btn svg { width: 17px; height: 17px; transition: transform var(--t); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--sh-gold); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--sh-2); }

.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.85); background: rgba(255,255,255,.06); transform: translateY(-2px); }

.btn-ghost-navy { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost-navy:hover { border-color: var(--navy); transform: translateY(-2px); }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 1.5rem; min-width: 0;
}
.brand { min-width: 0; flex: 0 1 auto; }
.brand img { height: 34px; width: auto; max-width: 210px; }
@media (min-width: 721px) {
  .brand { flex-shrink: 0; }
  .brand img { height: 36px; }
}
.nav { display: flex; align-items: center; gap: clamp(.85rem, 1.4vw, 1.5rem); min-width: 0; }
.nav a {
  font-size: .9rem; font-weight: 650; color: var(--navy-deep); letter-spacing: .01em;
  position: relative; padding: 6px 0; transition: color var(--t);
  white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width var(--t);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.2rem; min-width: 0; flex: 0 0 auto; }
.header-cta .btn { padding: 11px 22px; font-size: .86rem; letter-spacing: .02em; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }

.mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 1rem var(--gut) 1.5rem; width: 100%; max-width: 100%; }
.mobile.open { display: flex; }
.mobile a { min-width: 0; font-weight: 650; color: var(--navy-deep); letter-spacing: .01em; padding: .85rem 0; border-bottom: 1px solid var(--paper-2); overflow-wrap: anywhere; }
.mobile a:hover { color: var(--navy); }
.mobile .btn { justify-content: center; margin-top: 1rem; }
.mobile .btn-ghost-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   HERO - asymmetric, layered
============================================================ */
.hero {
  position: relative; background: var(--navy-deep); color: var(--white);
  overflow: hidden;
}
.hero__grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 30%, transparent 78%);
}
.hero__glow {
  position: absolute; width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,200,29,.16) 0%, transparent 62%);
  top: -180px; right: -180px; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center;
  min-height: 86vh; padding: 90px 0 96px;
}

.hero__copy { max-width: 580px; min-width: 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(236,200,29,.4); background: rgba(236,200,29,.08);
  color: var(--gold); border-radius: 50px; padding: 7px 16px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(236,200,29,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(236,200,29,.6);} 70%{box-shadow:0 0 0 9px rgba(236,200,29,0);} 100%{box-shadow:0 0 0 0 rgba(236,200,29,0);} }

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); position: relative; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 10px;
  background: rgba(236,200,29,.18); z-index: -1; border-radius: 2px;
}
.hero__sub { color: rgba(255,255,255,.74); font-size: 1.1rem; line-height: 1.78; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__trust {
  display: flex; gap: 30px; margin-top: 46px; padding-top: 30px;
  border-top: 1px solid var(--border-navy); flex-wrap: wrap;
}
.hero__trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero__trust-item b { font-size: .82rem; color: var(--gold); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero__trust-item span { font-size: .82rem; color: rgba(255,255,255,.6); }

/* Hero visual composition - slider */
.hero__visual { position: relative; align-self: stretch; display: flex; align-items: center; min-width: 0; max-width: 100%; }

.slider {
  position: relative; width: 100%; aspect-ratio: 4/3.4; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-3); border: 1px solid rgba(255,255,255,.08);
}
.slider__track { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; z-index: 0;
  pointer-events: none;
  transition: opacity .7s var(--ease-out);
}
.slide.is-active { opacity: 1; z-index: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,24,39,.32) 0%, rgba(7,24,39,.04) 42%, rgba(11,36,56,.62) 100%);
}

/* location chip per slide */
.slide__loc {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  display: flex; align-items: center; gap: 9px;
  background: rgba(7,24,39,.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 50px;
  padding: 8px 15px; font-size: .76rem; color: #fff; font-weight: 600;
}
.slide__loc .pin { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* arrows */
.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(7,24,39,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center;
  transition: var(--t); opacity: 0;
}
.slider:hover .slider__arrow { opacity: 1; }
.slider__arrow:hover { background: var(--gold); border-color: var(--gold); }
.slider__arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--t); }
.slider__arrow:hover svg { stroke: var(--navy); }
.slider__arrow.prev { left: 14px; }
.slider__arrow.next { right: 14px; }

/* dots */
.slider__dots {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 8px;
}
.slider__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,.4); border: 0; transition: var(--t);
}
.slider__dot.is-active { background: var(--gold); width: 26px; border-radius: 50px; }

@media (hover: none) {
  .slider__arrow { opacity: 1; background: rgba(7,24,39,.5); }
}

/* ============================================================
   EXPERTISE STRIP
============================================================ */
.expertise { background: var(--navy); border-top: 1px solid var(--navy-line); }
.expertise__inner { display: flex; align-items: stretch; }
.expertise__label {
  flex: 0 0 auto; padding: 30px 36px 30px 0; display: flex; align-items: center;
  border-right: 1px solid var(--navy-line); margin-right: 36px;
}
.expertise__label span { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); line-height: 1.4; max-width: 130px; }
.expertise__items { flex: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 0; }
.expertise__item {
  display: flex; align-items: center; gap: 11px; padding: 22px 28px;
  color: rgba(255,255,255,.8); font-weight: 600; font-size: .92rem;
  position: relative; transition: color var(--t);
}
.expertise__item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 22px; background: var(--navy-line);
}
.expertise__item svg { width: 19px; height: 19px; stroke: var(--gold); fill: none; stroke-width: 1.7; flex-shrink: 0; }
.expertise__item:hover { color: #fff; }

/* ============================================================
   INTRO / POSITIONERING
============================================================ */
.intro__head { grid-column: 1 / 6; }
.intro__head h2 { margin: 16px 0 0; }
.intro__body { grid-column: 7 / 13; padding-top: 6px; }
.intro__body p { margin-bottom: 18px; }
.intro__body p:last-of-type { margin-bottom: 28px; }

/* ============================================================
   SERVICE BLOCKS
============================================================ */
.services { background: var(--paper); }
.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head-left { margin: 0 0 36px; text-align: left; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { font-size: 1.05rem; }

.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.svc {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px 34px 34px; overflow: hidden;
  transition: var(--t); display: flex; flex-direction: column;
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc__no { font-size: .76rem; font-weight: 800; letter-spacing: .14em; color: var(--muted-soft); margin-bottom: 22px; }
.svc__ic {
  width: 60px; height: 60px; border-radius: 14px; margin-bottom: 24px;
  background: var(--navy); display: grid; place-items: center; transition: var(--t);
}
.svc__ic svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc:hover .svc__ic { background: var(--gold); }
.svc:hover .svc__ic svg { stroke: var(--navy); }
.svc h3 { margin-bottom: 12px; }
.svc__card-link { color: inherit; text-decoration: none; cursor: pointer; }
.svc__card-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.svc__card-link:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }
.svc__desc { font-size: .94rem; line-height: 1.7; margin-bottom: 24px; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.svc__tags span { font-size: .74rem; font-weight: 600; color: var(--navy); background: var(--paper); border: 1px solid var(--border); border-radius: 5px; padding: 5px 11px; }
.svc__link {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
  font-weight: 800; font-size: .86rem; color: var(--navy); transition: gap var(--t);
}
.svc__link svg { width: 16px; height: 16px; stroke: var(--gold-deep); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.svc__link:hover { gap: 12px; }

/* ============================================================
   WERKWIJZE / AANPAK
============================================================ */
.approach { background: var(--white); }
.approach__top { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 60px; }
.approach__top h2 { margin-top: 16px; max-width: 16ch; }
.approach__top p { max-width: 360px; }

.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
.step__num {
  width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--navy); color: var(--navy);
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
  transition: var(--t);
}
.step:hover .step__num { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-4px); box-shadow: var(--sh-gold); }
.step h4 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: .85rem; line-height: 1.6; }

/* ============================================================
   ROLES (split)
============================================================ */
.roles { background: var(--paper); }
.roles__head { max-width: 600px; margin-bottom: 56px; }
.roles__head h2 { margin: 16px 0 12px; }
.role-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px; }
.role {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: var(--t); display: flex; flex-direction: column;
}
.role:hover { box-shadow: var(--sh-3); border-color: var(--gold); transform: translateY(-4px); }
.role__top {
  background: var(--navy); padding: 34px 36px; position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 18px;
}
.role__top::after {
  content: ""; position: absolute; inset: 0; opacity: .6;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(circle at 80% 20%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 80% 20%, #000, transparent 75%);
}
.role__ic { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 12px; background: rgba(236,200,29,.14); border: 1px solid rgba(236,200,29,.3); display: grid; place-items: center; flex-shrink: 0; }
.role__ic svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.role__top-text { position: relative; z-index: 1; }
.role__tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: rgba(236,200,29,.12); border: 1px solid rgba(236,200,29,.25); padding: 3px 11px; border-radius: 50px; margin-bottom: 9px; }
.role__top-text h3 { color: #fff; font-size: 1.2rem; }
.role__body { padding: 32px 36px 36px; display: flex; flex-direction: column; flex: 1; }
.role__body p { font-size: .92rem; line-height: 1.75; margin-bottom: 22px; }
.role__skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.role__skills span { font-size: .74rem; font-weight: 600; color: var(--navy); background: var(--paper); border: 1px solid var(--border); border-radius: 5px; padding: 5px 11px; }
.role__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-weight: 800; font-size: .88rem; color: var(--navy); transition: gap var(--t); }
.role__cta svg { width: 16px; height: 16px; stroke: var(--gold-deep); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.role__cta:hover { gap: 12px; }

/* ============================================================
   OVER ONS (editorial)
============================================================ */
.about { background: var(--white); }
.about__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4;
  box-shadow: var(--sh-3);
}
.about__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,24,39,.5) 100%); }
.about__media-tag {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  background: var(--navy); border-left: 4px solid var(--gold);
  padding: 13px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.about__media-tag b { display: block; font-size: .9rem; color: #fff; font-weight: 800; }
.about__media-tag span { font-size: .74rem; color: rgba(255,255,255,.65); }

.about__text h2 { margin: 16px 0 22px; }
.about__text p { margin-bottom: 16px; font-size: .98rem; }
.about__quote {
  border-left: 4px solid var(--gold); background: var(--paper);
  padding: 18px 24px; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 26px 0;
}
.about__quote p { margin: 0; font-style: italic; color: var(--navy); font-weight: 600; font-size: 1.02rem; line-height: 1.6; }

/* ============================================================
   WAAROM (trust, navy)
============================================================ */
.why { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.why__bg {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 80% 30%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 70% at 80% 30%, #000, transparent 75%);
}
.why__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 64px; align-items: start; }
.why__intro h2 { color: #fff; margin: 16px 0 18px; }
.why__intro p { color: rgba(255,255,255,.68); font-size: .98rem; }
.why__intro .btn { margin-top: 30px; }
.why-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }
.trust {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 28px 26px; transition: var(--t);
}
.trust:hover { background: rgba(255,255,255,.07); border-color: rgba(236,200,29,.4); transform: translateY(-4px); }
.trust__ic { width: 46px; height: 46px; border-radius: 11px; background: rgba(236,200,29,.12); display: grid; place-items: center; margin-bottom: 18px; }
.trust__ic svg { width: 23px; height: 23px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust h4 { color: #fff; font-size: 1.04rem; margin-bottom: 9px; }
.trust p { color: rgba(255,255,255,.62); font-size: .86rem; line-height: 1.65; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta { background: var(--white); padding: 88px 0 64px; }
.cta__band {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 60%, #0f2f49 100%);
  padding: 76px 72px; display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 40px; align-items: center;
}
.cta__band::before {
  content: ""; position: absolute; inset: 0; opacity: .6;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta__band::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,200,29,.18) 0%, transparent 62%);
  right: -120px; top: -120px; pointer-events: none;
}
.cta__mark {
  position: absolute; right: 60px; bottom: -40px; width: 200px; opacity: .06; z-index: 0;
}
.cta__copy { position: relative; z-index: 1; }
.cta__copy h2 { color: #fff; margin-bottom: 14px; }
.cta__copy p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 50ch; }
.cta__action { position: relative; z-index: 1; }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--paper); padding-top: 72px; }
.contact__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 64px; align-items: start; }
.contact__info h2 { margin: 16px 0 16px; }
.contact__info > p { font-size: 1rem; margin-bottom: 34px; max-width: 42ch; }
.contact__items { display: flex; flex-direction: column; gap: 14px; }
.cinfo { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; transition: var(--t); }
.cinfo:hover { border-color: var(--gold); box-shadow: var(--sh-1); }
.cinfo__ic { width: 44px; height: 44px; border-radius: 11px; background: var(--navy); display: grid; place-items: center; flex-shrink: 0; }
.cinfo__ic svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cinfo__t b { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cinfo__t a, .cinfo__t span { font-size: .96rem; font-weight: 600; color: var(--navy); transition: color var(--t); }
.cinfo__t a:hover { color: var(--gold-deep); }

.contact__actions { display: flex; flex-direction: column; gap: 22px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-2); }
.form-card h3 { margin-bottom: 10px; }
.form-card__intro { margin-bottom: 22px; font-size: .9rem; line-height: 1.65; }
.hubspot-form { min-height: 1px; }
.integration-fallback { border-left: 3px solid var(--gold); background: var(--paper); border-radius: var(--r-sm); padding: 18px; }
.integration-fallback b { display: block; color: var(--navy); margin-bottom: 5px; }
.integration-fallback p { font-size: .88rem; line-height: 1.65; margin-bottom: 15px; }
.integration-fallback .btn { padding: 10px 16px; font-size: .84rem; }
.contact-submit { width: 100%; justify-content: center; margin-top: 6px; }
.contact-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.contact-mailto { width: 100%; justify-content: center; margin-top: 12px; }
.application-card { background: var(--navy); border-radius: var(--r-lg); padding: 34px 36px; scroll-margin-top: 108px; box-shadow: var(--sh-2); }
.application-card h3 { color: #fff; margin: 13px 0 10px; }
.application-card p { color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.7; margin-bottom: 0; }
.apply-intro { margin-bottom: 22px !important; }
.application-card [hidden] { display: none !important; }

/* Form fields on dark background */
.application-card .field { margin-bottom: 16px; }
.application-card .field label:not(.check-label) {
  color: rgba(255,255,255,.72); font-size: .74rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 7px;
}
.application-card .field input:not([type=checkbox]):not([type=file]),
.application-card .field select,
.application-card .field textarea {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #fff;
}
.application-card .field input:not([type=checkbox]):not([type=file])::placeholder,
.application-card .field textarea::placeholder { color: rgba(255,255,255,.38); }
.application-card .field input:not([type=checkbox]):not([type=file]):focus,
.application-card .field select:focus,
.application-card .field textarea:focus {
  background: rgba(255,255,255,.12); border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(236,200,29,.2);
}
.application-card .field select option { background: var(--navy-deep); color: #fff; }
.application-card input[type=file] {
  color: rgba(255,255,255,.75); font-size: .88rem; cursor: pointer;
  padding: 10px 14px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-sm); width: 100%;
}
.application-card input[type=file]::-webkit-file-upload-button {
  background: var(--navy-line); color: var(--gold); border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; padding: 5px 12px; font-size: .8rem; cursor: pointer;
  margin-right: 10px; font-family: inherit;
}

/* Checkbox rows */
.field-check { margin-bottom: 14px; }
.check-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-wrap { position: relative; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.checkbox-wrap input[type=checkbox] {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: pointer;
}
.checkbox-box {
  position: absolute; inset: 0; pointer-events: none;
  border: 2px solid rgba(255,255,255,.4); border-radius: 4px;
  background: transparent; transition: var(--t);
}
.checkbox-box::after {
  content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 9px;
  border: solid var(--navy); border-width: 0 2px 2px 0;
  transform: rotate(45deg); opacity: 0; transition: opacity .12s;
}
.checkbox-wrap input[type=checkbox]:checked + .checkbox-box {
  background: var(--gold); border-color: var(--gold);
}
.checkbox-wrap input[type=checkbox]:checked + .checkbox-box::after { opacity: 1; }
.checkbox-wrap input[type=checkbox]:focus-visible + .checkbox-box {
  box-shadow: 0 0 0 3px rgba(236,200,29,.35);
}
.check-label span { font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,.72); }
.apply-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.apply-link:hover { color: var(--gold-soft); }

/* Privacy policy modal */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(7,24,39,.72); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative; background: var(--white); border-radius: var(--r-lg);
  padding: 32px; max-width: 520px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: var(--sh-3);
}
.modal__panel h3 { color: var(--navy); margin-bottom: 14px; padding-right: 30px; }
.modal__panel p { font-size: .92rem; line-height: 1.7; color: var(--muted); margin-bottom: 0; }
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--border); background: var(--paper);
  font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--navy);
  display: grid; place-items: center; transition: var(--t);
}
.modal__close:hover { background: var(--border); }

/* Status messages */
.apply-status {
  margin: 14px 0; padding: 12px 16px;
  border-radius: var(--r-sm); font-size: .88rem; line-height: 1.6; display: block;
}
.apply-status--success {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.28); color: #86efac;
}
.apply-status--error {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.28); color: #fca5a5;
}

/* Submit button */
.apply-submit { width: 100%; justify-content: center; margin-top: 6px; }
.apply-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.field { margin-bottom: 18px; }
.field label:not(.check-label) { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-sm); font-family: inherit; font-size: .95rem; color: var(--ink);
  outline: none; transition: var(--t); -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(236,200,29,.16); }
.field input::placeholder, .field textarea::placeholder { color: #9aabbf; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Honeypot: a normal input kept off-screen (never display:none/type=hidden,
   which bots are known to skip) and out of the tab order/AT tree. */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Per-field validation errors */
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #b42318;
}
.field-error {
  display: block; margin-top: 6px; font-size: .82rem; font-weight: 700; line-height: 1.5;
}
.form-card .field-error { color: #b42318; }
.application-card .field-error { color: #fca5a5; }
.field-error:empty { display: none; }
.form-note { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted); margin-top: 14px; }
.form-note svg { width: 15px; height: 15px; stroke: var(--muted); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ============================================================
   FOOTER  (gebaseerd op ChatGPT-redesign referentie)
============================================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.65); padding: 76px 0 26px; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr) minmax(0, .8fr) minmax(0, .9fr); gap: 56px; padding-bottom: 0; border-bottom: 0; }
.footer__brand img { height: 46px; width: auto; max-width: 100%; margin-bottom: 22px; }
.footer__brand p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.68); max-width: 420px; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.fsoc { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-sm); display: grid; place-items: center; transition: var(--t); }
.fsoc svg { width: 17px; height: 17px; fill: rgba(255,255,255,.6); transition: fill var(--t); }
.fsoc:hover { border-color: var(--gold); background: rgba(236,200,29,.1); }
.fsoc:hover svg { fill: var(--gold); }
.footer__col { display: grid; gap: 11px; align-content: start; }
.footer__col h5 { font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer__col a { font-size: .9rem; color: rgba(255,255,255,.74); font-weight: 600; transition: color var(--t); }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--t); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.85); }

/* ============================================================
   REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; min-height: auto; padding: 70px 0 80px; }
  .hero__visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta__band { grid-template-columns: 1fr; padding: 56px 44px; }
  .about__inner { gap: 48px; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .section { padding: 88px 0; }
  .intro__head, .intro__body { grid-column: 1 / -1; }
  .intro__head h2 { margin-bottom: 22px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr 1fr; row-gap: 40px; }
  .steps::before { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .expertise__inner { flex-direction: column; align-items: flex-start; }
  .expertise__label { border-right: 0; border-bottom: 1px solid var(--navy-line); margin: 0 0 8px; padding: 24px 0 16px; width: 100%; }
  .expertise__item:not(:last-child)::after { display: none; }
  .expertise__item { padding: 14px 24px 14px 0; }
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }
}

@media (max-width: 720px) {
  .role-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .approach__top { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 44px; }
}

@media (max-width: 560px) {
  :root { --gut: 20px; }
  body { font-size: 16px; }
  .header__inner { height: 70px; gap: .75rem; }
  .brand img { max-width: min(178px, 58vw); }
  .header-cta > .lang-switch { display: none; }
  .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .section { padding: 70px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .modal__panel { padding: 24px; }
  .cta__band { padding: 44px 26px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ACTIVE NAV STATE (multi-page)
============================================================ */
.nav a.is-active { color: var(--navy); }
.nav a.is-active::after { width: 100%; }
.mobile a.is-active { color: var(--navy); }

/* ============================================================
   DIENSTEN-PAGINA
============================================================ */
/* compact page hero (navy) */
.page-hero { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; }
.page-hero__lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 30%, transparent 80%);
}
.page-hero__glow {
  position: absolute; width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,200,29,.14) 0%, transparent 62%);
  top: -200px; right: -160px; pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: center; padding: 80px 0 84px; }
.page-hero__copy { max-width: 600px; min-width: 0; }
.page-hero h1 { color: #fff; margin: 22px 0 20px; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero__sub { color: rgba(255,255,255,.74); font-size: 1.08rem; line-height: 1.78; margin-bottom: 34px; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* breadcrumb */
.crumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 600; }
.crumb a { color: rgba(255,255,255,.55); transition: color var(--t); }
.crumb a:hover { color: var(--gold); }
.crumb svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.4); fill: none; stroke-width: 2.4; }

/* hero side visual: stacked service mini-cards */
.page-hero__visual { position: relative; display: flex; flex-direction: column; gap: 14px; min-width: 0; max-width: 100%; }
.svc-mini {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); transition: var(--t);
}
.svc-mini:hover { background: rgba(255,255,255,.08); border-color: rgba(236,200,29,.4); transform: translateX(4px); }
.svc-mini__ic { width: 46px; height: 46px; border-radius: 11px; background: rgba(236,200,29,.12); display: grid; place-items: center; flex-shrink: 0; }
.svc-mini__ic svg { width: 23px; height: 23px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc-mini b { display: block; font-size: .96rem; color: #fff; font-weight: 700; }
.svc-mini span { font-size: .82rem; color: rgba(255,255,255,.6); }

/* numbered detailed service blocks */
.dienst-blocks { display: flex; flex-direction: column; gap: 28px; }
.dblock {
  display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 28px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 40px; transition: var(--t); position: relative; overflow: hidden;
  scroll-margin-top: 108px;
}
.dblock::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease-out); }
.dblock:hover { box-shadow: var(--sh-3); border-color: transparent; }
.dblock:hover::before { transform: scaleY(1); }
.dblock__ic { width: 64px; height: 64px; border-radius: 15px; background: var(--navy); display: grid; place-items: center; }
.dblock__ic svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.dblock__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.dblock__no { font-family: var(--font); font-size: .8rem; font-weight: 800; letter-spacing: .12em; color: var(--gold-deep); }
.dblock h3 { font-size: 1.35rem; }
.dblock__desc { font-size: .96rem; line-height: 1.75; margin-bottom: 22px; max-width: 70ch; }
.dblock__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.dblock__item { display: flex; gap: 11px; align-items: flex-start; }
.dblock__item svg { width: 19px; height: 19px; stroke: var(--gold-deep); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.dblock__item b { display: block; font-size: .88rem; color: var(--navy); font-weight: 700; line-height: 1.4; }
.dblock__item span { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* specialisaties */
.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.spec {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: var(--t); display: flex; flex-direction: column;
}
.spec:hover { box-shadow: var(--sh-3); border-color: var(--gold); transform: translateY(-4px); }
.spec__top { position: relative; background: var(--navy); padding: 32px; overflow: hidden; }
.spec__top::after {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 75% 25%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 75% 25%, #000, transparent 75%);
}
.spec__ic { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 13px; background: rgba(236,200,29,.13); border: 1px solid rgba(236,200,29,.3); display: grid; place-items: center; }
.spec__ic svg { width: 27px; height: 27px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.spec__body { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.spec__body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.spec__body p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.spec__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.spec__tags span { font-size: .72rem; font-weight: 600; color: var(--navy); background: var(--paper); border: 1px solid var(--border); border-radius: 5px; padding: 4px 11px; }
.spec__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-weight: 800; font-size: .85rem; color: var(--navy); transition: gap var(--t); }
.spec__link svg { width: 15px; height: 15px; stroke: var(--gold-deep); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.spec__link:hover { gap: 12px; }

/* responsive dienstenpagina */
@media (max-width: 1100px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 64px 0 70px; }
  .page-hero__visual { max-width: 520px; }
}
@media (max-width: 920px) {
  .dblock__list { grid-template-columns: 1fr; gap: 14px; }
  .spec-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .dblock { grid-template-columns: 1fr; gap: 18px; padding: 28px 22px; }
  .page-hero__actions { flex-direction: column; }
  .page-hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   QA ENGINEER-PAGINA
============================================================ */
/* role intro split */
.role-intro { background: var(--white); }
.role-intro__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 64px; align-items: center; }
.role-intro__text h2 { margin: 16px 0 18px; }
.role-intro__text p { margin-bottom: 16px; font-size: .98rem; }
.role-intro__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.role-intro__tags span { font-size: .78rem; font-weight: 600; color: var(--navy); background: var(--paper); border: 1px solid var(--border); border-radius: 50px; padding: 6px 14px; }
.role-intro__card {
  position: relative; background: var(--navy); border-radius: var(--r-lg); padding: 38px;
  overflow: hidden; box-shadow: var(--sh-3);
}
.role-intro__card::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(circle at 75% 20%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 75% 20%, #000, transparent 78%);
}
.role-intro__card-head { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.role-intro__card-ic { width: 50px; height: 50px; border-radius: 12px; background: rgba(236,200,29,.13); border: 1px solid rgba(236,200,29,.3); display: grid; place-items: center; }
.role-intro__card-ic svg { width: 25px; height: 25px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.role-intro__card-head b { color: #fff; font-size: 1.05rem; font-weight: 800; }
.role-intro__card-head span { display: block; font-size: .8rem; color: rgba(255,255,255,.6); }
.role-intro__rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.role-intro__row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1); }
.role-intro__row svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.role-intro__row span { font-size: .9rem; color: rgba(255,255,255,.85); font-weight: 500; }

/* learning path / timeline */
.path { background: var(--paper); }
.path-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; position: relative; margin-top: 8px; }
.path-steps::before {
  content: ""; position: absolute; top: 27px; left: 9%; right: 9%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px); z-index: 0;
}
.path-step { position: relative; z-index: 1; padding: 0 14px; text-align: center; }
.path-step__num { width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; background: var(--white); border: 2px solid var(--navy); color: var(--navy); display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; transition: var(--t); }
.path-step:hover .path-step__num { background: var(--gold); border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--sh-gold); }
.path-step h3 { font-size: 1rem; margin-bottom: 8px; }
.path-step p { font-size: .84rem; line-height: 1.6; }

/* skills checklist grid */
.skills { background: var(--white); }
.skills-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 8px; }
.skill {
  display: flex; align-items: flex-start; gap: 16px; padding: 24px 26px;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); transition: var(--t);
}
.skill:hover { background: #fff; border-color: var(--gold); box-shadow: var(--sh-2); transform: translateY(-3px); }
.skill__ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(236,200,29,.12); display: grid; place-items: center; flex-shrink: 0; }
.skill__ic svg { width: 22px; height: 22px; stroke: var(--gold-deep); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.skill b { display: block; font-size: .98rem; color: var(--navy); margin-bottom: 4px; }
.skill span { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* benefit cards */
.benefits { background: var(--paper); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.benefit { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 26px; transition: var(--t); }
.benefit:hover { box-shadow: var(--sh-3); transform: translateY(-4px); border-color: transparent; }
.benefit__ic { width: 52px; height: 52px; border-radius: 13px; background: var(--navy); display: grid; place-items: center; margin-bottom: 20px; transition: var(--t); }
.benefit__ic svg { width: 25px; height: 25px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit:hover .benefit__ic { background: var(--gold); }
.benefit:hover .benefit__ic svg { stroke: var(--navy); }
.benefit h3 { font-size: 1.02rem; margin-bottom: 10px; }
.benefit p { font-size: .87rem; line-height: 1.65; }

/* domain split */
.domain { background: var(--white); }
.domain__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.domain__text h2 { margin: 16px 0 18px; }
.domain__text p { font-size: .98rem; margin-bottom: 16px; }
.domain__card { background: var(--navy); border-radius: var(--r-lg); padding: 40px; position: relative; overflow: hidden; box-shadow: var(--sh-3); }
.domain__card::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at 20% 80%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 20% 80%, #000, transparent 78%);
}
.domain__card-label { position: relative; z-index: 1; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.domain__chips { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }
.domain__chip {
  display: flex; align-items: center; gap: 10px; padding: 13px 18px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm); transition: var(--t);
}
.domain__chip:hover { background: rgba(236,200,29,.1); border-color: rgba(236,200,29,.4); }
.domain__chip svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.domain__chip span { color: #fff; font-size: .88rem; font-weight: 600; }

/* quote block */
.quote-block { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.quote-block__bg {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000, transparent 75%);
}
.quote-block__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.quote-block__mark { font-family: var(--font); font-size: 4rem; line-height: 1; color: var(--gold); font-weight: 800; margin-bottom: 8px; }
.quote-block blockquote { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.4; color: #fff; letter-spacing: -.02em; }
.quote-block blockquote .hl { color: var(--gold); }

/* responsive QA page */
@media (max-width: 1100px) {
  .role-intro__inner, .domain__inner { gap: 44px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .role-intro__inner, .domain__inner { grid-template-columns: 1fr; }
  .path-steps { grid-template-columns: 1fr 1fr 1fr; row-gap: 38px; }
  .path-steps::before { display: none; }
  .skills-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .path-steps { grid-template-columns: 1fr 1fr; }
  .role-intro__card, .domain__card { padding: 28px; }
}

/* ============================================================
   LANGUAGE TOGGLE
============================================================ */
.lang-switch {
  display: inline-flex; align-items: center; border: 1px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden; background: var(--paper);
}
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font); font-size: .78rem; font-weight: 700; letter-spacing: .03em;
  color: var(--navy-deep); padding: 7px 11px; transition: var(--t); line-height: 1;
}
.lang-switch button.active { background: var(--navy); color: #fff; }
.lang-switch button:not(.active):hover { color: var(--navy); }
.header-cta { gap: .75rem; }
@media (max-width: 720px) {
  .lang-switch { margin-right: 4px; }
}
/* language toggle inside mobile menu */
.mobile .lang-switch { align-self: flex-start; margin-top: 12px; }

/* ============================================================
   OVER ONS
============================================================ */
.story { background: var(--white); }
.story__inner { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 64px; align-items: center; }
.story__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); aspect-ratio: 4 / 5; }
.story__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.story__media-tag {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  background: var(--navy); color: #fff; border-radius: var(--r);
  padding: 14px 18px; border-left: 3px solid var(--gold); box-shadow: var(--sh-2);
}
.story__media-tag b { display: block; font-size: .92rem; font-weight: 800; }
.story__media-tag span { font-size: .76rem; color: rgba(255,255,255,.7); }
.story__text h2 { margin: 16px 0 18px; }
.story__text p { font-size: .98rem; line-height: 1.78; margin-bottom: 16px; }
.values { background: var(--paper); }
.values__grid { display: flex; flex-direction: column; gap: 22px; max-width: 920px; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 40px; transition: var(--t); position: relative; overflow: hidden;
}
.value-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease-out); }
.value-card:hover { box-shadow: var(--sh-3); border-color: transparent; }
.value-card:hover::before { transform: scaleY(1); }
.value-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.value-card p { font-size: .98rem; line-height: 1.75; max-width: 75ch; }

/* ============================================================
   LOCATIES
============================================================ */
.locs { background: var(--paper); }
.locs__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.loc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 32px; transition: var(--t); display: flex; flex-direction: column;
}
.loc-card:hover { box-shadow: var(--sh-3); border-color: var(--gold); transform: translateY(-4px); }
.loc-card__label { display: inline-flex; align-items: center; gap: 9px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; }
.loc-card__label::before { content: ""; width: 22px; height: 2px; background: var(--gold); }
.loc-card h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 16px; }
.loc-card__addr { font-size: .96rem; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.loc-card__addr p { margin: 0; }
.loc-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; align-self: flex-start; font-weight: 800; font-size: .85rem; color: var(--navy); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 10px 18px; transition: var(--t); }
.loc-card__link:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.page-hero__slider {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-3); aspect-ratio: 4 / 3; background: var(--navy-deep);
}

@media (max-width: 1100px) {
  .page-hero__slider { aspect-ratio: 16 / 9; max-width: 560px; }
}
@media (max-width: 980px) {
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__media { aspect-ratio: 16 / 10; max-width: 560px; }
}
@media (max-width: 920px) {
  .locs__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .value-card { padding: 28px 24px; }
}

/* ============================================================
   LOCATIE-DETAIL - content cards
   Scoped for location subpages so the locations overview stays unchanged.
============================================================ */
.locd { background: var(--paper); }
.locd__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.locd__grid.is-single { grid-template-columns: 1fr; max-width: 860px; }
.locd-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 38px; box-shadow: var(--sh-1); display: flex; flex-direction: column;
}
.locd-card h2 { font-size: 1.5rem; margin-bottom: 14px; }
.locd-card > p { font-size: .98rem; line-height: 1.78; color: var(--muted); margin-bottom: 24px; max-width: 62ch; }
.locd__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.locd .office-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 34px; box-shadow: var(--sh-1);
}
.locd .office-card .kicker { margin-bottom: 14px; }
.locd .office-card h3 { font-size: 1.3rem; margin-bottom: 16px; color: var(--navy); }
.locd .office-card address { font-style: normal; color: var(--muted); font-size: .98rem; line-height: 1.85; }
.locd .office-card address p { margin: 0; }

/* ============================================================
   LOCATIE-DETAIL HERO - fixed image left, text right
   Scoped on .location-hero--with-image; does not affect locaties.html.
============================================================ */
.location-hero--with-image .page-hero__inner { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; }
.location-hero__image {
  order: 1; position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-3); aspect-ratio: 4 / 3; background: var(--navy-deep);
}
.location-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.location-hero__content { order: 2; max-width: 600px; }
.location-hero--with-image h1 { font-size: clamp(1.85rem, 2.7vw, 2.55rem); line-height: 1.12; margin: 16px 0 18px; }
.location-hero--with-image .page-hero__sub { font-size: 1.04rem; line-height: 1.78; max-width: 52ch; margin-bottom: 30px; }

@media (max-width: 1100px) {
  .location-hero--with-image .page-hero__inner { grid-template-columns: 1fr; }
  .location-hero__content { order: 1; }
  .location-hero__image { order: 2; width: 100%; aspect-ratio: 16 / 10; max-width: 560px; }
  .locd__grid { grid-template-columns: 1fr; }
  .locd-card { padding: 30px 26px; }
}

/* ============================================================
   SEO LANDING PAGES
============================================================ */
.market-hero .page-hero__inner { max-width: 880px; }
.market-hero h1 { max-width: 820px; }
.market-hero p { max-width: 760px; }
.market-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-bottom: 44px; }
.market-card, .office-card, .content-panel {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-1);
}
.market-card h3, .office-card h2, .office-card h3, .content-panel h2 { margin-bottom: 12px; }
.market-card p, .office-card p, .content-panel p { line-height: 1.75; }
.office-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.office-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.office-card .kicker { margin-bottom: 18px; }
.office-card .btn { margin-top: 20px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 22px; }
.content-panel + .content-panel { margin-top: 22px; }
.content-panel .hero__actions { margin-top: 24px; }
.content-panel--narrow { max-width: 860px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.contact-layout h2 { margin: 14px 0 18px; }
.contact-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.contact-stack a { color: var(--navy); font-weight: 700; }
.faq-list { max-width: 920px; }
.faq-list details { border: 1px solid var(--border); border-radius: var(--r); padding: 20px 24px; background: var(--white); margin-bottom: 14px; }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq-list p { padding-top: 12px; }
.footer__locations {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
  padding: 26px 0; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.footer__locations b { display: block; color: var(--gold); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 7px; }
.footer__locations b.footer__sublabel { margin-top: 12px; }
.footer__locations a { display: block; color: rgba(255,255,255,.66); font-size: .86rem; margin-bottom: 5px; }
.footer__locations a:hover { color: var(--white); }
.legal-pending { color: rgba(255,255,255,.54); font-size: .76rem; }
.legal-pending--block { display: block; margin-top: 1.2rem; }
.form-status { margin-top: 14px; border-left: 3px solid var(--gold); background: var(--paper); padding: 11px 14px; font-size: .82rem; }

@media (max-width: 920px) {
  .market-grid, .office-grid, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .office-grid.compact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer__locations, .office-grid.compact { grid-template-columns: 1fr; }
}
