/* =========================================================
   Arbotrust — stylesheet
   Stijl: helder · vertrouwd · premium (geïnspireerd op ELEF)
   Palet: crème + kobaltblauw  ·  Fonts: Schibsted Grotesk + Fraunces
   ========================================================= */

:root {
  --cream:    #F4F1E9;
  --cream-2:  #FBFAF4;
  --cream-3:  #EFEBE0;
  --ink:      #16181F;
  --ink-soft: #565A66;
  --blue:     #1E40D8;
  --blue-2:   #2C50F0;
  --blue-deep:#13226B;
  --sky-1:    #E4EBFB;
  --sky-2:    #BBCEF4;
  --sky-3:    #93B2EE;
  --line:     rgba(22, 24, 31, 0.14);
  --line-soft:rgba(22, 24, 31, 0.08);
  --white:    #FFFFFF;

  --font-sans: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: var(--cream); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-sans); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }
p { margin: 0; }
em { font-style: italic; }

.serif, h1 em, h2 em, .hero__title-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--blue); color: var(--cream); padding: 0.75rem 1.25rem; border-radius: 0 0 10px 0; z-index: 1000; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

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

/* ===== Knoppen ===== */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.975rem; letter-spacing: -0.01em;
  padding: 0.78rem 1.4rem;
  border: 1.5px solid transparent; border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.45s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { box-shadow: 0 12px 30px -12px rgba(30, 64, 216, 0.55); }
