/* =============================================================== *
 *  TalentastiQ — Design System
 *  Official huisstijl: pink (#e8308a) = kandidaat / warm,
 *  navy (#0a3358) = werkgever / professional. Open Sans + Libre Baskerville.
 *  Energetic, human, intelligent — never grey-suit recruitment.
 * =============================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colours — from the official TalentastiQ huisstijl (Svenny, dec 2025) */
  --pink:        #e8308a;   /* brand pink — fills, icon tints, large accents */
  --pink-strong: #c21f74;   /* deeper pink — AA-safe for text on white + button bg */
  --pink-light:  #f9d2de;   /* roze — soft section backgrounds */
  --pink-tint:   #fdeef4;   /* very light wash for section backgrounds */
  --navy:        #0a3358;   /* brand blauw — text, headings, werkgever side */
  --navy-deep:   #082942;   /* darker navy for hover states */
  --red:         #e40233;   /* brand rood — accent + error, used sparingly */
  --steel:       #4a6b8a;   /* secondary text on light backgrounds */

  /* Neutrals */
  --bg:          #f7f8fa;   /* slightly warm off-white */
  --white:       #ffffff;
  --grey:        #dadada;   /* brand grijs */
  --grey-light:  #e4e7ea;   /* subtle borders / dividers */
  --grey-mid:    #5f6f7e;   /* captions, secondary/meta text */

  /* Feedback */
  --error:       #e40233;   /* brand red */
  --success:     #2e7d52;

  /* Type — Open Sans (body + headings), Libre Baskerville (italic accent), per huisstijl */
  --font-head:   'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:   'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-accent: 'Libre Baskerville', Georgia, 'Times New Roman', serif;

  /* Radii */
  --r-btn:   999px;
  --r-card:  12px;
  --r-input: 8px;
  --r-hero:  20px;

  /* Spacing (8px grid) */
  --space-1: .5rem;   /* 8 */
  --space-2: 1rem;    /* 16 */
  --space-3: 1.5rem;  /* 24 */
  --space-4: 2rem;    /* 32 */
  --space-5: 3rem;    /* 48 */
  --space-6: 4rem;    /* 64 */
  --section-y: clamp(3.5rem, 6vw, 5rem);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(34,57,79,.08);
  --shadow-md: 0 10px 30px -12px rgba(34,57,79,.22);
  --shadow-lg: 0 24px 60px -20px rgba(34,57,79,.30);
  --shadow-pink: 0 16px 40px -16px rgba(232,48,138,.45);

  --container: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--pink-strong); text-decoration-thickness: 1px; text-underline-offset: 2px; }
ul, ol { padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.375rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); font-weight: 600; line-height: 1.3; }
p  { line-height: 1.65; }

.lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); color: var(--steel); line-height: 1.6; }
strong { font-weight: 600; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 4vw, 3.5rem); }
.section--pink   { background: var(--pink-tint); }
.section--navy   { background: var(--navy); color: #e9eef3; }
.section--soft   { background: var(--white); }

.stack > * + * { margin-top: var(--space-3); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--space-2); top: -3rem; z-index: 200;
  background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 8px;
  font-family: var(--font-head); font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Section header ---------- */
.section-head { max-width: 46rem; margin-bottom: var(--space-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink-strong); margin-bottom: var(--space-2);
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: var(--pink); border-radius: 2px; }
.eyebrow--navy { color: var(--steel); }
.eyebrow--navy::before { background: var(--steel); }
.eyebrow--light { color: var(--pink-light); }
.eyebrow--light::before { background: var(--pink-light); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .lead { color: #aebfcd; }

/* ---------- Wordmark (CSS recreation for dark backgrounds) ---------- */
.wordmark { font-family: var(--font-head); font-weight: 800; letter-spacing: .01em; display: inline-flex; align-items: baseline; }
.wordmark__talent { text-transform: uppercase; }
.wordmark__astiq  { font-family: var(--font-accent); font-style: italic; font-weight: 700; color: var(--pink); margin-left: .06em; }
.wordmark__r { font-size: .45em; font-weight: 600; top: -.6em; position: relative; margin-left: .1em; }
.wordmark--dark { font-size: 1.9rem; color: #fff; }

/* =============================================================== *
 *  Buttons
 * =============================================================== */
.btn {
  --btn-bg: var(--pink);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  padding: .8rem 1.75rem; min-height: 48px;
  border-radius: var(--r-btn); border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .6rem 1.2rem; min-height: 42px; font-size: .82rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--kandidaat { --btn-bg: var(--pink-strong); --btn-fg: #fff; }
.btn--kandidaat:hover { box-shadow: var(--shadow-pink); background: #ad1a67; }

.btn--werkgever { --btn-bg: var(--navy); --btn-fg: #fff; }
.btn--werkgever:hover { box-shadow: var(--shadow-md); background: var(--navy-deep); }

.btn--outline-pink { background: transparent; color: var(--pink-strong); border-color: var(--pink); }
.btn--outline-pink:hover { background: var(--pink-strong); color: #fff; border-color: var(--pink-strong); }

.btn--outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: #fff; }

.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { box-shadow: var(--shadow-md); }

.btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); }

.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* Focus — pink, on-brand, always visible */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =============================================================== *
 *  Header / Nav
 * =============================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--grey-light);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); min-height: 76px; }
.site-header__logo img { width: auto; height: 50px; }
@media (max-width: 420px) { .site-header__logo img { height: 42px; } }
.site-header__actions { display: flex; align-items: center; gap: var(--space-2); }

.site-nav__list { list-style: none; display: flex; align-items: center; gap: clamp(.5rem, 1.5vw, 1.5rem); }
.site-nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--navy);
  text-decoration: none; padding: .5rem .25rem; position: relative; white-space: nowrap;
}
.site-nav__link::after {
  content: ""; position: absolute; left: .25rem; right: .25rem; bottom: 0; height: 2px;
  background: var(--pink); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease);
}
.site-nav__link:hover::after, .site-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__link[aria-current="page"] { color: var(--pink-strong); }
.site-nav__close, .site-nav__cta-mobile { display: none; }

.site-header__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 0 12px; background: transparent; border: 0; cursor: pointer;
}
.site-header__toggle span { height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }

@media (max-width: 940px) {
  /* Solid header on mobile: removes the backdrop-filter so the fixed nav
     overlay anchors to the viewport, not the header. */
  .site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header__cta { display: none; }
  .site-header__toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 0; z-index: 150;
    background: var(--navy); color: #fff;
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .site-nav__list {
    min-height: 100vh; min-height: 100dvh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: var(--space-3); text-align: center; padding: 5.5rem 1.5rem 3rem;
  }
  .site-nav__link { color: #fff; font-size: 1.2rem; padding: .35rem .25rem; }
  .site-nav__link::after { background: var(--pink); left: 0; right: 0; }
  .site-nav__close {
    display: block; position: fixed; top: .75rem; right: 1rem; z-index: 2;
    background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; width: 48px; height: 48px;
  }
  .site-nav__cta-mobile { display: block; margin-top: var(--space-3); }
}

/* =============================================================== *
 *  Hero — dual audience
 * =============================================================== */
.hero { position: relative; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__intro { max-width: 56rem; margin-inline: auto; text-align: center; position: relative; z-index: 1; }
.hero__brandline {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: clamp(.78rem, .7rem + .4vw, .95rem); color: var(--pink-strong);
  margin-bottom: var(--space-3);
}
.hero h1 { margin-bottom: var(--space-3); }
.hero h1 .accent { color: var(--pink); }
.hero__sub { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); color: var(--steel); max-width: 42rem; margin-inline: auto; }

.hero__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(2rem, 4vw, 3rem); position: relative; z-index: 1;
}
@media (max-width: 720px) { .hero__split { grid-template-columns: 1fr; } }

.audience-card {
  position: relative; border-radius: var(--r-hero); padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: var(--space-2); overflow: hidden;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.audience-card:hover { transform: translateY(-4px); }
.audience-card__label { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.audience-card h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); }
.audience-card p { margin-bottom: var(--space-2); }
.audience-card .btn { align-self: flex-start; margin-top: auto; }

