/* WerkenInNoordwijk.nl: modern, minimalistisch, veel witruimte */

:root {
  --primary: #0eaec0;
  --primary-dark: #0b8d9c;
  --primary-darker: #0a6f7c;
  --accent-warm: #ff6f4a;
  --coral: #ff6b6b;
  --mint: #5eead4;
  --ink: #0b2e39;
  --body: #40575f;
  --muted: #6d8791;
  --line: #e0eff2;
  --bg: #ffffff;
  --bg-soft: #f1fbfc;
  --bg-tint: #e8fbff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(11,46,57,.05), 0 10px 30px rgba(11,46,57,.08);
  --shadow-lg: 0 20px 50px rgba(11,46,57,.15);
  --maxw: 1160px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.03em; }
h1 { font-size: clamp(2.3rem, 5.8vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.prose-narrow { max-width: 820px; }
.prose-narrow h2 { margin-top: 2.8rem; margin-bottom: .8rem; }
.prose-narrow > h2:first-child { margin-top: 0; }
.prose-narrow p { font-size: 1.06rem; line-height: 1.8; margin-bottom: 1.15rem; }

/* SEO-tekstblok onder de vacaturegrid */
.seo-content { margin-left: auto; margin-right: auto; }
.seo-content h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.faq { margin-top: 1rem; display: flex; flex-direction: column; gap: .7rem; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--primary); box-shadow: 0 8px 22px rgba(8,145,178,.10); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.05rem 1.25rem; font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-tint); color: var(--primary-dark); font-weight: 700; font-size: 1.2rem; line-height: 1; transition: transform .25s ease, background .2s ease; }
.faq-item[open] summary::after { content: "\2212"; transform: rotate(180deg); background: var(--primary); color: #fff; }
.faq-answer { padding: 0 1.25rem 1.1rem; }
.faq-answer p { margin: 0; font-size: 1rem; line-height: 1.75; color: var(--body); }
.related-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1rem; }
.related-link { display: inline-flex; align-items: center; padding: .55rem 1.05rem; border-radius: 999px; background: var(--bg-tint); border: 1px solid #c9eef2; color: var(--primary-dark); font-weight: 600; font-size: .95rem; transition: background .2s ease, border-color .2s ease, transform .15s ease; }
.related-link:hover { background: #fff; border-color: var(--primary); text-decoration: none; transform: translateY(-2px); }
.center { text-align: center; }
.muted { color: var(--muted); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }

/* Buttons */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, #2dd4bf 0%, #06b6d4 48%, var(--primary-dark) 100%); color: #fff;
  padding: .72rem 1.35rem; border-radius: 999px;
  font-weight: 650; font-size: .98rem; border: 0;
  cursor: pointer; transition: transform .12s ease, filter .15s ease, box-shadow .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
  border-radius: inherit;
}
.btn:hover::after { left: 140%; }
.btn:hover { filter: brightness(1.06) saturate(1.1); text-decoration: none; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(8,145,178,.34); }
.btn-lg { padding: .98rem 1.85rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.05rem; font-size: .9rem; }
.btn-ghost { background: transparent; color: var(--primary-dark); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: var(--bg-tint); border-color: var(--primary); color: var(--primary-dark); box-shadow: none; }
.btn-invert { background: #fff; color: var(--primary-dark); border: 1.5px solid #fff; }
.btn-invert:hover { background: #f0fdfa; border-color: #f0fdfa; color: var(--primary-darker); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -.03em; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 38px; height: 38px; flex: 0 0 auto; filter: drop-shadow(0 4px 10px rgba(14,174,192,.3)); transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.06); }
.logo-word { background: linear-gradient(100deg, var(--primary-darker), var(--primary) 55%, var(--accent-warm)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo-sun { transform-box: fill-box; transform-origin: center; animation: sunPulse 3.5s ease-in-out infinite; }
.logo-rays { transform-box: fill-box; transform-origin: 27px 14px; animation: rayTwinkle 3.5s ease-in-out infinite; }
.logo-wave { animation: waveShift 4s ease-in-out infinite; }
@keyframes sunPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes rayTwinkle { 0%,100% { opacity: 1; transform: rotate(0deg); } 50% { opacity: .55; transform: rotate(14deg); } }
@keyframes waveShift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-2px); } }
.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav > a { color: var(--body); font-weight: 550; font-size: .98rem; }
.site-nav > a:hover, .site-nav > a.active { color: var(--primary-dark); text-decoration: none; }
.site-nav .btn { color: #fff; }
.site-nav .btn:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* Hero: echte strandfoto met scrim voor leesbaarheid */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(540px, 76vh, 740px);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4.5rem, 8vw, 6.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url('/assets/img/hero-strand-noordwijk.jpg');
  background-image: -webkit-image-set(url('/assets/img/hero-strand-noordwijk.webp') 1x);
  background-image: image-set(
    url('/assets/img/hero-strand-noordwijk.webp') type('image/webp'),
    url('/assets/img/hero-strand-noordwijk.jpg') type('image/jpeg'));
  background-size: cover; background-position: center 44%;
  transform: scale(1.06); transform-origin: center;
  animation: heroKen 28s ease-in-out infinite;
}
@keyframes heroKen {
  0%, 100% { transform: scale(1.06) translate(0, 0); }
  50% { transform: scale(1.15) translate(-1.4%, -1.6%); }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(102deg, rgba(7,40,50,.82) 0%, rgba(8,44,55,.5) 34%, rgba(10,50,60,.14) 64%, rgba(14,174,192,.28) 100%),
    linear-gradient(180deg, rgba(7,40,50,.32) 0%, rgba(7,40,50,0) 26%, rgba(7,40,50,0) 68%, rgba(7,40,50,.34) 100%);
}
.hero-blobs { display: none; }
.hero-inner { max-width: 760px; position: relative; z-index: 3; }
.hero .eyebrow { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.34); backdrop-filter: blur(6px); }
.hero h1 { color: #fff; text-shadow: 0 2px 28px rgba(0,16,26,.45); }
.hero .lead { color: rgba(255,255,255,.95); text-shadow: 0 1px 14px rgba(0,16,26,.4); max-width: 600px; }
.hero .chips-label { color: rgba(255,255,255,.9); }
.hero-stats .stat strong { color: #fff; text-shadow: 0 2px 18px rgba(0,16,26,.4); }
.hero-stats .stat span { color: rgba(255,255,255,.85); }
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 2; }
.wave-divider svg { width: 100%; height: clamp(60px, 8vw, 110px); display: block; }
.wave-divider path { fill: #ffffff; }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--primary-darker); background: rgba(255,255,255,.78); padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(4px);
}
.hero h1 { margin-bottom: .5rem; }
.lead { font-size: 1.22rem; color: var(--body); max-width: 620px; }

/* Hero search */
.hero-search {
  display: flex; gap: .6rem; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .5rem .5rem 1rem; box-shadow: var(--shadow-lg);
  margin: 1.8rem 0 1.1rem; max-width: 720px;
}
.search-field { display: flex; align-items: center; gap: .5rem; flex: 1; }
.search-field + .search-field { border-left: 1px solid var(--line); padding-left: 1rem; flex: 0 0 auto; width: 180px; }
.search-ico { font-size: 1.05rem; opacity: .7; }
.hero-search input {
  border: 0; outline: none; font-family: inherit; font-size: 1rem; color: var(--ink);
  width: 100%; background: transparent; padding: .55rem 0;
}
.hero-search .btn { border-radius: 999px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.chips-label { font-size: .9rem; color: var(--muted); font-weight: 600; margin-right: .2rem; }
.chip {
  font-size: .9rem; font-weight: 550; color: var(--body);
  background: #fff; border: 1px solid var(--line); padding: .42rem .95rem; border-radius: 999px;
}
.chip { transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease, box-shadow .15s ease; }
.chip:hover { border-color: transparent; color: var(--primary-darker); text-decoration: none; background: linear-gradient(135deg, #e8fbff, #c9f2f6); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(14,174,192,.22); }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.stat span { font-size: .92rem; color: var(--muted); }

/* Trust bar */
.trust { background: linear-gradient(90deg, var(--primary-darker), #0b4a5e); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 1.1rem 0; flex-wrap: wrap; }
.trust-logos { justify-content: center; }
.trust-label { color: #8fd3e2; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.trust-logos { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.trust-logos span { display: inline-flex; align-items: center; gap: .45rem; color: #eaf9fd; font-weight: 650; font-size: 1rem; line-height: 1; }

/* Sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; gap: .3rem; }
.link-arrow { font-weight: 650; white-space: nowrap; }

/* Filter bar (overzicht) */
.filter-bar {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .5rem .5rem 1.2rem; box-shadow: var(--shadow);
}
.filter-bar .search-field { flex: 1; min-width: 200px; }
.filter-bar input { border: 0; outline: none; font-family: inherit; font-size: 1rem; color: var(--ink); width: 100%; background: transparent; padding: .6rem 0; }
.result-count { font-size: .9rem; color: var(--muted); font-weight: 600; white-space: nowrap; padding-right: 1rem; }
.no-results { text-align: center; color: var(--muted); padding: 2rem 0; }

.grid { display: grid; gap: 1.4rem; }
.grid-cards { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Category tiles */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tile {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .4rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1rem;
  color: var(--ink); box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.tile:hover { text-decoration: none; transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tile-icon {
  font-size: 1.7rem; width: 58px; height: 58px; margin-bottom: .3rem;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 18px;
  background: linear-gradient(135deg, #eafcff, #cbf3f6);
  box-shadow: inset 0 0 0 1px rgba(14,174,192,.16);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .25s ease;
}
.tile:hover .tile-icon { transform: rotate(-8deg) scale(1.08); background: linear-gradient(135deg, #a5f3ec, #7dd3fc); }
.tile:nth-child(4n+2) .tile-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.tile:nth-child(4n+2):hover .tile-icon { background: linear-gradient(135deg, #fde68a, #fbbf24); }
.tile:nth-child(4n+3) .tile-icon { background: linear-gradient(135deg, #ffe4e6, #fecdd3); }
.tile:nth-child(4n+3):hover .tile-icon { background: linear-gradient(135deg, #fecdd3, #fb7185); }
.tile:nth-child(4n) .tile-icon { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.tile:nth-child(4n):hover .tile-icon { background: linear-gradient(135deg, #fed7aa, #fb923c); }
.tile-label { font-weight: 700; font-size: 1rem; }
.tile-count { font-size: .85rem; color: var(--muted); }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: block; color: var(--body);
}
.card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #99f6e4; }
.vacancy-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.card-media { position: relative; aspect-ratio: 3 / 2; background: var(--bg-tint); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,74,110,.22), rgba(12,74,110,0) 42%); pointer-events: none; }
.card-media-badges { position: absolute; top: .75rem; left: .75rem; right: .75rem; z-index: 1; display: flex; gap: .4rem; flex-wrap: wrap; }
.card-media .badge { background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.6); box-shadow: 0 2px 8px rgba(12,74,110,.18); backdrop-filter: blur(4px); }
.card-media .badge-featured { color: #9a3412; background: rgba(255,247,237,.96); }
.card-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; padding: 1.6rem 1.6rem 0; margin-bottom: 1rem; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background: var(--bg-tint); border: 1px solid #c9eef2; flex: 0 0 auto;
}
.card-top-badges { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: flex-end; }
.badge {
  font-size: .76rem; font-weight: 650; color: var(--primary-darker);
  background: var(--bg-tint); border: 1px solid #c9eef2; padding: .28rem .7rem; border-radius: 999px; white-space: nowrap;
}
.badge-featured { color: #be123c; background: #fff1f2; border-color: #fecdd3; }
.card-media .badge-featured { color: #be123c; background: rgba(255,241,242,.96); }
.vacancy-card h3 { margin-bottom: .2rem; color: var(--ink); font-size: 1.22rem; transition: color .15s ease; }
.vacancy-card:hover h3 { color: var(--primary-dark); }
.employer { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.meta-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.meta-list li { font-size: .93rem; color: var(--body); display: flex; gap: .5rem; align-items: center; }
.mi { opacity: .75; }
.card-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding-top: 1rem; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.salary-pill { font-weight: 700; color: #0f766e; background: linear-gradient(135deg, #ecfdf5, #d1fae5); border: 1px solid #a7f3d0; padding: .3rem .75rem; border-radius: 999px; font-size: .9rem; }
.posted { font-size: .82rem; color: var(--muted); }

/* Steps & features */
.step, .feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; font-weight: 750; font-size: 1.1rem;
  background: linear-gradient(135deg, #22d3ee, var(--primary-dark)); color: #fff; margin-bottom: .9rem;
}
.feature h3 { color: var(--primary-darker); }

/* CTA band */
.cta-wrap .container { padding-top: 0; }
.cta-band {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 55%, var(--primary-darker) 100%);
  border-radius: 26px; padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(253,224,71,.45), transparent 70%); border-radius: 50%;
}
.cta-band h2, .cta-band p { color: #fff; position: relative; }
.cta-band p { color: #d4f1f8; margin: 0; }
.cta-eyebrow { display: inline-block; color: #fcd34d; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.8rem; flex-wrap: wrap; position: relative; }

/* Page hero (subpages) */
.page-hero {
  background:
    radial-gradient(700px 320px at 88% -30%, #bff0fb 0%, rgba(191,240,251,0) 62%),
    linear-gradient(180deg, #e6f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line); padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.page-hero .lead { max-width: 720px; }
.center-hero { background: #fff; }

/* Page-hero met foto (subpagina's) */
.page-hero.has-photo {
  position: relative; overflow: hidden; border-bottom: none;
  display: flex; align-items: center;
  min-height: 460px;
  padding: 2rem 0;
  color: #fff;
}
.page-hero.has-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-img);
  background-image: -webkit-image-set(var(--hero-webp) 1x);
  background-image: image-set(var(--hero-webp) type('image/webp'), var(--hero-img) type('image/jpeg'));
  background-size: cover; background-position: center 46%;
  transform: scale(1.05); animation: heroKen 30s ease-in-out infinite;
}
.page-hero.has-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(7,40,50,.8) 0%, rgba(8,44,55,.48) 40%, rgba(10,50,60,.16) 72%, rgba(14,174,192,.28) 100%),
    linear-gradient(180deg, rgba(7,40,50,.3) 0%, rgba(7,40,50,0) 30%, rgba(7,40,50,0) 68%, rgba(7,40,50,.34) 100%);
}
.page-hero.has-photo .container { position: relative; z-index: 2; width: 100%; }
.page-hero.has-photo .eyebrow {
  color: #fff; background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34); backdrop-filter: blur(6px);
}
.page-hero.has-photo h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,16,26,.45); }
.page-hero.has-photo .lead { color: rgba(255,255,255,.95); text-shadow: 0 1px 12px rgba(0,16,26,.4); }

/* Breadcrumb */
.breadcrumb { padding-top: 1.5rem; font-size: .9rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary-dark); }

/* Detail */
.detail { padding: 2rem 0 4rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 2.5rem; align-items: start; }
.detail-media { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.8rem; box-shadow: var(--shadow); aspect-ratio: 16 / 9; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,74,110,.18), rgba(12,74,110,0) 45%); pointer-events: none; }
.detail-head { border-bottom: 1px solid var(--line); padding-bottom: 1.6rem; margin-bottom: 1.6rem; }
.detail-head h1 { margin: .3rem 0 .2rem; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.detail-meta { flex-direction: column; margin: 1.2rem 0 1.4rem; }
.intro-text { font-size: 1.14rem; color: var(--ink); }
.prose h2 { margin-top: 1.8rem; font-size: 1.3rem; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .6rem; }
.check-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--primary); font-weight: 800;
}
.detail-aside { position: sticky; top: 92px; }
.apply-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-lg); }
.apply-box h2 { font-size: 1.25rem; }

/* Forms */
.apply-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.apply-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; font-weight: 600; color: var(--ink); }
.apply-form input, .apply-form textarea, .apply-form select {
  font-family: inherit; font-size: 1rem; font-weight: 400; color: var(--ink);
  padding: .78rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease; width: 100%;
}
.apply-form input:focus, .apply-form textarea:focus, .apply-form select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,.14);
}
.apply-form textarea { resize: vertical; }
.checkbox { flex-direction: row !important; align-items: flex-start; gap: .6rem !important; font-weight: 400 !important; font-size: .88rem !important; color: var(--body) !important; }
.checkbox input { width: auto; margin-top: .2rem; }
.form-note { font-size: .85rem; color: var(--muted); margin: 0; }
.hp { position: absolute; left: -9999px; }
.apply-form .btn { align-self: stretch; }

.cta-box { margin-top: 2rem; padding: 1.6rem; background: var(--bg-tint); border: 1px solid #c9eef2; border-radius: var(--radius); }
.cta-box p { margin-bottom: 1rem; font-weight: 600; color: var(--ink); }

.success-icon {
  width: 76px; height: 76px; border-radius: 999px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center; font-size: 2.3rem; color: #fff;
  background: linear-gradient(135deg, #22d3ee, var(--primary-dark)); box-shadow: 0 10px 30px rgba(8,145,178,.4);
}

/* Footer */
.site-footer { background: linear-gradient(180deg, #0c3a49 0%, #072a36 100%); color: #b9d7de; padding: 3.5rem 0 2rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer-grid .muted { color: #93a1b3; }
.logo-footer { color: #fff; margin-bottom: .8rem; }
.logo-footer .logo-word { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.footer-links li { margin-bottom: .5rem; font-size: .95rem; }
.footer-links a { color: #cbd5e1; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; flex-wrap: wrap; }
.footer-bottom .muted { color: #93a1b3; font-size: .88rem; }

/* Reveal-on-scroll */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity .7s ease, transform .8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-scale { transform: scale(.9); }
.reveal.in, .reveal-left.in, .reveal-right.in, .reveal-scale.in { opacity: 1; transform: none; }

/* Scroll-voortgangsbalk bovenaan */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 100;
  transform: scaleX(0); transform-origin: 0 50%; pointer-events: none;
  background: linear-gradient(90deg, var(--mint), #22d3ee, var(--coral));
  box-shadow: 0 1px 8px rgba(34,211,238,.5); will-change: transform;
}

/* Header krimpt en versterkt schaduw bij scrollen */
.site-header { transition: background .3s ease, box-shadow .3s ease; }
.header-inner { transition: height .3s cubic-bezier(.16,1,.3,1); }
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 8px 30px rgba(12,39,51,.1); border-bottom-color: transparent; }
.site-header.scrolled .header-inner { height: 60px; }
.site-header.scrolled .logo-mark { width: 32px; height: 32px; }

/* Hero-inhoud beweegt en vervaagt tijdens scrollen (parallax) */
.hero-inner { will-change: transform, opacity; }

/* 3D-tilt op tegels en vacaturekaarten (alleen met muis) */
.tilt { position: relative; transform-style: preserve-3d; }
.tilt.tilting { transition: box-shadow .3s ease; }
.tilt-shine {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .3s ease; z-index: 2;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.35), rgba(255,255,255,0) 60%);
}
.tilt.tilting .tilt-shine { opacity: 1; }

/* Magnetische knoppen */
.magnetic { transition: transform .25s cubic-bezier(.16,1,.3,1), filter .15s ease, box-shadow .15s ease; }

/* Toegankelijkheid: respecteer verminderde beweging */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .scroll-progress { display: none; }
  .hero-inner { transform: none !important; opacity: 1 !important; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1000px) {
  .tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: .5rem 0; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: .85rem 24px; }
  .site-nav .btn { margin: .6rem 24px; }
  .hero-search { flex-direction: column; border-radius: 20px; padding: .8rem; gap: .8rem; }
  .search-field { border: 1.5px solid var(--line); border-radius: 12px; padding: .5rem .9rem; }
  .search-field + .search-field { border-left: 1.5px solid var(--line); padding-left: .9rem; width: 100%; }
  .hero-search .btn { width: 100%; }
  .hero-stats { gap: 1.5rem; }
  .stat strong { font-size: 1.4rem; }
  .page-hero.has-photo { min-height: 560px; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .trust-inner { gap: 1rem; }
  .trust-logos { gap: 1rem; }
}