.btn--primary:hover { background: var(--blue-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: var(--cream); color: var(--blue); }
.btn--light:hover { background: var(--white); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(244,241,233,0.4); }
.btn--ghost-light:hover { border-color: var(--cream); }
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: 1.1rem; transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { padding-block: 0.7rem; background: rgba(244, 241, 233, 0.82); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom-color: var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em; }
.logo__mark { flex: none; color: var(--blue); transition: transform 0.6s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__accent { color: var(--blue); }
.logo--light, .logo--light .logo__accent { color: var(--cream); }
.logo--light .logo__mark { color: var(--cream); }

.nav__list { display: flex; gap: 2rem; }
.nav__list a { position: relative; font-weight: 500; font-size: 0.97rem; color: var(--ink-soft); transition: color 0.25s; }
.nav__list a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1.5px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__list a:hover, .nav__list a.is-active { color: var(--ink); }
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { background: var(--cream); border-bottom: 1px solid var(--line); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; padding: 1rem var(--gutter) 1.75rem; }
.mobile-menu a { padding: 0.85rem 0; font-size: 1.15rem; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 0.75rem; border-bottom: none; }

/* ===== Hero ===== */
.hero { position: relative; padding-top: clamp(5.5rem, 9vw, 7.5rem); padding-bottom: clamp(1rem, 3vw, 2.5rem); }
/* Achtergrond op eigen, geclipte laag: blur loopt netjes door tot de rand (geen lijntje) */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/hero-bg.jpg") center top / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.08); /* schaalt de wazige rand buiten beeld */
}
/* Crème/blauwe waas eroverheen zodat het kader rustig "zweeft" */
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(244,241,233,0.74), rgba(244,241,233,0.84)),
    radial-gradient(42% 44% at 5% 8%, rgba(30,64,216,0.16), transparent 66%),
    radial-gradient(52% 60% at 98% 92%, rgba(110,148,228,0.42), transparent 72%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-frame { position: relative; border-radius: var(--radius-xl); padding: clamp(0.6rem, 2.2vw, 1.6rem); background: radial-gradient(120% 130% at 80% 0%, var(--sky-1), transparent 55%), linear-gradient(150deg, var(--sky-2), var(--sky-3) 70%, #7CA0E8); box-shadow: 0 40px 90px -50px rgba(19, 34, 107, 0.5); overflow: hidden; }
.hero-frame__grain, .manifesto__grain, .employer__grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.07; mix-blend-mode: multiply;
}
.hero-panel { position: relative; overflow: hidden; --hero-bg-opacity: 0.14; background: radial-gradient(72% 55% at 88% 2%, rgba(187,206,244,0.22), transparent 58%), var(--cream-2); border-radius: clamp(20px, 2.4vw, 26px); padding: clamp(1.4rem, 3.5vw, 3rem) clamp(1.4rem, 4vw, 3.4rem) clamp(1.6rem, 3vw, 2.6rem); }
/* Subtiele achtergrondfoto. Sla je afbeelding op als assets/hero-bg.jpg.
   Doorzichtigheid bijstellen via --hero-bg-opacity hierboven (0 = uit, 0.14 = subtiel). */
.hero-panel::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: none; }
/* Crème waas zodat tekst leesbaar blijft over de foto */
.hero-panel::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(100deg, rgba(251,250,244,0.72) 0%, rgba(251,250,244,0.35) 48%, rgba(251,250,244,0.15) 100%); }
.hero-panel > * { position: relative; z-index: 1; }
.hero-panel__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(30, 64, 216, 0.5); animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(30, 64, 216, 0.5); } 70%, 100% { box-shadow: 0 0 0 9px rgba(30, 64, 216, 0); } }
.hero-panel__meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.hero-grid { display: grid; grid-template-columns: 1fr minmax(260px, 360px) 1fr; grid-template-areas: "title media ." "statl media statr"; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center; }
.hero__title { grid-area: title; align-self: end; font-weight: 500; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem); color: var(--blue); line-height: 1.04; text-wrap: balance; }
.hero__title-sans { display: block; }
.hero__title-serif { display: block; font-size: 1.06em; }
.hero-photo { grid-area: media; position: relative; aspect-ratio: 3 / 3.7; border-radius: 16px; background: radial-gradient(90% 70% at 50% 15%, rgba(255,255,255,0.55), transparent 60%), linear-gradient(155deg, #E7EDFC, #BFD0F6 55%, #9DB9F0); display: grid; place-items: center; overflow: hidden; box-shadow: 0 26px 50px -28px rgba(19, 34, 107, 0.4); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(30,64,216,0.10) 1px, transparent 1px); background-size: 13px 13px; opacity: 0.55; }
.hero-photo__tab { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--blue-deep); background: rgba(255,255,255,0.75); backdrop-filter: blur(4px); padding: 0.35rem 0.7rem; border-radius: 100px; }
.hero-photo__hint { position: relative; z-index: 1; display: grid; justify-items: center; gap: 0.3rem; text-align: center; color: var(--blue-deep); font-weight: 600; }
.hero-photo__hint svg { color: var(--blue); opacity: 0.85; margin-bottom: 0.25rem; }
.hero-photo__hint small { font-weight: 500; font-size: 0.78rem; color: rgba(19,34,107,0.6); max-width: 16ch; }
.hero-stat { align-self: end; }
.hero-stat--left { grid-area: statl; }
.hero-stat--right { grid-area: statr; text-align: right; }
.hero-stat__num { display: block; font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); line-height: 0.9; color: var(--blue); border-top: 1.5px solid var(--line); padding-top: 1rem; }
.hero-stat__num .unit { font-size: 0.5em; }
.hero-stat__cap { margin-top: 0.75rem; font-size: 0.82rem; line-height: 1.4; color: var(--ink-soft); max-width: 24ch; }
.hero-stat--right .hero-stat__cap { margin-left: auto; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* Hero-variant met explainer-video */
.hero-grid.hero-grid--video { grid-template-columns: 1fr 1.15fr; grid-template-areas: "title video" "statl video"; gap: clamp(1.5rem, 3.5vw, 3rem); }
.hero-grid--video .hero__title { align-self: end; }
.hero-grid--video .hero-stat--left { align-self: start; }
.hero-video { grid-area: video; position: relative; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden; display: grid; place-items: center; background: radial-gradient(90% 80% at 50% 18%, rgba(255,255,255,0.55), transparent 60%), linear-gradient(155deg, #E7EDFC, #BFD0F6 55%, #9DB9F0); box-shadow: 0 30px 60px -30px rgba(19,34,107,0.45); }
.hero-video::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(30,64,216,0.10) 1px, transparent 1px); background-size: 14px 14px; opacity: 0.5; pointer-events: none; }
.hero-video__tab { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--blue-deep); background: rgba(255,255,255,0.8); backdrop-filter: blur(4px); padding: 0.35rem 0.7rem; border-radius: 100px; }
.hero-video__play { position: relative; z-index: 1; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--white); color: var(--blue); box-shadow: 0 14px 30px -10px rgba(19,34,107,0.5); transition: transform 0.4s var(--ease); }
.hero-video__play svg { margin-left: 3px; }
.hero-video__play::before { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.65); animation: ping 2.6s var(--ease) infinite; }
.hero-video:hover .hero-video__play { transform: scale(1.08); }
.hero-video__hint { position: absolute; bottom: 1.1rem; left: 0; right: 0; z-index: 1; text-align: center; color: var(--blue-deep); font-weight: 600; display: grid; gap: 0.1rem; }
.hero-video__hint small { font-weight: 500; font-size: 0.78rem; color: rgba(19,34,107,0.6); }
.hero-video iframe, .hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; z-index: 3; }