.audience-card--werkgever { background: var(--navy); color: #dce5ee; box-shadow: var(--shadow-md); }
.audience-card--werkgever h2 { color: #fff; }
.audience-card--werkgever .audience-card__label { color: #8fb0cc; }
.audience-card--kandidaat { background: linear-gradient(150deg, var(--pink) 0%, var(--pink-strong) 100%); color: #ffe6f1; box-shadow: var(--shadow-pink); }
.audience-card--kandidaat h2 { color: #fff; }
.audience-card--kandidaat .audience-card__label { color: #ffd9ec; }

/* Decorative sparkles & blobs */
.deco-sparkle { position: absolute; pointer-events: none; opacity: .9; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; pointer-events: none; z-index: 0; }
.hero__blob--pink { width: 26rem; height: 26rem; background: radial-gradient(circle, rgba(208,76,139,.20), transparent 65%); top: -8rem; right: -6rem; }
.hero__blob--navy { width: 22rem; height: 22rem; background: radial-gradient(circle, rgba(74,107,138,.18), transparent 65%); bottom: -8rem; left: -6rem; }

/* =============================================================== *
 *  Trust strip
 * =============================================================== */
.trust-strip { border-block: 1px solid var(--grey-light); background: var(--white); }
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); padding-block: var(--space-3); }
.trust-item { display: flex; align-items: center; gap: .75rem; font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--navy); }
.trust-item svg { flex: none; width: 26px; height: 26px; color: var(--pink); }

/* =============================================================== *
 *  Cards & grids
 * =============================================================== */
.grid { display: grid; gap: var(--space-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .grid--5 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--r-card);
  padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--pink-light); color: var(--pink-strong); margin-bottom: var(--space-2);
}
.card__icon svg { width: 26px; height: 26px; }
.card--navy-icon .card__icon { background: #e4ecf3; color: var(--navy); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--steel); }

/* Numbered step cards */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: #fff; margin-bottom: var(--space-2);
}
.step:nth-child(even) .step__num { background: var(--pink); }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--steel); }

/* =============================================================== *
 *  Split / media sections
 * =============================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split--sidebar { align-items: start; }
@media (min-width: 861px) { .split--sidebar { grid-template-columns: 1.6fr 1fr; } }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-hero); box-shadow: var(--shadow-lg); object-fit: cover; }
.media-frame { position: relative; }
.media-frame::before {
  content: ""; position: absolute; inset: auto -1rem -1rem auto; width: 60%; height: 60%;
  border-radius: var(--r-hero); background: var(--pink-light); z-index: -1;
}

/* Feature list with check */
.checklist { list-style: none; display: grid; gap: var(--space-2); }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; width: 24px; height: 24px; border-radius: 50%; margin-top: 2px;
  background: var(--pink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.checklist--navy li::before { background-color: var(--navy); }

/* =============================================================== *
 *  Pills / badges
 * =============================================================== */
.pill {
  display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-head);
  font-weight: 600; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; background: var(--pink-light); color: var(--pink-strong);
}
.pill--navy { background: #e4ecf3; color: var(--navy); }

/* =============================================================== *
 *  Vacature cards
 * =============================================================== */
.vacature-card {
  position: relative; background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--r-card);
  padding: var(--space-3) var(--space-3) var(--space-3) calc(var(--space-3) + 6px);
  display: flex; flex-direction: column; gap: .6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.vacature-card::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 4px; border-radius: 4px; background: var(--pink); }
.vacature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--pink-light); }
.vacature-card h3 { font-size: 1.2rem; }
.vacature-card h3 a { color: var(--navy); text-decoration: none; }
.vacature-card h3 a:hover { color: var(--pink-strong); }
.vacature-card__meta { display: flex; flex-wrap: wrap; gap: .25rem 1rem; color: var(--grey-mid); font-size: .9rem; }
.vacature-card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.vacature-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .2rem; }
.vacature-card__foot { margin-top: .4rem; }

/* Filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: end; background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--r-card); padding: var(--space-3); box-shadow: var(--shadow-sm); }
.filter-bar .field { margin: 0; flex: 1 1 180px; }
.filter-result-count { color: var(--grey-mid); font-size: .95rem; margin-bottom: var(--space-3); }
.vacatures-empty { display: none; text-align: center; padding: var(--space-5); color: var(--grey-mid); }

/* =============================================================== *
 *  Team
 * =============================================================== */
.team-card { text-align: center; }
.team-card__photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-card); margin-bottom: var(--space-2); box-shadow: var(--shadow-md); }
.team-card h3 { margin-bottom: .15rem; }
.team-card__role { color: var(--pink-strong); font-family: var(--font-head); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }

/* =============================================================== *
 *  Quote / testimonial
 * =============================================================== */
.quote { font-family: var(--font-accent); font-style: italic; font-weight: 400; font-size: clamp(1.3rem, 1.1rem + 1.2vw, 2rem); line-height: 1.4; color: var(--navy); }
.quote--light { color: #fff; }
.quote__mark { color: var(--pink); }

/* =============================================================== *
 *  CTA band
 * =============================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-4); align-items: center; }
@media (max-width: 760px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* =============================================================== *
 *  FAQ (native details)
 * =============================================================== */
.faq { display: grid; gap: var(--space-2); max-width: 52rem; }
.faq__item { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--r-card); overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.25rem; font-family: var(--font-head); font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--pink); transition: transform .2s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item .faq__body { padding: 0 1.25rem 1.25rem; color: var(--steel); }

/* =============================================================== *
 *  Forms
 * =============================================================== */