/* Dual-route — luchtige link-regels i.p.v. blokken */
.routes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); }
.route { display: flex; align-items: center; gap: 0.85rem; padding: 0.7rem 0.9rem; border-radius: 12px; background: transparent; border: none; transition: background 0.3s; }
.route + .route { position: relative; }
.route + .route::before { content: ""; position: absolute; left: 0; top: 0.5rem; bottom: 0.5rem; width: 1px; background: var(--line-soft); }
.route:hover { transform: none; box-shadow: none; background: rgba(30,64,216,0.06); }
.route__icon { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(30,64,216,0.10); color: var(--blue); }
.route__body { display: grid; gap: 0.05rem; }
.route__body strong { font-size: 1rem; font-weight: 600; }
.route__body span { font-size: 0.85rem; color: var(--ink-soft); }
.route__arrow { margin-left: auto; font-size: 1.05rem; color: var(--blue); transition: transform 0.4s var(--ease); }
.route:hover .route__arrow { transform: translateX(4px); }

.hero__down { display: grid; place-items: center; width: 44px; height: 44px; margin: 1.5rem auto 0; color: var(--blue); border-radius: 50%; transition: background 0.3s; }
.hero__down svg { animation: bobbing 1.9s var(--ease) infinite; }
.hero__down:hover { background: rgba(30,64,216,0.08); }
@keyframes bobbing { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ===== Trust marquee ===== */
.trust { padding-block: clamp(1.5rem, 3vw, 2.25rem); border-block: 1px solid var(--line-soft); overflow: hidden; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; align-items: center; width: max-content; gap: 0; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-size: 1rem; font-weight: 500; color: var(--ink-soft); white-space: nowrap; padding-inline: 1.4rem; }
.marquee__sep { flex: none; width: 18px; height: 18px; background: var(--blue); opacity: 0.85; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 2 L28 8 V17 C28 24 22.6 28.7 16 31 C9.4 28.7 4 24 4 17 V8 Z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 2 L28 8 V17 C28 24 22.6 28.7 16 31 C9.4 28.7 4 24 4 17 V8 Z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Secties algemeen ===== */
.section { padding-block: var(--section-y); }
/* Zachte toonwisseling tussen secties — minder vlak-wit, zonder foto's */
.intro, .person-section, .pricing, .contact { background: var(--cream-3); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; }
.section-eyebrow--light { color: var(--sky-2); }
.section-title { font-size: clamp(1.9rem, 1.4rem + 2.3vw, 3.1rem); font-weight: 500; }
.section-title em { color: var(--blue); }
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--sky-2); }
.section-sub { margin-top: 1.25rem; font-size: 1.1rem; color: var(--ink-soft); }
.section-sub a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.section-head--center .section-sub { margin-inline: auto; max-width: 56ch; }

/* ===== Situaties ===== */
.situations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.situation { background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.8rem 1.6rem; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.situation:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -28px rgba(19,34,107,0.28); }
.situation__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(30,64,216,0.09); color: var(--blue); margin-bottom: 1.1rem; }
.situation__icon svg { width: 24px; height: 24px; }
.situation h3 { font-size: 1.2rem; font-weight: 600; }
.situation p { margin-top: 0.5rem; font-size: 0.96rem; color: var(--ink-soft); }
.situations__cta { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.situations__reassure { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Intro ===== */
.intro__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.intro__head { position: sticky; top: 110px; }
.intro__body { font-size: 1.1rem; color: var(--ink-soft); }
.intro__body p + p { margin-top: 1.15rem; }
.intro__body strong { color: var(--ink); }
.ticks { margin-top: 1.75rem; display: grid; gap: 0.85rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--ink); font-weight: 500; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 0.3em; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.5 L5 9 L9.5 3.5' fill='none' stroke='%23F4F1E9' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat, var(--blue); }

/* ===== Manifest ===== */
.manifesto { position: relative; background: var(--blue-deep) url("../assets/manifest.jpg") center / cover no-repeat; color: var(--cream); padding-block: clamp(4rem, 9vw, 7rem); overflow: hidden; }
/* Diepblauwe waas (donkerder links waar de quote staat) zodat de tekst scherp leesbaar blijft */
.manifesto::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(19,34,107,0.94) 0%, rgba(19,34,107,0.74) 42%, rgba(19,34,107,0.52) 100%); }
.manifesto > .container { position: relative; z-index: 1; }
.manifesto__grain { opacity: 0.1; }
.manifesto__quote { position: relative; font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 3.2vw, 4rem); line-height: 1.12; letter-spacing: -0.01em; max-width: 18ch; }
.manifesto__quote em { color: var(--sky-2); }

/* ===== Diensten ===== */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.service-card { background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2rem 1.6rem 1.8rem; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(19, 34, 107, 0.3); border-color: transparent; }
.service-card:hover .service-card__num { color: var(--blue-2); }
.service-card__num { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--blue); transition: color 0.4s; }
.service-card h3 { margin-top: 1rem; font-size: 1.3rem; font-weight: 500; }
.service-card p { margin-top: 0.65rem; font-size: 0.97rem; color: var(--ink-soft); }

/* ===== Breather (sfeerfoto) ===== */
.breather { position: relative; min-height: clamp(320px, 46vw, 560px); display: grid; align-items: center; background: url("../assets/breather.jpg") center / cover no-repeat; overflow: hidden; }
.breather__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,34,107,0.82) 0%, rgba(19,34,107,0.46) 48%, rgba(19,34,107,0.12) 100%); }
.breather__inner { position: relative; }
.breather__tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); background: rgba(0,0,0,0.18); padding: 0.35rem 0.7rem; border-radius: 100px; margin-bottom: 1.25rem; }
.breather__quote { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3.2rem); line-height: 1.15; color: var(--cream); max-width: 20ch; }
.breather__quote em { color: var(--sky-2); }

/* ===== Profiel (één vertrouwenspersoon) ===== */
.profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: start; }
.profile__photo { align-self: start; }
/* Tweede profiel: scheiding + gespiegeld (foto rechts) op desktop */
.profile--second { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line-soft); }
@media (min-width: 981px) {
  .profile--second { grid-template-columns: 1.15fr 0.85fr; }
  .profile--second .profile__photo { grid-column: 2; grid-row: 1; }
  .profile--second .profile__body { grid-column: 1; grid-row: 1; }
}
.profile__photo { position: relative; aspect-ratio: 4 / 4.6; border-radius: var(--radius-lg); overflow: hidden; display: grid; place-items: center; background: linear-gradient(150deg, var(--blue-2), var(--blue-deep)); }
.profile__photo::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px); background-size: 15px 15px; opacity: 0.5; }
.profile__tab { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; color: var(--blue-deep); background: rgba(255,255,255,0.85); padding: 0.35rem 0.7rem; border-radius: 100px; }
.profile__monogram { position: relative; font-family: var(--font-serif); font-style: italic; font-size: 3.4rem; color: rgba(255,255,255,0.92); }
.profile__photohint { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile__photo:has(img)::after { display: none; }
.profile__body { align-self: center; }
.profile__name { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem); font-weight: 500; }
.profile__role { margin-top: 0.3rem; color: var(--blue); font-weight: 500; font-size: 1.05rem; }
.profile__bio { margin-top: 1.25rem; font-size: 1.08rem; color: var(--ink-soft); max-width: 52ch; }
.profile__facts { margin-top: 1.75rem; display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.profile__facts li { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); }
.profile__fact-label { flex: none; width: 9rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.profile__fact-value { font-weight: 500; }
.profile__tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.profile__tags span { font-size: 0.82rem; color: var(--ink-soft); background: var(--cream); border: 1px solid var(--line-soft); padding: 0.35rem 0.8rem; border-radius: 100px; }
.profile__social { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.profile__social-label { font-size: 0.85rem; color: var(--ink-soft); margin-right: 0.25rem; }
.profile__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); color: var(--ink-soft); transition: color 0.25s, border-color 0.25s, transform 0.4s var(--ease); }
.profile__social a:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.profile__social svg { width: 19px; height: 19px; }
.person-section__network { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; font-size: 1.02rem; color: var(--ink-soft); max-width: 60ch; margin-inline: auto; }