.form-wrap { background: var(--white); border: 1px solid var(--grey-light); border-radius: var(--r-hero); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: var(--space-2); }
.field > label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .4rem; }
.field .req { color: var(--pink-strong); }
.field .hint { display: block; font-size: .82rem; color: var(--grey-mid); margin-top: .3rem; line-height: 1.4; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.input, .textarea, .select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--navy);
  background: var(--bg); border: 1.5px solid var(--grey-light); border-radius: var(--r-input);
  padding: .75rem .9rem; min-height: 48px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s;
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.input:hover, .textarea:hover, .select:hover { border-color: var(--steel); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 3px rgba(208,76,139,.18); }
.input::placeholder, .textarea::placeholder { color: #9aa8b5; }

.field[data-invalid="true"] .input,
.field[data-invalid="true"] .textarea,
.field[data-invalid="true"] .select { border-color: var(--error); background: #fdf3f3; }
.field__error { display: none; color: var(--error); font-size: .82rem; font-weight: 500; margin-top: .35rem; align-items: center; gap: .35rem; }
.field[data-invalid="true"] .field__error { display: flex; }

/* File upload */
.filefield input[type="file"] { position: absolute; opacity: 0; width: 1px; height: 1px; }
.filefield__drop {
  display: flex; align-items: center; gap: .9rem; border: 1.8px dashed var(--steel); border-radius: var(--r-input);
  padding: 1rem 1.1rem; background: var(--bg); cursor: pointer; transition: border-color .15s, background .15s;
}
.filefield__drop:hover, .filefield input[type="file"]:focus-visible + .filefield__drop { border-color: var(--pink); background: var(--pink-tint); }
.filefield__icon { color: var(--pink-strong); flex: none; }
.filefield__text { font-size: .92rem; color: var(--steel); }
.filefield__text strong { color: var(--navy); }
.filefield__name { font-weight: 600; color: var(--navy); }

/* Consent checkbox */
.consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--steel); line-height: 1.5; }
.consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: none; width: 22px; height: 22px; margin-top: 2px;
  border: 1.8px solid var(--navy); border-radius: 6px; background: #fff; cursor: pointer; transition: background .15s, border-color .15s;
}
.consent input[type="checkbox"]:checked { background: var(--pink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat; border-color: var(--pink); }
.consent a { color: var(--pink-strong); }

/* Form feedback banners */
.form-alert { border-radius: var(--r-input); padding: 1rem 1.1rem; margin-bottom: var(--space-3); font-size: .95rem; display: flex; gap: .75rem; align-items: flex-start; }
.form-alert--error { background: #fdf3f3; border: 1px solid #f3c6c6; color: #8f2525; }
.form-alert--success { background: #eef7f1; border: 1px solid #c2e2cf; color: var(--success); }
.form-alert svg { flex: none; margin-top: 2px; }

/* Success page panel */
.success-panel { text-align: center; max-width: 40rem; margin-inline: auto; }
.success-panel__icon { width: 88px; height: 88px; margin: 0 auto var(--space-3); color: var(--pink); }

/* =============================================================== *
 *  Page hero (interior pages)
 * =============================================================== */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-hero--werkgever { background: linear-gradient(160deg, var(--navy) 0%, #2c4a66 100%); color: #dce5ee; }
.page-hero--werkgever h1 { color: #fff; }
.page-hero--werkgever .lead { color: #b6c6d4; }
.page-hero--kandidaat { background: linear-gradient(160deg, #fbeef6 0%, #f7dcec 100%); }
.page-hero--neutral { background: var(--white); border-bottom: 1px solid var(--grey-light); }
.page-hero__inner { max-width: 48rem; position: relative; z-index: 1; }
.page-hero .breadcrumb { margin-bottom: var(--space-2); }

.breadcrumb { font-size: .85rem; color: var(--grey-mid); }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero--werkgever .breadcrumb, .page-hero--werkgever .breadcrumb a { color: #9fb4c6; }

/* =============================================================== *
 *  Stats
 * =============================================================== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; } }
.stats--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) { .stats--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats--4 { grid-template-columns: 1fr; } }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 1.5rem + 2vw, 3rem); color: var(--pink); line-height: 1; }
.stat__label { color: var(--steel); font-size: .95rem; margin-top: .4rem; }
.section--navy .stat__num { color: #fff; }
.section--navy .stat__label { color: #aebfcd; }

/* =============================================================== *
 *  Footer
 * =============================================================== */
.site-footer { background: var(--navy); color: #aebfcd; padding-top: var(--section-y); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: var(--space-4); padding-bottom: var(--space-5); }
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__logo { display: inline-flex; background: #fff; border-radius: 16px; padding: 18px 26px; box-shadow: var(--shadow-sm); }
.site-footer__logo img { height: 46px; width: auto; }
@media (max-width: 420px) { .site-footer__logo { padding: 14px 20px; } .site-footer__logo img { height: 40px; } }
.site-footer__tagline { font-family: var(--font-head); font-weight: 600; color: var(--pink-light); letter-spacing: .02em; margin-top: var(--space-3); }
.site-footer__about { font-size: .92rem; margin-top: var(--space-2); max-width: 24rem; }
.site-footer__social { display: inline-flex; align-items: center; gap: .5rem; margin-top: var(--space-3); color: #cdd9e4; text-decoration: none; font-family: var(--font-head); font-weight: 500; font-size: .88rem; }
.site-footer__social:hover { color: #fff; }
.site-footer__heading { font-family: var(--font-head); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: var(--space-2); }
.site-footer__col ul { list-style: none; display: grid; gap: .6rem; }
.site-footer__col a { color: #aebfcd; text-decoration: none; font-size: .95rem; }
.site-footer__col a:hover { color: var(--pink-light); }
.site-footer__contact address { font-style: normal; font-size: .95rem; line-height: 1.7; }
.site-footer__contact a { color: #cdd9e4; text-decoration: none; }
.site-footer__contact a:hover { color: var(--pink-light); }
.site-footer__hours, .site-footer__kvk { font-size: .9rem; margin-top: var(--space-2); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2); padding-block: var(--space-3); font-size: .85rem; color: #8298ab; }
.site-footer__bottom-links a { color: #aebfcd; text-decoration: none; }
.site-footer__bottom-links a:hover { color: #fff; }

/* =============================================================== *
 *  Scroll reveal & motion
 * =============================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }

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

/* Utility text helpers */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-0 { margin-bottom: 0; }
.maxw-prose { max-width: 42rem; }
.flex-cta { display: flex; flex-wrap: wrap; gap: var(--space-2); }