/* ===== Werkwijze ===== */
.process__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.process__head { position: sticky; top: 110px; }
.steps { display: grid; gap: 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 23px; top: 2.4rem; bottom: 2.4rem; width: 1.5px; background: var(--line); }
.step { display: flex; gap: 1.5rem; padding: 1.6rem 0; position: relative; }
.step__num { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--blue); background: var(--cream); font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--blue); position: relative; z-index: 1; }
.step h3 { font-size: 1.25rem; font-weight: 500; }
.step p { margin-top: 0.35rem; color: var(--ink-soft); }

/* ===== Voor werkgevers ===== */
.employer__panel { position: relative; background: var(--blue); color: var(--cream); border-radius: var(--radius-xl); padding: clamp(2.25rem, 5vw, 4rem); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; overflow: hidden; }
.employer__grain { opacity: 0.08; }
.employer__panel::after { content: ""; position: absolute; top: -50%; right: -10%; width: 55%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%); filter: blur(10px); pointer-events: none; }
.employer__intro { position: relative; z-index: 1; }
.employer__text { margin-block: 1.5rem; color: rgba(244,241,233,0.85); font-size: 1.08rem; }
.employer__law { position: relative; border-left: 3px solid var(--sky-2); padding: 0.85rem 0 0.85rem 1.1rem; margin-bottom: 1.75rem; }
.employer__law strong { display: block; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sky-2); margin-bottom: 0.35rem; }
.employer__law p { color: rgba(244,241,233,0.9); font-size: 1rem; }
.employer__law em { color: var(--cream); font-weight: 500; }
.employer__sla { margin-top: 0.9rem; font-size: 0.9rem; color: rgba(244,241,233,0.7); }
.employer__values { position: relative; z-index: 1; display: grid; gap: 1.1rem; }
.employer__values li { padding: 1.1rem 1.3rem; border: 1px solid rgba(244,241,233,0.22); border-radius: 14px; transition: background 0.4s, border-color 0.4s; }
.employer__values li:hover { background: rgba(244,241,233,0.08); border-color: rgba(244,241,233,0.4); }
.employer__values strong { display: block; font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; font-weight: 500; }
.employer__values span { font-size: 0.93rem; color: rgba(244,241,233,0.72); }

/* Wat de werkgever krijgt */
.deliverables { margin-top: clamp(3rem, 6vw, 4.5rem); }
.deliverables__title { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); font-weight: 500; margin-bottom: 1.75rem; }
.deliverables__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.deliverable { padding: 1.5rem; background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.deliverable__no { font-family: var(--font-serif); font-style: italic; color: var(--blue); font-size: 1.05rem; }
.deliverable p { margin-top: 0.6rem; font-size: 0.96rem; color: var(--ink-soft); }
.deliverables__cost { margin-top: 1.75rem; font-size: 1.05rem; color: var(--ink); max-width: 70ch; }

/* ===== Tarieven ===== */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card { position: relative; background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.price-card--featured { background: var(--white); border-color: var(--blue); box-shadow: 0 30px 60px -34px rgba(30,64,216,0.45); }
.price-card__badge { position: absolute; top: -0.8rem; left: 1.8rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--cream); background: var(--blue); padding: 0.3rem 0.8rem; border-radius: 100px; }
.price-card h3 { font-size: 1.4rem; font-weight: 500; }
.price-card__desc { margin-top: 0.5rem; font-size: 0.96rem; color: var(--ink-soft); }
.price-card__tiers { margin-top: 1.5rem; display: grid; gap: 0; }
.price-card__tiers li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.8rem 0; border-top: 1px solid var(--line-soft); }
.price-card__tiers li span { color: var(--ink-soft); font-size: 0.95rem; }
.price-card__tiers strong { font-weight: 600; white-space: nowrap; }
.price-card__big { margin-top: 1.5rem; font-family: var(--font-serif); font-style: italic; font-size: 2.4rem; color: var(--blue); line-height: 1; }
.price-card__big span { font-family: var(--font-sans); font-style: normal; font-size: 1rem; color: var(--ink-soft); margin-left: 0.35rem; }
.price-card__note { margin-top: auto; padding-top: 1.25rem; font-size: 0.88rem; color: var(--ink-soft); }
.price-card__note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.pricing__sla { margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.pricing__sla span { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== FAQ accordeon ===== */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.faq__head { position: sticky; top: 110px; }
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.4rem 0; font-size: 1.12rem; font-weight: 500; transition: color 0.25s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; margin-left: auto; font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform 0.4s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--blue); }
.faq__no { font-family: var(--font-serif); font-style: italic; color: var(--blue); font-size: 1rem; }
.faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq__item[open] .faq__answer { max-height: 320px; }
.faq__answer p { padding: 0 0 1.5rem 2.2rem; color: var(--ink-soft); max-width: 62ch; }
.faq__answer a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Contact ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__lead { margin-top: 1.25rem; font-size: 1.1rem; color: var(--ink-soft); }
.contact__details { margin-top: 2rem; display: grid; gap: 0.85rem; }
.contact__line { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 1.1rem; font-weight: 500; width: fit-content; transition: color 0.25s; }
.contact__line:hover { color: var(--blue); }
.contact__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(30,64,216,0.10); color: var(--blue); font-size: 1.05rem; }
.contact__line--wa .contact__icon { background: rgba(37,211,102,0.14); color: #1faa52; }
.contact__line--addr { align-items: flex-start; cursor: default; }
.contact__line--addr:hover { color: var(--ink); }
.contact__addr { display: grid; line-height: 1.4; }
.contact__addr > span { font-size: 0.85rem; font-weight: 400; color: var(--ink-soft); }
.contact__crisis { margin-top: 2rem; padding: 1.1rem 1.25rem; background: rgba(30,64,216,0.06); border-left: 3px solid var(--blue); border-radius: 0 12px 12px 0; font-size: 0.95rem; display: grid; gap: 0.5rem; }
.contact__crisis a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.contact__form { background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: var(--radius-xl); padding: clamp(1.6rem, 3vw, 2.4rem); }
.form-reassure { font-size: 0.92rem; color: var(--ink); background: rgba(30,64,216,0.06); border-radius: 12px; padding: 0.85rem 1rem; margin-bottom: 1.5rem; }
.form-route { border: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.form-route legend { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; padding: 0; }
.form-route__opt { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.9rem; border: 1.5px solid var(--line); border-radius: 100px; cursor: pointer; font-size: 0.95rem; transition: border-color 0.25s, background 0.25s; }
.form-route__opt:has(input:checked) { border-color: var(--blue); background: rgba(30,64,216,0.07); color: var(--blue); font-weight: 500; }
.form-route__opt input { accent-color: var(--blue); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.field .optional { color: var(--ink-soft); font-weight: 400; }
.field input, .field textarea { width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink); padding: 0.8rem 1rem; background: var(--cream); border: 1.5px solid transparent; border-radius: 12px; transition: border-color 0.25s, background 0.25s; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-weight: 500; min-height: 1.2em; }
.form-status.is-ok { color: var(--blue); }
.form-status.is-error { color: #C0392B; }
.form-privacy { margin-top: 0.9rem; font-size: 0.83rem; color: var(--ink-soft); }
.form-privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(244,241,233,0.7); }
.footer-cta { border-bottom: 1px solid rgba(244,241,233,0.12); }
.footer-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; padding-block: clamp(2rem, 4vw, 3rem); }
.footer-cta__inner p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); color: var(--cream); }
.footer-cta__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer__tag { margin-top: 1.1rem; font-size: 0.95rem; line-height: 1.5; }
.footer__assure { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.footer__assure li { font-size: 0.78rem; color: rgba(244,241,233,0.8); border: 1px solid rgba(244,241,233,0.2); padding: 0.3rem 0.7rem; border-radius: 100px; }
.footer__nav, .footer__contact { display: grid; gap: 0.6rem; align-content: start; }
.footer h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,241,233,0.45); margin-bottom: 0.4rem; }
.footer__nav a, .footer__contact a { transition: color 0.25s; width: fit-content; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--cream); }
.footer__contact p { margin-top: 0.5rem; font-size: 0.9rem; }
.footer__crisis { color: rgba(244,241,233,0.85); }
.footer__crisis strong { color: var(--cream); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-block: 1.5rem; border-top: 1px solid rgba(244,241,233,0.12); font-size: 0.85rem; }
.footer__bottom a { text-decoration: underline; text-underline-offset: 2px; }
.footer__bottom a:hover { color: var(--cream); }

/* ===== Doc-pagina's (privacy / klachten / artikel) ===== */
.doc { max-width: 760px; margin-inline: auto; padding-block: clamp(7rem, 12vw, 10rem) var(--section-y); }
.doc h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); font-weight: 500; margin-bottom: 0.5rem; }
.doc__lead { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 2.5rem; }
.doc h2 { font-size: 1.4rem; font-weight: 500; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.doc h2 em { color: var(--blue); }
.doc p, .doc li { color: var(--ink-soft); }
.doc p { margin-bottom: 1rem; }
.doc ul { display: grid; gap: 0.5rem; margin-bottom: 1rem; padding-left: 1.25rem; list-style: disc; }
.doc a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.doc__back { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 2rem; color: var(--blue); font-weight: 500; }
.doc__todo { background: rgba(30,64,216,0.06); border-left: 3px solid var(--blue); padding: 1rem 1.25rem; border-radius: 0 12px 12px 0; margin: 1.5rem 0; font-size: 0.95rem; }

/* ===== Reveal-animaties ===== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav, .nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .intro__grid, .process__grid, .faq__grid { grid-template-columns: 1fr; }
  .intro__head, .process__head, .faq__head { position: static; }
  .situations__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid, .deliverables__grid { grid-template-columns: repeat(2, 1fr); }
  .employer__panel { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .profile { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .routes { grid-template-columns: 1fr; gap: 0; }
  .route + .route::before { left: 0.9rem; right: 0.9rem; top: 0; bottom: auto; width: auto; height: 1px; }

  /* Hero herordenen: titel → foto → samengevoegde stat-regel → CTA's */
  .hero-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "title title" "media media" "statl statr"; }
  .hero__title { align-self: start; }
  .hero-photo { max-width: 380px; margin-inline: auto; width: 100%; aspect-ratio: 3 / 2.6; }
  .hero-grid.hero-grid--video { grid-template-columns: 1fr; grid-template-areas: "title" "video" "statl"; }
  .hero-grid--video .hero-video { aspect-ratio: 16 / 9; }
}

@media (max-width: 560px) {
  .situations__grid, .services__grid, .deliverables__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom, .footer-cta__inner { flex-direction: column; align-items: flex-start; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "title" "media" "statl" "statr"; }
  .hero-stat--right { text-align: left; }
  .hero-stat--right .hero-stat__cap { margin-left: 0; }
  .hero__actions .btn, .situations__cta .btn, .pricing__sla .btn { width: 100%; }
  .profile__fact-label { width: 100%; }
  .hero-panel__top { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ===== Achtergrondfoto op mobiel subtieler + leesbaarheid ===== */
@media (max-width: 760px) {
  .hero__bg::after { background: linear-gradient(180deg, rgba(244,241,233,0.88), rgba(244,241,233,0.93)); }
  .breather__overlay { background: linear-gradient(180deg, rgba(19,34,107,0.55), rgba(19,34,107,0.78)); }
  .manifesto::before { background: linear-gradient(180deg, rgba(19,34,107,0.82), rgba(19,34,107,0.9)); }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none !important; }
}
