@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-bold-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  /* ─── Brand scale ──────────────────────────────────────────────── */
  --brand-50:  #edf4f1;
  --brand-100: #d6e7e1;
  --brand-200: #b6d3ca;
  --brand-300: #82b5a7;
  --brand-400: #3f8f7d;
  --brand-500: #14705f;
  --brand-600: #0e5d50;
  --brand-700: #0b4a41;
  --brand-800: #12342f;
  --brand-900: #102522;

  /* ─── Accent scale (warm for emphasis CTAs) ────────────────────── */
  --accent-50:  #fff0e9;
  --accent-100: #ffd9c8;
  --accent-300: #f99b70;
  --accent-500: #f06438;
  --accent-600: #d84b22;
  --accent-700: #a93618;

  /* ─── Ink / surface neutrals ──────────────────────────────────── */
  --ink-900: #16211f;
  --ink-700: #34413f;
  --ink-500: #5d6865;
  --ink-300: #8ea2a4;
  --ink-100: #c9d4d5;
  --surface-0: #fffdf8;
  --surface-50: #f7f4ed;
  --surface-100: #eeeae0;
  --surface-200: #ddd7ca;
  --surface-overlay: rgba(255, 253, 248, 0.96);
  --focus-ring: #00a98f;

  /* ─── Semantic tints ──────────────────────────────────────────── */
  --success-500: #1c8b53;
  --success-50:  #e6f5ec;
  --warning-500: #c98a13;
  --warning-50:  #fdf4dc;
  --danger-500:  #b93131;
  --danger-50:   #fbe5e5;

  /* ─── Type scale (fluid) ──────────────────────────────────────── */
  --fs-eyebrow: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --fs-small:   clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --fs-body:    clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --fs-h3:      clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --fs-h2:      clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --fs-h1:      clamp(1.9rem, 1.4rem + 2vw, 2.8rem);
  --fs-display: clamp(2.9rem, 1.9rem + 4vw, 5.35rem);
  --lh-tight:   1.15;
  --lh-snug:    1.3;
  --lh-normal:  1.55;
  --lh-relaxed: 1.7;

  /* ─── Spacing scale (8px base) ────────────────────────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;
  --space-11: 160px;
  --space-12: 200px;

  /* ─── Radius ──────────────────────────────────────────────────── */
  --radius-sm:   3px;
  --radius-md:   5px;
  --radius-lg:   8px;
  --radius-xl:   12px;
  --radius-pill: 999px;

  /* ─── Shadow ──────────────────────────────────────────────────── */
  --shadow-card:        0 1px 0 rgba(16, 37, 34, 0.08);
  --shadow-card-hover:  0 12px 28px rgba(16, 37, 34, 0.12);
  --shadow-overlay:     0 26px 60px rgba(16, 37, 34, 0.2);
  --shadow-inset:       inset 0 1px 0 rgba(255, 255, 255, 0.4);

  /* ─── Layout containers ───────────────────────────────────────── */
  --container:      min(1240px, calc(100vw - 40px));
  --container-wide: min(1400px, calc(100vw - 32px));
  --container-prose: min(720px, calc(100vw - 32px));

  /* ─── Motion ──────────────────────────────────────────────────── */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast:  120ms;
  --dur-base:  200ms;
  --dur-slow:  340ms;

  /* ─── Font stack ──────────────────────────────────────────────── */
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;

  /* ─── Header heights (used by scroll-margin) ──────────────────── */
  --header-h:        88px;
  --header-h-sticky: 64px;

  /* ─── Legacy aliases (backward compat) ────────────────────────── */
  --bg: var(--surface-100);
  --surface: var(--surface-0);
  --surface-soft: var(--surface-overlay);
  --ink: var(--ink-900);
  --muted: var(--ink-500);
  --border: rgba(16, 34, 36, 0.12);
  --brand: var(--brand-500);
  --brand-deep: var(--brand-800);
  --brand-soft: var(--brand-100);
  --accent: var(--accent-500);
  --accent-deep: var(--accent-600);
  --success: var(--success-500);
  --danger: var(--danger-500);
  --shadow: var(--shadow-overlay);
  --shell: var(--container);
}

/* ─── Breakpoints as custom-media (referenced via @media min-width: ...px below) ── */

/* ─── Dark-mode token scaffold (visual dark-mode is a later batch) ── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-dm: #0a1819;
    --surface-dm-0: #122223;
    --surface-dm-50: #0e1c1d;
    --ink-dm-900: #f1f6f6;
    --ink-dm-500: #a4b6b8;
  }
}

/* ─── Reduced motion: kill animations + smooth scroll for sensitive users ── */
@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;
    scroll-behavior: auto !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  background:
    radial-gradient(circle at top left, rgba(13, 154, 138, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--surface-50) 0%, var(--surface-100) 100%);
  color: var(--ink-900);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[id] {
  scroll-margin-top: calc(var(--header-h-sticky) + var(--space-3));
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 3px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 30;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(246, 251, 251, 0.9);
  border-bottom: 1px solid rgba(16, 34, 36, 0.06);
}

.topbar {
  width: var(--shell);
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__mark-shell {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.44rem;
  border-radius: 16px;
  border: 1px solid rgba(13, 154, 138, 0.16);
  background: linear-gradient(180deg, rgba(14, 35, 41, 0.98), rgba(7, 24, 28, 0.96));
  box-shadow:
    0 16px 34px rgba(7, 25, 29, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.brand__mark {
  width: 100%;
  height: auto;
}

.brand__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 0.92;
  transform: translateY(-1px);
}

.brand__eyebrow {
  display: block;
  color: rgba(16, 34, 36, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand__wordmark-main {
  display: flex;
  align-items: baseline;
  gap: 0.02rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand--footer {
  margin-bottom: 1rem;
}

.brand__wordmark-dot,
.brand__wordmark-tld {
  color: var(--accent);
}

.brand--footer .brand__mark-shell {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand--footer .brand__eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.brand--footer .brand__wordmark-main {
  color: #fff;
}

.brand--footer .brand__wordmark-dot,
.brand--footer .brand__wordmark-tld {
  color: #8ee5d7;
}

.topnav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.topnav a {
  color: var(--muted);
}

.topnav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar__link {
  color: var(--ink);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8b59 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(255, 111, 71, 0.24);
  white-space: normal;
  text-align: center;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero {
  padding: clamp(2.25rem, 4vw, 4rem) 0 2.5rem;
}

.hero__shell,
.section__shell,
.site-footer__grid {
  width: var(--shell);
  margin: 0 auto;
}

.hero__shell {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 450px);
  align-items: start;
}

.hero__content {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(13, 154, 138, 0.12), rgba(255, 111, 71, 0.1)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: auto -10% 0 auto;
  width: 14rem;
  height: 14rem;
  background:
    linear-gradient(135deg, rgba(13, 154, 138, 0.2), rgba(255, 111, 71, 0.28));
  transform: skew(-26deg) translate(2rem, 5rem);
  border-radius: 2rem;
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.08rem;
}

.hero__intro,
.section__heading p,
.proof-card p,
.step-card p,
.info-card span,
.quote-card p,
.faq-item p,
.panel-card p,
.site-footer p,
.lead-form__meta,
.list-panel li {
  color: var(--muted);
}

.hero__intro {
  max-width: 46rem;
  margin: 1rem 0 0;
  font-size: 1.04rem;
}

.hero__trust {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
}

.hero__trust li,
.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
}

.hero__trust li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.hero__actions,
.panel-card__actions,
.cta-banner__actions,
.lead-form__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 1.5rem;
}

.hero__meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero__stat,
.proof-card,
.step-card,
.info-card,
.quote-card,
.list-panel,
.panel-card,
.form-banner {
  border: 1px solid rgba(16, 34, 36, 0.08);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(7, 25, 29, 0.08);
}

.hero__stat {
  padding: 1rem;
}

.hero__stat strong {
  display: block;
  font-size: 1.1rem;
}

.hero__stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__panel {
  display: grid;
  gap: 1rem;
}

.hero__visual,
.panel-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 111, 71, 0.16), transparent 26rem),
    linear-gradient(160deg, var(--brand-deep), #0f464e);
  color: #fff;
}

.hero__visual {
  min-height: 18rem;
  box-shadow: var(--shadow);
}

.hero__visual-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.hero__visual-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(8, 46, 52, 0.28), rgba(8, 46, 52, 0.78));
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

.hero__visual-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual-overlay strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero__visual-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.panel-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.panel-card__header {
  margin-bottom: 1.2rem;
}

.panel-card {
  padding: 1.35rem;
}

.section {
  padding: 1.2rem 0 1.8rem;
}

.section--tint .section__shell,
.section--dark .section__shell,
.cta-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.section--tint .section__shell {
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(13, 154, 138, 0.08), rgba(255, 111, 71, 0.08)),
    rgba(255, 255, 255, 0.74);
}

.section--dark .section__shell {
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(160deg, var(--brand-deep), #112f43);
  color: #fff;
}

.section__heading {
  display: grid;
  gap: 0.65rem;
  max-width: 50rem;
  margin-bottom: 1.4rem;
}

.card-grid,
.proof-grid,
.quote-grid,
.step-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid,
.quote-grid,
.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.proof-card,
.quote-card,
.step-card {
  padding: 1.2rem;
}

.info-card {
  display: grid;
  gap: 0.5rem;
  min-height: 12rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-card__thumb {
  display: block;
  margin: -0.25rem -0.25rem 0.2rem;
  overflow: hidden;
  border-radius: calc(var(--radius-md) + 2px);
  aspect-ratio: 16 / 10;
}

.info-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card strong {
  font-size: 1.08rem;
}

.info-card__meta {
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.info-card:hover,
.info-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(13, 154, 138, 0.32);
}

.quote-card {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.quote-card__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.quote-card__person strong,
.quote-card__person span {
  display: block;
}

.quote-card__person span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.quote-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.quote-card p,
.quote-card footer,
.section--dark .section__heading p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-card footer {
  margin-top: 1rem;
  font-weight: 600;
}

.list-panel {
  padding: 1.2rem;
}

.answer-box,
.source-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border: 1px solid rgba(16, 34, 36, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(7, 25, 29, 0.06);
}

.answer-box {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
  align-items: start;
}

.answer-box__content,
.answer-box__list {
  min-width: 0;
}

.answer-box__text,
.source-panel__meta {
  margin: 0;
  color: var(--muted);
}

.source-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
  margin: 0;
}

.source-list a {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.bullet-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(16, 34, 36, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1rem;
}

.faq-item__feedback {
  margin: -0.35rem 0 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-700);
  font: inherit;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

.faq-item__feedback:focus-visible {
  outline: 3px solid var(--accent-300);
  outline-offset: 3px;
}

.cta-banner {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(13, 154, 138, 0.18), rgba(255, 111, 71, 0.18)),
    rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.form-banner {
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
}

.form-banner--success {
  border-color: rgba(28, 139, 83, 0.22);
  background: rgba(28, 139, 83, 0.1);
  color: var(--success);
}

.form-banner--error {
  border-color: rgba(185, 49, 49, 0.22);
  background: rgba(185, 49, 49, 0.08);
  color: var(--danger);
}

.form-banner ul {
  margin: 0;
  padding-left: 1rem;
}

.lead-form__progress {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.lead-form__progress-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 34, 36, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.lead-form__progress-step.is-active {
  background: rgba(13, 154, 138, 0.12);
  color: var(--brand-deep);
}

.lead-form__status {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.lead-form__status--single {
  margin-bottom: 1rem;
}

.lead-form {
  display: block;
}

.lead-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
}

.lead-form span,
.lead-form legend {
  font-size: 0.92rem;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 34, 36, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.92rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: rgba(185, 49, 49, 0.65);
}

.lead-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.lead-form fieldset {
  border: 1px solid rgba(16, 34, 36, 0.08);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}

.lead-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.35rem 0 0;
}

.lead-form__steps {
  display: grid;
}

.lead-form__step {
  display: none;
  scroll-margin-top: 6rem;
}

.lead-form__step.is-active {
  display: block;
}

.conditional-fields {
  display: none;
}

.conditional-fields.is-active {
  display: block;
}

.lead-form__meta {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.lead-form__locked-profile {
  margin: 0.35rem 0 0;
  padding: 0.6rem 0.8rem;
  font-size: 0.92rem;
  background: var(--surface-100, #eef6f5);
  border-radius: 12px;
}

.lead-form__locked-switch {
  color: var(--brand-600, #0a7a6e);
  font-weight: 600;
  white-space: nowrap;
}

.lead-form__trust {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted, #466063);
}

.lead-form__meta a {
  color: var(--ink);
  font-weight: 600;
}

.lead-form__privacy {
  margin: 0.95rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-form__privacy a {
  color: var(--ink);
  font-weight: 600;
}

.field-error {
  min-height: 1rem;
  color: var(--danger);
  font-size: 0.8rem;
}

.field-error--group {
  margin: 0.35rem 0 0;
}

.article-shell {
  display: grid;
  gap: 1.25rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.article-section {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(16, 34, 36, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(7, 25, 29, 0.06);
}

.article-section p + p {
  margin-top: 0.95rem;
}

.article-section .bullet-list {
  margin-top: 1rem;
}

.site-footer {
  padding: 2rem 0 5.5rem;
}

.site-footer__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(8, 46, 52, 0.96), rgba(17, 47, 67, 0.96));
  color: #fff;
}

.site-footer h2 {
  font-size: 1.1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer__legal {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.74);
}

.mobile-cta-bar {
  position: fixed;
  inset: auto 0 0;
  box-sizing: border-box;
  z-index: 25;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.5rem;
  background: rgba(8, 46, 52, 0.92);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  min-width: 0;
  padding: 0.5rem 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.15;
  white-space: normal;
}

/* Stukadoor Vacatures: vakgerichte navigatie en zichtbaar footermerk. */
body[data-site-mode="stukadoor"] .header-v2 {
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid rgba(9, 55, 50, 0.16);
  box-shadow: 0 12px 36px rgba(7, 39, 36, 0.08);
}

body[data-site-mode="stukadoor"] .header-v2__topbar {
  background: #092f2b;
}

body[data-site-mode="stukadoor"] .header-v2__topbar .container {
  min-height: 38px;
  padding-block: 5px;
}

body[data-site-mode="stukadoor"] .header-v2__brand-line::before,
body[data-site-mode="stukadoor"] .header-v2__brand-line::after {
  display: none;
}

body[data-site-mode="stukadoor"] .header-v2__brand-line > * {
  display: inline;
}

body[data-site-mode="stukadoor"] .header-v2__brand-line {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  gap: 12px;
}

body[data-site-mode="stukadoor"] .header-v2__brand-line strong {
  color: #fff;
  margin: 0;
}

body[data-site-mode="stukadoor"] .header-v2__brand-line span {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 12px;
}

body[data-site-mode="stukadoor"] .header-v2__main {
  background: #fffdf8;
}

body[data-site-mode="stukadoor"] .header-v2__main .container {
  gap: clamp(18px, 2.4vw, 38px);
  min-height: 82px;
}

body[data-site-mode="stukadoor"] .header-v2__brand {
  flex: 0 1 250px;
  min-width: 190px;
  padding: 0;
}

body[data-site-mode="stukadoor"] .header-v2__brand:hover {
  background: transparent;
  transform: none;
}

body[data-site-mode="stukadoor"] .header-v2__brand .brand__full-logo {
  height: auto;
  max-width: 250px;
  width: 100%;
}

body[data-site-mode="stukadoor"] .header-v2__nav {
  align-self: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  gap: 2px;
  justify-content: flex-start;
  padding: 0;
}

body[data-site-mode="stukadoor"] .header-v2__nav > a,
body[data-site-mode="stukadoor"] .header-v2__megagroup > summary {
  align-items: center;
  border-radius: 3px;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 750;
  min-height: 44px;
  padding: 11px 12px;
}

body[data-site-mode="stukadoor"] .header-v2__nav > a:hover,
body[data-site-mode="stukadoor"] .header-v2__nav > a[aria-current="page"],
body[data-site-mode="stukadoor"] .header-v2__megagroup > summary:hover,
body[data-site-mode="stukadoor"] .header-v2__megagroup[open] > summary {
  background: #edf5f2;
  box-shadow: none;
}

body[data-site-mode="stukadoor"] .header-v2__nav > .header-v2__nav-primary {
  background: #0b3a35;
  color: #fff;
  margin-right: 6px;
  padding-inline: 18px;
}

body[data-site-mode="stukadoor"] .header-v2__nav > .header-v2__nav-primary::before {
  background: var(--accent-500);
  content: "";
  height: 8px;
  margin-right: 9px;
  width: 8px;
}

body[data-site-mode="stukadoor"] .header-v2__nav > .header-v2__nav-primary:hover,
body[data-site-mode="stukadoor"] .header-v2__nav > .header-v2__nav-primary[aria-current="page"] {
  background: #061f1d;
  color: #fff;
}

body[data-site-mode="stukadoor"] .header-v2__mega {
  border: 1px solid rgba(9, 55, 50, 0.14);
  border-radius: 4px;
  box-shadow: 14px 18px 0 rgba(242, 101, 58, 0.2), 0 28px 70px rgba(3, 40, 38, 0.18);
  gap: 8px;
  left: 0;
  min-width: 700px;
  padding: 18px;
  top: calc(100% + 1px);
  transform: none;
}

body[data-site-mode="stukadoor"] .header-v2__mega-intro {
  border-bottom: 1px solid var(--surface-200);
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-bottom: 4px;
  padding: 0 4px 14px;
}

body[data-site-mode="stukadoor"] .header-v2__mega-intro span {
  color: var(--ink-500);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body[data-site-mode="stukadoor"] .persona-tile {
  border-radius: 3px;
  min-height: 82px;
}

body[data-site-mode="stukadoor"] .header-v2__actions::before {
  display: none;
}

body[data-site-mode="stukadoor"] .header-v2__actions .btn-v2--accent {
  font-size: 0.84rem;
  padding-inline: 15px;
  white-space: nowrap;
}

body[data-site-mode="stukadoor"] .header-v2__mobile-drawer {
  background: #fffdf8;
  border-left: 7px solid var(--accent-500);
  padding: 24px;
}

body[data-site-mode="stukadoor"] .header-v2__mobile-nav {
  gap: 10px;
}

body[data-site-mode="stukadoor"] .header-v2__mobile-profile-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

body[data-site-mode="stukadoor"] .header-v2__mobile-nav a {
  align-items: center;
  background: #f2f5f1;
  border: 1px solid rgba(9, 55, 50, 0.1);
  border-radius: 3px;
  display: flex;
  min-height: 48px;
  padding: 12px 14px;
}

body[data-site-mode="stukadoor"] .header-v2__mobile-nav .header-v2__mobile-featured {
  background: #0b3a35;
  color: #fff;
  font-size: 1.06rem;
  justify-content: space-between;
  min-height: 58px;
}

body[data-site-mode="stukadoor"] .header-v2__mobile-label {
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 8px;
  text-transform: uppercase;
}

body[data-site-mode="stukadoor"] .footer-v2 {
  background: #071f1d;
  border-top: 7px solid var(--accent-500);
  margin-top: 0;
}

body[data-site-mode="stukadoor"] .stukadoor-city-vacancies {
  overflow: hidden;
}

body[data-site-mode="stukadoor"] .footer-v2__brand-panel {
  align-items: center;
  background: #f4efe4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 10px 10px 0 rgba(242, 101, 58, 0.9);
  color: var(--ink-900);
  display: grid;
  gap: clamp(20px, 4vw, 52px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr) auto;
  margin-bottom: 58px;
  padding: clamp(22px, 3.2vw, 38px);
}

body[data-site-mode="stukadoor"] .footer-v2__brand-logo {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(9, 55, 50, 0.12);
  display: flex;
  margin: 0;
  min-height: 104px;
  padding: 18px 20px;
}

body[data-site-mode="stukadoor"] .footer-v2__brand-logo img {
  height: auto;
  max-width: 100%;
  width: 340px;
}

body[data-site-mode="stukadoor"] .footer-v2__brand-copy strong {
  display: block;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.55rem);
  line-height: 1.2;
  margin-bottom: 7px;
}

body[data-site-mode="stukadoor"] .footer-v2__brand-copy p {
  color: var(--ink-600);
  margin: 0;
}

body[data-site-mode="stukadoor"] .footer-v2__grid {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 40px;
}

@media (max-width: 1180px) {
  body[data-site-mode="stukadoor"] .header-v2__actions { display: none; }
  body[data-site-mode="stukadoor"] .header-v2__menu-btn { display: inline-flex; }
  body[data-site-mode="stukadoor"] .header-v2__nav { display: none; }
}

@media (max-width: 820px) {
  body[data-site-mode="stukadoor"] .footer-v2__brand-panel {
    grid-template-columns: 1fr;
  }

  body[data-site-mode="stukadoor"] .footer-v2__brand-panel .btn-v2 {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  body[data-site-mode="stukadoor"] .hero-v2__copy,
  body[data-site-mode="stukadoor"] .hero-v2__panel {
    min-width: 0;
    width: 100%;
  }

  body[data-site-mode="stukadoor"] .hero-v2__h1 {
    overflow-wrap: anywhere;
  }

  body[data-site-mode="stukadoor"] .header-v2__main .container {
    min-height: 68px;
  }

  body[data-site-mode="stukadoor"] .header-v2__brand {
    flex-basis: 190px;
  }

  body[data-site-mode="stukadoor"] .header-v2__brand .brand__full-logo {
    max-width: 190px;
  }

  body[data-site-mode="stukadoor"] .footer-v2__brand-panel {
    box-shadow: 6px 6px 0 rgba(242, 101, 58, 0.9);
    margin-right: 6px;
  }

  body[data-site-mode="stukadoor"] .footer-v2__brand-logo {
    min-height: 86px;
    padding: 14px;
  }
}

.mobile-cta-bar__item--whatsapp,
.mobile-cta-bar__item--whatsapp:visited {
  background: #137a3a;
  color: #fff;
}

.mobile-cta-bar__item--whatsapp:hover,
.mobile-cta-bar__item--whatsapp:active {
  background: #0b5d2e;
  color: #fff;
}

.mobile-cta-bar__item--whatsapp:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .hero__shell,
  .answer-box,
  .cta-banner,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .quote-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .topnav {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 5rem;
  }

  .topbar {
    padding: 0.9rem 0;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand__mark-shell {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.38rem;
  }

  .brand__eyebrow {
    font-size: 0.53rem;
    letter-spacing: 0.2em;
  }

  .brand__wordmark-main {
    font-size: 1.08rem;
  }

  .topbar__actions {
    display: none;
  }

  .hero__meta,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .panel-card__actions,
  .cta-banner__actions,
  .lead-form__actions {
    flex-direction: column;
  }

  .hero__visual-image {
    min-height: 15rem;
  }

  .hero__actions .button,
  .panel-card__actions .button,
  .cta-banner__actions .button,
  .lead-form__actions .button {
    width: 100%;
  }

  h1 {
    max-width: 100%;
  }

  .hero__content,
  .panel-card,
  .section--tint .section__shell,
  .section--dark .section__shell,
  .cta-banner,
  .site-footer__grid {
    border-radius: 24px;
  }

  .mobile-cta-bar {
    display: grid;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   DESIGN SYSTEM v2 — utilities, primitives, components
   (Batch 1+ scaffolding; older selectors above remain untouched
    until they are replaced batch-by-batch.)
   ════════════════════════════════════════════════════════════════════════ */

/* ─── Container utilities ──────────────────────────────────────────── */
.container       { width: var(--container);       margin-inline: auto; }
.container-wide  { width: var(--container-wide);  margin-inline: auto; }
.container-prose { width: var(--container-prose); margin-inline: auto; }

/* ─── Grid utilities (autofit, responsive) ─────────────────────────── */
.grid       { display: grid; gap: var(--space-5); }
.grid--2    { grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); }
.grid--3    { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid--4    { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }
.grid--12   { grid-template-columns: repeat(12, 1fr); }
.grid--tight { gap: var(--space-3); }
.grid--loose { gap: var(--space-7); }
.stack      { display: flex; flex-direction: column; gap: var(--space-4); }
.row        { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* ─── Section primitive ────────────────────────────────────────────── */
.section-v2 {
  padding-block: var(--space-9);
}
.section-v2--tight  { padding-block: var(--space-7); }
.section-v2--tint   { background: var(--brand-50); }
.section-v2--dark   { background: var(--brand-900); color: var(--surface-0); }
.section-v2--accent { background: var(--accent-50); }
.section-v2__head { max-width: 64ch; margin-bottom: var(--space-6); }
.section-v2__head .eyebrow {
  color: var(--brand-600);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 var(--space-2);
}
.section-v2__head h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); margin: 0 0 var(--space-3); }
.section-v2__head p  { font-size: var(--fs-body); color: var(--ink-500); margin: 0; }

@media (min-width: 768px) {
  .section-v2 { padding-block: var(--space-10); }
}

/* ─── Card primitive ───────────────────────────────────────────────── */
.card {
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  border: 1px solid var(--surface-200);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.card__icon { width: 40px; height: 40px; color: var(--brand-500); }
.card__eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-600);
  font-weight: 600;
}
.card__title { font-size: var(--fs-h3); line-height: var(--lh-snug); margin: 0; color: var(--ink-900); }
.card__body  { color: var(--ink-500); font-size: var(--fs-small); margin: 0; }
.card__meta  { font-size: var(--fs-small); color: var(--ink-500); }
.card__cta   { margin-top: auto; color: var(--brand-600); font-weight: 600; display: inline-flex; align-items: center; gap: var(--space-2); }

.card--persona { border-color: var(--brand-200); }
.card--persona .card__icon { color: var(--accent-500); width: 56px; height: 56px; }
.card--accent-band {
  position: relative;
  overflow: hidden;
}
.card--accent-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
}

/* ─── Icon helpers ─────────────────────────────────────────────────── */
.icon       { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; fill: currentColor; }
.icon--sm   { width: 16px; height: 16px; }
.icon--md   { width: 24px; height: 24px; }
.icon--lg   { width: 40px; height: 40px; }
.icon--xl   { width: 64px; height: 64px; }
.icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  background: var(--brand-50);
  color: var(--brand-600);
}
.icon-circle--accent { background: var(--accent-50); color: var(--accent-600); }
.icon-circle--ink    { background: var(--ink-100); color: var(--ink-700); }

/* ─── Button v2 (extends existing .button when applied alongside) ── */
.btn-v2 {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-body);
  background: var(--brand-500);
  color: var(--surface-0);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn-v2:hover  { background: var(--brand-600); transform: translateY(-1px); }
.btn-v2:active { transform: translateY(0); }
.btn-v2--accent { background: var(--accent-500); }
.btn-v2--accent:hover { background: var(--accent-600); }
.btn-v2--ghost  { background: transparent; border-color: var(--brand-500); color: var(--brand-600); }
.btn-v2--ghost:hover  { background: var(--brand-50); }
.btn-v2--block  { display: flex; justify-content: center; width: 100%; }
.btn-v2--lg     { padding: var(--space-4) var(--space-6); font-size: 1.1rem; }
.btn-v2--sm     { padding: var(--space-2) var(--space-4); font-size: var(--fs-small); }

/* ─── Process step (numbered timeline) ────────────────────────────── */
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.process-step__number {
  width: 48px; height: 48px; border-radius: var(--radius-pill);
  background: var(--brand-500); color: var(--surface-0);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}
.process-step__title { font-size: var(--fs-h3); margin: 0 0 var(--space-2); }
.process-step__body  { color: var(--ink-500); margin: 0; }

/* ─── Trust badge (microbadge with icon) ──────────────────────────── */
.trust-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--surface-0);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  color: var(--ink-700);
}
.trust-badge .icon { color: var(--brand-500); }

/* ─── Salary table (used in homepage Salaris-blok) ─────────────────── */
.salary-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--space-4);
  font-size: var(--fs-small);
  background: var(--surface-0);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.salary-table thead { background: var(--brand-50); }
.salary-table th, .salary-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--surface-200);
}
.salary-table tbody th { font-weight: 600; color: var(--ink-900); }
.salary-table tbody td strong { color: var(--brand-700); }
.salary-table tbody small { color: var(--ink-500); }
.salary-source {
  font-size: var(--fs-small);
  color: var(--ink-500);
  margin-block: var(--space-3) 0;
}
.salary-source a { color: var(--brand-600); text-decoration: underline; }

/* ─── Lead-form consent + region-hint ─────────────────────────────── */
.lead-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--surface-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-200);
  font-size: var(--fs-small);
  color: var(--ink-700);
  margin-block: var(--space-3);
}
.lead-form__consent input[type="checkbox"] { margin-top: 4px; }
.lead-form__consent a { color: var(--brand-600); text-decoration: underline; }
.lead-form__region-hint {
  margin-block: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--brand-50);
  border-left: 3px solid var(--brand-400);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  color: var(--ink-700);
}
.lead-form__region-hint summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand-700);
}
.lead-form__region-hint p { margin: var(--space-2) 0 0; }

/* ─── Persona-tile (used in hero quick-pick + mega-menu) ──────────── */
.persona-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--surface-0);
  border: 1px solid var(--surface-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--ink-900);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.persona-tile:hover {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.persona-tile__title { font-weight: 600; font-size: var(--fs-body); margin: 0; }
.persona-tile__meta  { color: var(--ink-500); font-size: var(--fs-small); margin: 0; }

/* ─── Visually-hidden helper ──────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ════════════════════════════════════════════════════════════════════
   HEADER v2 (multi-layer)
   ════════════════════════════════════════════════════════════════════ */
.header-v2 {
  position: sticky; top: 0; z-index: 20;
  background: var(--surface-overlay);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-200);
}
.header-v2__topbar {
  background: var(--brand-900);
  color: var(--ink-100);
  font-size: var(--fs-eyebrow);
}
.header-v2__topbar .container {
  justify-content: space-between;
  padding-block: var(--space-2);
  flex-wrap: wrap;
}
.header-v2__brand-line { color: var(--ink-100); opacity: 0.9; }
.header-v2__brand-line strong { color: var(--surface-0); margin-right: var(--space-1); }
.header-v2__sep { opacity: 0.5; margin-inline: var(--space-1); }
.header-v2__contact-line { display: flex; gap: var(--space-3); }
.header-v2__contact-line a {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--surface-0);
  transition: color var(--dur-fast) var(--ease-out);
}
.header-v2__contact-line a:hover { color: var(--accent-300); }

.header-v2__main {
  padding-block: var(--space-4);
}
.header-v2__main .container { justify-content: space-between; gap: var(--space-5); }

.header-v2__brand { display: inline-flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.header-v2__brand .brand__full-logo { display:block; width:auto; height:46px; max-width:min(330px,58vw); object-fit:contain; }
@media (max-width: 640px) { .header-v2__brand .brand__full-logo { height:36px; max-width:62vw; } }
.footer-v2__brand-logo { display:inline-block; margin-bottom:var(--space-5); }
.footer-v2__brand-logo img { display:block; width:min(360px,72vw); height:auto; }
.header-v2__brand .brand__mark-shell { width: 44px; height: 44px; padding: 7px; }
.header-v2__brand .brand__wordmark { color: var(--ink-900); font-weight: 700; line-height: 1; }
.header-v2__brand .brand__eyebrow { font-size: 9px; letter-spacing: 0.22em; color: var(--ink-500); text-transform: uppercase; }
.header-v2__brand .brand__wordmark-main { font-size: 1.1rem; }

.header-v2__nav { display: flex; gap: var(--space-5); align-items: center; }
.header-v2__nav > a {
  font-weight: 600;
  color: var(--ink-700);
  padding-block: var(--space-2);
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.header-v2__nav > a:hover, .header-v2__nav > a[aria-current="page"] {
  color: var(--brand-600);
  border-bottom-color: var(--brand-500);
}

.header-v2__megagroup { position: relative; }
.header-v2__megagroup > summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600;
  color: var(--ink-700);
  padding-block: var(--space-2);
}
.header-v2__megagroup > summary::-webkit-details-marker { display: none; }
.header-v2__megagroup > summary:hover { color: var(--brand-600); }
.header-v2__megagroup[open] > summary { color: var(--brand-700); }
.header-v2__mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 640px;
  max-width: calc(100vw - 32px);
  background: var(--surface-0);
  border: 1px solid var(--surface-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-overlay);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  z-index: 30;
}
.header-v2__mega--regions { grid-template-columns: 1fr 1fr; }

.header-v2__actions { display: flex; gap: var(--space-3); align-items: center; }

.header-v2__menu-btn {
  display: none;
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  cursor: pointer;
  color: var(--brand-700);
}

.header-v2__sub {
  background: var(--surface-50);
  border-top: 1px solid var(--surface-200);
  padding-block: var(--space-2);
}
.header-v2__breadcrumbs {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--fs-small);
  color: var(--ink-500);
}
.header-v2__breadcrumbs a { color: var(--brand-600); }
.header-v2__breadcrumbs a:hover { text-decoration: underline; }
.header-v2__breadcrumbs [aria-current="page"] { color: var(--ink-700); font-weight: 600; }

.header-v2__mobile-drawer {
  position: fixed; inset: 0; z-index: 40;
  background: var(--surface-0);
  display: flex; flex-direction: column;
  padding: var(--space-5);
  overflow-y: auto;
}
.header-v2__mobile-drawer[hidden] { display: none; }
.header-v2__mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-5); }
.header-v2__mobile-head button { background: none; border: 0; padding: var(--space-2); cursor: pointer; }
.header-v2__mobile-nav { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-5); }
.header-v2__mobile-nav a { padding: var(--space-3); border-radius: var(--radius-sm); background: var(--surface-50); font-weight: 600; }
.header-v2__mobile-actions { display: flex; flex-direction: column; gap: var(--space-3); margin-top: auto; }

/* Premium brand/header refresh */
.header-v2 {
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(7, 91, 83, 0.12);
  box-shadow: 0 18px 70px rgba(3, 40, 38, 0.08);
}

.header-v2__topbar {
  background:
    linear-gradient(90deg, rgba(255, 111, 71, 0.1), transparent 28%),
    var(--brand-900);
}

.header-v2__topbar .container {
  padding-block: 7px;
}

.header-v2__brand-line {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.header-v2__brand-line > * {
  display: none;
}

.header-v2__brand-line::before,
.header-v2__brand-line::after {
  display: inline-flex;
  font-size: 0.75rem;
  line-height: 1;
}

.header-v2__brand-line::before {
  color: var(--surface-0);
  content: "Dakwerk vinden zonder jobboard-gedoe";
  font-weight: 800;
}

.header-v2__brand-line::after {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.74);
  content: "Geen CV nodig / reactie binnen 1 werkdag / werk dichtbij";
  font-weight: 600;
  padding-left: 10px;
}

.header-v2__contact-line {
  align-items: center;
  gap: 8px;
}

.header-v2__contact-line a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  padding: 7px 10px;
}

.header-v2__contact-line a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface-0);
}

.header-v2__phone::before {
  background: var(--accent-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 111, 71, 0.14);
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
}

.header-v2__main {
  padding-block: 10px;
}

.header-v2__main .container {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.94));
  border: 1px solid rgba(7, 91, 83, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(3, 40, 38, 0.08);
  flex-wrap: nowrap;
  padding: 9px 12px;
}

.header-v2__brand {
  border-radius: 18px;
  gap: 10px;
  min-width: 240px;
  padding: 4px 10px 4px 4px;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.header-v2__brand:hover {
  background: var(--brand-50);
  transform: translateY(-1px);
}

.header-v2__brand .brand__mark-shell {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 111, 71, 0.28), transparent 34%),
    var(--brand-900);
  border: 1px solid rgba(7, 91, 83, 0.16);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(3, 40, 38, 0.18);
  height: 48px;
  padding: 0;
  width: 48px;
}

.header-v2__brand .brand__mark {
  height: 100%;
  width: 100%;
}

.header-v2__brand .brand__wordmark {
  display: grid;
  gap: 2px;
}

.header-v2__brand .brand__eyebrow {
  color: var(--brand-700);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.header-v2__brand .brand__eyebrow {
  font-size: 0;
}

.header-v2__brand .brand__eyebrow::before {
  content: "DAKWERK ROUTE";
  font-size: 8px;
}

.header-v2__brand .brand__wordmark-main {
  color: var(--ink-900);
  display: block;
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.header-v2__brand .brand__wordmark-main::after {
  color: var(--ink-500);
  content: "Bel of app naar werk dichtbij";
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: 1px;
}

.header-v2__brand .brand__wordmark-dot,
.header-v2__brand .brand__wordmark-tld {
  color: var(--accent-500);
}

.header-v2__nav {
  background: rgba(236, 250, 247, 0.68);
  border: 1px solid rgba(7, 91, 83, 0.1);
  border-radius: var(--radius-pill);
  flex: 1 1 auto;
  gap: 4px;
  justify-content: center;
  min-width: 0;
  padding: 4px;
}

.header-v2__nav > a,
.header-v2__megagroup > summary {
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  padding: 12px 13px;
  white-space: nowrap;
}

.header-v2__nav > a:hover,
.header-v2__nav > a[aria-current="page"],
.header-v2__megagroup > summary:hover,
.header-v2__megagroup[open] > summary {
  background: var(--surface-0);
  box-shadow: 0 8px 22px rgba(3, 40, 38, 0.08);
  color: var(--brand-700);
}

.header-v2__actions {
  flex: 0 0 auto;
  gap: 10px;
}

.header-v2__actions::before {
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill);
  color: var(--brand-700);
  content: "30 sec. intake";
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  padding: 10px 12px;
  white-space: nowrap;
}

.header-v2__cta,
.header-v2__actions .btn-v2--accent {
  box-shadow: 0 16px 34px rgba(255, 111, 71, 0.24);
  font-weight: 900;
  padding-inline: 18px;
}

.header-v2__menu-btn {
  align-items: center;
  background: var(--brand-900);
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 28px rgba(3, 40, 38, 0.18);
  color: var(--surface-0);
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
}

.header-v2__menu-btn::before {
  content: "";
  display: inline-block;
  height: 14px;
  width: 18px;
  background:
    linear-gradient(var(--surface-0), var(--surface-0)) 0 1px / 18px 2px no-repeat,
    linear-gradient(var(--surface-0), var(--surface-0)) 0 6px / 14px 2px no-repeat,
    linear-gradient(var(--surface-0), var(--surface-0)) 0 11px / 18px 2px no-repeat;
}

.header-v2__menu-btn::after {
  content: "Menu";
}

.header-v2__menu-btn .icon {
  display: none;
}

.header-v2__mobile-head {
  border-bottom: 1px solid var(--surface-200);
  padding-bottom: var(--space-4);
}

.header-v2__mobile-head > span:first-child {
  color: var(--brand-700);
  font-size: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.header-v2__mobile-head > span:first-child::before {
  color: var(--ink-900);
  content: "Dakdekkervacatures.nl";
  font-size: 1.1rem;
}

.header-v2__mobile-head button {
  align-items: center;
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-pill);
  color: var(--brand-800);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
}

.header-v2__mobile-head button::before {
  content: "x";
}

.header-v2__mobile-head button .icon {
  display: none;
}

body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .header-v2__nav, .header-v2__actions { display: none; }
  .header-v2__menu-btn { display: inline-flex; }
}
@media (max-width: 600px) {
  .header-v2__topbar .container {
    justify-content: center;
  }

  .header-v2__brand-line { display: none; }

  .header-v2__contact-line {
    justify-content: center;
    width: 100%;
  }

  .header-v2__main .container {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    padding-inline: 16px;
    width: 100%;
  }

  .header-v2__brand {
    min-width: 0;
    padding: 0;
  }

  .header-v2__brand .brand__mark-shell {
    height: 44px;
    width: 44px;
  }

  .header-v2__brand .brand__wordmark-main {
    font-size: 1.05rem;
  }

  .header-v2__brand .brand__wordmark-main::after {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════════
   HERO v2
   ════════════════════════════════════════════════════════════════════ */
.hero-v2 { padding-block: var(--space-8); }
.hero-v2__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.hero-v2__copy .eyebrow {
  color: var(--brand-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: var(--fs-eyebrow);
}
.hero-v2__h1 {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  margin: var(--space-3) 0 var(--space-4);
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.hero-v2__intro {
  font-size: 1.1rem;
  color: var(--ink-700);
  margin: 0 0 var(--space-5);
  max-width: 56ch;
}
.hero-v2__cta-row { display: flex; gap: var(--space-3); margin-block: var(--space-5); flex-wrap: wrap; }
.hero-v2__success {
  padding: var(--space-3) var(--space-4);
  background: var(--success-50);
  border-left: 4px solid var(--success-500);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: var(--space-2);
  color: var(--success-500);
  margin-block: var(--space-3);
}

.hero-v2__panel {
  background: linear-gradient(160deg, var(--brand-900) 0%, var(--brand-700) 100%);
  color: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-5);
  box-shadow: var(--shadow-overlay);
}
.hero-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.hero-v2__stat {
  display: flex; flex-direction: column; gap: var(--space-1);
  align-items: center; text-align: center;
  padding: var(--space-3);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--surface-0);
}
.hero-v2__stat .icon { color: var(--accent-300); margin-bottom: var(--space-1); }
.hero-v2__stat strong { font-size: 1rem; }
.hero-v2__stat span { font-size: var(--fs-small); opacity: 0.85; }

.hero-v2__personas-label { font-size: var(--fs-small); opacity: 0.8; margin: 0 0 var(--space-2); }
.hero-v2__personas-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2);
}
.persona-tile--compact {
  background: rgba(255,255,255,0.08);
  border-color: transparent;
  color: var(--surface-0);
  padding: var(--space-2) var(--space-3);
}
.persona-tile--compact:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.persona-tile--compact .icon-circle--accent { background: var(--accent-500); color: var(--surface-0); width: 36px; height: 36px; }
.persona-tile--compact .persona-tile__title { color: var(--surface-0); font-size: var(--fs-small); }

@media (max-width: 900px) {
  .hero-v2__grid { grid-template-columns: 1fr; }
  .hero-v2__h1 { font-size: var(--fs-h1); }
}

/* ════════════════════════════════════════════════════════════════════
   Process grid (timeline)
   ════════════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px,100%),1fr));
  gap: var(--space-5);
  counter-reset: step;
}

/* ════════════════════════════════════════════════════════════════════
   Trust strip
   ════════════════════════════════════════════════════════════════════ */
.trust-strip {
  display: flex; gap: var(--space-2); flex-wrap: wrap;
  margin-block: var(--space-3);
}

/* ════════════════════════════════════════════════════════════════════
   Persona quickpick
   ════════════════════════════════════════════════════════════════════ */
.persona-quickpick .card__cta { color: var(--brand-700); }

/* ════════════════════════════════════════════════════════════════════
   Blog grid v2 + card
   ════════════════════════════════════════════════════════════════════ */
.blog-grid-v2 .card { padding: 0; overflow: hidden; }
.blog-card-v2__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-100);
}
.blog-card-v2 .card__eyebrow,
.blog-card-v2 .card__title,
.blog-card-v2 .card__body,
.blog-card-v2 .card__cta {
  padding-inline: var(--space-5);
}
.blog-card-v2 .card__eyebrow { padding-top: var(--space-4); }
.blog-card-v2 .card__cta { padding-bottom: var(--space-5); }

/* ════════════════════════════════════════════════════════════════════
   Funnel hero (sticky per persona)
   ════════════════════════════════════════════════════════════════════ */
.funnel-hero { padding-block: var(--space-7); }
.funnel-hero__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-7); align-items: start;
}
.funnel-hero__copy { padding-block: var(--space-4); }
.funnel-hero__icon-row { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.funnel-bullets {
  list-style: none; padding: 0; margin: var(--space-4) 0;
  display: flex; flex-direction: column; gap: var(--space-2);
}
.funnel-bullets li {
  display: flex; align-items: center; gap: var(--space-2);
  color: var(--ink-700);
}
.funnel-bullets .icon { color: var(--brand-500); }
.funnel-hero__panel { background: var(--surface-0); border-radius: var(--radius-xl); box-shadow: var(--shadow-overlay); padding: var(--space-5); }

.funnel-hero--thankyou .funnel-thankyou__panel {
  max-width: 720px; margin-inline: auto;
  background: var(--surface-0); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-overlay);
  padding: var(--space-7);
  text-align: center;
}
.funnel-thankyou__actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-block: var(--space-5); }
.funnel-thankyou__next { text-align: left; margin-top: var(--space-5); }
.funnel-thankyou__next ol { padding: 0; list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.funnel-thankyou__next li { display: flex; align-items: center; gap: var(--space-2); color: var(--ink-700); }

@media (max-width: 900px) {
  .funnel-hero__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   Footer v2
   ════════════════════════════════════════════════════════════════════ */
.footer-v2 {
  background: var(--brand-900);
  color: var(--ink-100);
  padding-block: var(--space-7);
  margin-top: var(--space-7);
}
.footer-v2__grid h3 {
  color: var(--surface-0);
  font-size: var(--fs-h3);
  margin: 0 0 var(--space-3);
}
.footer-v2__grid ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); margin: 0; }
.footer-v2__grid a {
  color: var(--ink-100);
  opacity: 0.85;
  transition: opacity var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer-v2__grid a:hover { opacity: 1; color: var(--accent-300); }
.footer-v2__icon { display: inline-flex; align-items: center; gap: var(--space-1); }
.footer-v2__legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3);
  font-size: var(--fs-small);
  color: var(--ink-300);
}
.footer-v2__legal-nav a { color: var(--ink-300); margin-inline: 2px; }
.footer-v2__legal-nav a:hover { color: var(--accent-300); }


/* ════════════════════════════════════════════════════════════════════
   Salary teaser callout (segment + funnel pages)
   ════════════════════════════════════════════════════════════════════ */
.salary-teaser-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5);
  background: linear-gradient(120deg, var(--brand-50) 0%, var(--accent-50) 100%);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--accent-500);
  box-shadow: var(--shadow-card);
}
.salary-teaser-callout .icon-circle {
  width: 64px; height: 64px;
}
.salary-teaser-callout__label {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-700);
  font-weight: 700;
  margin: 0 0 var(--space-1);
}
.salary-teaser-callout__value {
  font-size: var(--fs-h3);
  color: var(--ink-900);
  font-weight: 700;
  margin: 0 0 var(--space-2);
}
.salary-teaser-callout__source {
  font-size: var(--fs-small);
  color: var(--ink-500);
  margin: 0;
}
.salary-teaser-callout__source a { color: var(--brand-600); text-decoration: underline; }

@media (max-width: 600px) {
  .salary-teaser-callout { grid-template-columns: 1fr; text-align: center; }
  .salary-teaser-callout .icon-circle { justify-self: center; }
}

/* ════════════════════════════════════════════════════════════════════
   Funnel live-count badge
   ════════════════════════════════════════════════════════════════════ */
.funnel-live-count {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-50);
  border-left: 3px solid var(--accent-500);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  color: var(--ink-700);
  margin: 0 0 var(--space-4);
}
.funnel-live-count .icon { color: var(--accent-500); }
.funnel-live-count strong { color: var(--accent-700); font-weight: 700; }

/* ════════════════════════════════════════════════════════════════════
   Trust section v2 (homepage social proof grid)
   ════════════════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--space-4);
}
.trust-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--space-1);
  padding: var(--space-5);
  background: var(--surface-0);
  border: 1px solid var(--surface-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.trust-card .icon { color: var(--brand-500); margin-bottom: var(--space-2); }
.trust-card strong { font-size: var(--fs-h3); color: var(--ink-900); line-height: 1.2; }
.trust-card span { font-size: var(--fs-small); color: var(--ink-500); }

.trust-badge a, a.trust-badge { color: inherit; text-decoration: none; }
a.trust-badge { transition: border-color var(--dur-fast) var(--ease-out); }
a.trust-badge:hover { border-color: var(--brand-400); }

/* Funnel form sticky-capable indicator (no js-class swap; CSS-only sticky on lg) */
@media (min-width: 1024px) {
  .funnel-hero__panel.is-sticky-capable {
    position: sticky;
    top: calc(var(--header-h-sticky) + var(--space-4));
  }
}

/* ════════════════════════════════════════════════════════════════════
   Reading-progress bar (article pages)
   ════════════════════════════════════════════════════════════════════ */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
.reading-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
  width: 0;
  transition: width 80ms linear;
}

/* ════════════════════════════════════════════════════════════════════
   Article hero (full-width SVG background)
   ════════════════════════════════════════════════════════════════════ */
.article-hero {
  background-size: cover;
  background-position: center;
  color: var(--surface-0);
  padding-block: var(--space-9);
  margin-bottom: var(--space-6);
}
.article-hero__shell { max-width: 800px; }
.article-hero .eyebrow {
  color: var(--accent-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: var(--fs-eyebrow);
}
.article-hero__h1 {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  margin: var(--space-3) 0 var(--space-4);
  letter-spacing: -0.02em;
}
.article-hero__intro {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 64ch;
  margin: 0 0 var(--space-5);
}
.article-hero__meta {
  display: flex; gap: var(--space-4); flex-wrap: wrap;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.8);
}
.article-hero__meta span { display: inline-flex; align-items: center; gap: var(--space-1); }
.article-hero__meta .icon { color: var(--accent-300); }

/* ════════════════════════════════════════════════════════════════════
   Article body (grid: TOC + content)
   ════════════════════════════════════════════════════════════════════ */
.article-body__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-7);
  align-items: start;
}
.article-toc {
  position: sticky;
  top: calc(var(--header-h-sticky) + var(--space-4));
  font-size: var(--fs-small);
}
.article-toc details { background: var(--surface-0); border: 1px solid var(--surface-200); border-radius: var(--radius-md); padding: var(--space-3); }
.article-toc summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-eyebrow);
  margin-bottom: var(--space-2);
}
.article-toc ol {
  list-style: decimal inside;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--space-2);
}
.article-toc a {
  color: var(--ink-700);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.article-toc a:hover { color: var(--brand-600); }

.article-content {
  max-width: 70ch;
  font-size: 1.05rem;
  line-height: var(--lh-relaxed);
}
.article-content h2 {
  font-size: var(--fs-h2);
  color: var(--ink-900);
  margin: var(--space-7) 0 var(--space-3);
  scroll-margin-top: calc(var(--header-h-sticky) + var(--space-4));
}
.article-content h2:first-child { margin-top: 0; }
.article-content p { margin: 0 0 var(--space-4); color: var(--ink-700); }
.article-content .bullet-list { margin: 0 0 var(--space-5) var(--space-5); }
.article-content .bullet-list li { margin-bottom: var(--space-2); }

@media (max-width: 1023px) {
  .article-body__grid { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-toc details { background: var(--surface-50); }
}

/* ════════════════════════════════════════════════════════════════════
   Article inline CTA (halfway through article)
   ════════════════════════════════════════════════════════════════════ */
.article-cta-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5);
  background: linear-gradient(120deg, var(--brand-50), var(--accent-50));
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--accent-500);
  margin-block: var(--space-6);
}
.article-cta-inline__label {
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--ink-900);
  margin: 0 0 var(--space-2);
}
.article-cta-inline__body { color: var(--ink-700); margin: 0 0 var(--space-3); }
@media (max-width: 600px) {
  .article-cta-inline { grid-template-columns: 1fr; text-align: center; }
  .article-cta-inline .icon-circle { justify-self: center; }
}

/* ════════════════════════════════════════════════════════════════════
   Article share + author
   ════════════════════════════════════════════════════════════════════ */
.article-share {
  display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap;
  margin-block: var(--space-7);
  padding-block: var(--space-4);
  border-block: 1px solid var(--surface-200);
}
.article-share__label { font-weight: 600; color: var(--ink-700); font-size: var(--fs-small); }

.article-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface-50);
  border-radius: var(--radius-md);
  margin-block: var(--space-5);
}
.article-author__name { font-weight: 700; color: var(--ink-900); margin: 0 0 var(--space-1); }
.article-author__bio { color: var(--ink-500); margin: 0; font-size: var(--fs-small); }

/* ════════════════════════════════════════════════════════════════════
   Field helper text
   ════════════════════════════════════════════════════════════════════ */
.field-help {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--ink-500);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════════
   Print stylesheet (cleaner article print)
   ════════════════════════════════════════════════════════════════════ */
@media print {
  .header-v2, .footer-v2, .mobile-cta-bar, .reading-progress,
  .article-cta-inline, .article-share, .header-v2__mobile-drawer,
  .lead-form, .funnel-hero__panel, .persona-quickpick, .trust-grid {
    display: none !important;
  }
  body { background: white; color: black; }
  .article-hero { background: white !important; color: black !important; padding: 0; margin: 0 0 1cm; }
  .article-hero__h1, .article-hero__intro, .article-hero__meta { color: black !important; }
  .article-content { max-width: 100%; font-size: 11pt; }
  a { color: black !important; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 80%; }
}

/* ════════════════════════════════════════════════════════════════════
   404 + error pages
   ════════════════════════════════════════════════════════════════════ */
.error-hero {
  background: linear-gradient(160deg, var(--brand-900), var(--brand-700));
  color: var(--surface-0);
  padding-block: var(--space-9);
}
.error-hero__shell { text-align: center; max-width: 720px; margin-inline: auto; }
.error-hero__code {
  font-size: clamp(5rem, 3rem + 10vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-500);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-3);
}
.error-hero h1 {
  font-size: var(--fs-h1);
  color: var(--surface-0);
  margin: 0 0 var(--space-3);
}
.error-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 var(--space-5);
}
.error-hero__actions {
  display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════════
   Blog filter tabs + search
   ════════════════════════════════════════════════════════════════════ */
.blog-filter {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.blog-filter__search {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--surface-200);
  border-radius: var(--radius-pill);
  font-size: var(--fs-body);
  background: var(--surface-0);
  width: 100%;
}
.blog-filter__search:focus {
  border-color: var(--brand-400);
  outline: 3px solid var(--brand-400);
  outline-offset: -1px;
}
.blog-filter__tabs {
  display: flex; gap: var(--space-2); flex-wrap: wrap;
}
.blog-filter__tab {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--surface-200);
  background: var(--surface-0);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  color: var(--ink-700);
}
.blog-filter__tab:hover { border-color: var(--brand-400); color: var(--brand-700); }
.blog-filter__tab.is-active {
  background: var(--brand-500);
  color: var(--surface-0);
  border-color: var(--brand-500);
}
.blog-filter__empty {
  padding: var(--space-6);
  text-align: center;
  color: var(--ink-500);
  background: var(--surface-50);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
}

/* ════════════════════════════════════════════════════════════════════
   Confetti (CSS-only, prefers-reduced-motion safe via JS guard)
   ════════════════════════════════════════════════════════════════════ */
.dkdv-confetti {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  overflow: hidden;
}
.dkdv-confetti span {
  position: absolute; top: -20px;
  width: 12px; height: 12px;
  border-radius: 2px;
  animation: dkdv-fall linear forwards;
}
@keyframes dkdv-fall {
  0%   { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.2; }
}
@media (prefers-reduced-motion: reduce) {
  .dkdv-confetti { display: none; }
}

/* ════════════════════════════════════════════════════════════════════
   Employer pricing + comparison table
   ════════════════════════════════════════════════════════════════════ */
.pricing-grid { align-items: stretch; }
.pricing-card {
  display: flex; flex-direction: column; gap: var(--space-3);
  position: relative;
}
.pricing-card--popular {
  border-color: var(--accent-500);
  box-shadow: 0 12px 32px rgba(255, 111, 71, 0.18);
}
.pricing-card--popular::after {
  content: "Populair";
  position: absolute;
  top: -12px; right: var(--space-4);
  background: var(--accent-500);
  color: var(--surface-0);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}
.pricing-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink-900);
  margin: 0;
}
.pricing-card__price span {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-500);
  display: block;
}
.pricing-card__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--space-2);
  font-size: var(--fs-small);
  color: var(--ink-700);
}
.pricing-disclaimer {
  margin-top: var(--space-4);
  font-size: var(--fs-small);
  color: var(--ink-500);
  text-align: center;
}
.pricing-disclaimer a { color: var(--brand-600); }

.comparison-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: var(--fs-small);
  min-width: 600px;
}
.comparison-table th, .comparison-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--surface-200);
}
.comparison-table thead th {
  background: var(--brand-50);
  font-size: var(--fs-body);
}
.comparison-table thead th.us {
  background: var(--brand-500);
  color: var(--surface-0);
}
.comparison-table tbody th {
  font-weight: 600;
  color: var(--ink-700);
  width: 30%;
}
.comparison-table td.us {
  background: var(--brand-50);
  font-weight: 600;
  color: var(--brand-700);
}

/* ════════════════════════════════════════════════════════════════════
   Sticky mobile funnel form
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .funnel-hero__panel { position: relative; }
  .funnel-hero__copy + .funnel-hero__panel { margin-top: var(--space-5); }
}

/* ════════════════════════════════════════════════════════════════════
   Field error styling — red border on invalid
   ════════════════════════════════════════════════════════════════════ */
.lead-form input:invalid:not(:placeholder-shown),
.lead-form select:invalid {
  border-color: var(--danger-500);
}
.lead-form input:focus-visible:invalid,
.lead-form select:focus-visible:invalid {
  outline-color: var(--danger-500);
}

/* ════════════════════════════════════════════════════════════════════
   Cookie / privacy notice (dismissible)
   ════════════════════════════════════════════════════════════════════ */
.cookie-notice {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  z-index: 30;
  background: var(--ink-900);
  color: var(--surface-0);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-overlay);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--fs-small);
}
.cookie-notice p { margin: 0; line-height: 1.4; }
.cookie-notice a { color: var(--accent-300); text-decoration: underline; }
.cookie-notice .button--ghost {
  border-color: rgba(255, 255, 255, 0.66);
  color: var(--surface-0);
}
.cookie-notice .button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--surface-0);
}
.cookie-notice__close {
  background: var(--brand-500);
  color: var(--surface-0);
  border: 0;
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  font-weight: 600;
  cursor: pointer;
  align-self: flex-end;
}
.cookie-notice__close:hover { background: var(--brand-600); }
@media (max-width: 600px) {
  .cookie-notice {
    left: 16px; right: 16px;
    max-width: none;
    bottom: calc(env(safe-area-inset-bottom, 0) + 88px); /* above mobile-cta-bar */
  }
}

/* ════════════════════════════════════════════════════════════════════
   Article TOC scroll-spy active state
   ════════════════════════════════════════════════════════════════════ */
.article-toc a[aria-current="true"] {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
}

/* Bulk-action-bar tweaks already covered by inline styles in admin layout */

/* ════════════════════════════════════════════════════════════════════
   PPC landing pages (/lp/*)
   ════════════════════════════════════════════════════════════════════ */
.lp-header {
  background: var(--surface-0);
  border-bottom: 1px solid var(--surface-200);
  padding-block: var(--space-3);
  position: sticky; top: 0; z-index: 20;
  box-shadow: 0 1px 3px rgba(7,25,29,0.04);
}
.lp-header .container { justify-content: space-between; }

.lp-hero {
  background: linear-gradient(160deg, var(--surface-50), var(--brand-50));
  padding-block: var(--space-7);
}
.lp-hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-7); align-items: start;
}
.lp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--brand-900); color: var(--accent-300);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: var(--fs-eyebrow); letter-spacing: 0.06em; font-weight: 700;
  text-transform: uppercase;
}
.lp-hero__h1 {
  font-size: clamp(2rem, 1.5rem + 2.4vw, 3rem);
  line-height: 1.1; color: var(--ink-900);
  margin: var(--space-3) 0 var(--space-4);
  letter-spacing: -0.02em;
}
.lp-hero__intro { font-size: 1.15rem; color: var(--ink-700); margin-bottom: var(--space-4); max-width: 56ch; }
.lp-bullets { list-style: none; padding: 0; margin: var(--space-3) 0 var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.lp-bullets li { display: flex; align-items: center; gap: var(--space-2); color: var(--ink-700); }
.lp-bullets .icon { color: var(--brand-500); }
.lp-social-proof { margin-block: var(--space-4); }

.lp-hero__panel { background: var(--surface-0); border-radius: var(--radius-xl); padding: var(--space-5); box-shadow: var(--shadow-overlay); position: sticky; top: 90px; }

.lp-strip { background: var(--surface-0); padding-block: var(--space-7); border-top: 1px solid var(--surface-200); }
.lp-strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px,100%),1fr)); gap: var(--space-5); }
.lp-strip__step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-2); }
.lp-strip__step h3 { font-size: var(--fs-h3); color: var(--ink-900); margin: 0; }
.lp-strip__step p { color: var(--ink-500); margin: 0; }

.lp-salary {
  background: linear-gradient(120deg, var(--brand-50), var(--accent-50));
  padding-block: var(--space-7); text-align: center;
}
.lp-salary h2 { font-size: var(--fs-h2); color: var(--ink-900); margin: 0 0 var(--space-3); }
.lp-salary__amount { font-size: clamp(1.6rem, 1rem + 2vw, 2.2rem); color: var(--brand-700); margin: 0 0 var(--space-2); }
.lp-salary__note { color: var(--ink-500); margin: 0; max-width: 60ch; margin-inline: auto; }
.lp-salary__src { font-size: var(--fs-small); color: var(--ink-500); margin-top: var(--space-3); }
.lp-salary__src a { color: var(--brand-600); text-decoration: underline; }

.lp-bottom-cta { background: var(--brand-900); color: var(--surface-0); padding-block: var(--space-7); text-align: center; }
.lp-bottom-cta h2 { font-size: var(--fs-h2); color: var(--surface-0); margin: 0 0 var(--space-4); }
.lp-bottom-cta__actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }

.lp-footer { background: var(--ink-900); color: var(--ink-300); padding-block: var(--space-4); text-align: center; }
.lp-footer a { color: var(--accent-300); }

@media (max-width: 900px) {
  .lp-hero__grid { grid-template-columns: 1fr; }
  .lp-hero__panel { position: relative; top: 0; }
}

/* ════════════════════════════════════════════════════════════════════
   Live social-proof badge
   ════════════════════════════════════════════════════════════════════ */
.live-proof {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--surface-0);
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand-200);
  font-size: var(--fs-small);
  color: var(--ink-700);
}
.live-proof strong { color: var(--brand-700); font-weight: 700; }
.live-proof__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-500);
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(28,139,83,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(28,139,83,0); }
}
@media (prefers-reduced-motion: reduce) {
  .live-proof__dot { animation: none; }
}

/* ════════════════════════════════════════════════════════════════════
   Urgency strip
   ════════════════════════════════════════════════════════════════════ */
.urgency-strip {
  background: var(--accent-50);
  color: var(--accent-700);
  padding: var(--space-2) var(--space-4);
  text-align: center;
  font-size: var(--fs-small);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-500);
}
.urgency-strip .icon { color: var(--accent-600); margin-right: var(--space-1); }

/* ════════════════════════════════════════════════════════════════════
   Exit-intent modal
   ════════════════════════════════════════════════════════════════════ */
.exit-modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(7, 25, 29, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-4);
  animation: exit-fade 200ms var(--ease-out);
}
.exit-modal-backdrop.is-open { display: flex; }
.exit-modal {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  max-width: 480px; width: 100%;
  padding: var(--space-6);
  box-shadow: var(--shadow-overlay);
  position: relative;
  animation: exit-slide-up 280ms var(--ease-out);
}
.exit-modal__close {
  position: absolute; top: 12px; right: 12px;
  background: var(--surface-200); border: 0; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-700);
}
.exit-modal h2 {
  font-size: var(--fs-h2); line-height: 1.2;
  color: var(--ink-900); margin: 0 0 var(--space-3);
}
.exit-modal p { color: var(--ink-700); margin: 0 0 var(--space-4); }
.exit-modal .lead-form__consent { margin-top: var(--space-3); }
@keyframes exit-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes exit-slide-up { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .exit-modal-backdrop, .exit-modal { animation: none; }
}

/* ════════════════════════════════════════════════════════════════════
   Homepage vacatures-matrix
   ════════════════════════════════════════════════════════════════════ */
.vacatures-matrix { overflow-x: auto; }
.vacatures-matrix table {
  width: 100%; border-collapse: collapse;
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-width: 720px;
}
.vacatures-matrix thead th {
  background: var(--brand-900);
  color: var(--surface-0);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
}
.vacatures-matrix tbody th {
  padding: var(--space-4);
  text-align: left;
  display: flex; gap: var(--space-3); align-items: center;
  background: var(--brand-50);
  width: 200px;
}
.vacatures-matrix tbody th small { color: var(--ink-500); font-weight: 500; font-size: var(--fs-eyebrow); }
.vacatures-matrix tbody td {
  padding: 0;
  border-top: 1px solid var(--surface-200);
  border-left: 1px solid var(--surface-200);
}
.vacatures-matrix__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4); font-weight: 600;
  color: var(--brand-700);
  transition: background var(--dur-fast) var(--ease-out);
}
.vacatures-matrix__link:hover { background: var(--brand-50); }
.vacatures-matrix__open { font-size: var(--fs-small); }
.vacatures-matrix__hub {
  text-align: center; margin-top: var(--space-5);
}

/* ════════════════════════════════════════════════════════════════════
   Vacature page hero (with regio illustration background)
   ════════════════════════════════════════════════════════════════════ */
.vacature-hero {
  position: relative;
  padding-block: var(--space-9) var(--space-7);
  margin-bottom: var(--space-5);
  overflow: hidden;
}
.vacature-hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.vacature-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(5,63,58,0.85), rgba(2,40,38,0.92));
}
.vacature-hero__copy { position: relative; z-index: 2; }

/* ════════════════════════════════════════════════════════════════════
   Lang switcher + lp PL/NL toggle
   ════════════════════════════════════════════════════════════════════ */
.header-v2__lang, .lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border: 1px solid var(--surface-200);
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 600;
}
.header-v2__lang:hover, .lang-switch:hover {
  border-color: var(--brand-400);
  color: var(--brand-700);
  background: var(--brand-50);
}

/* ════════════════════════════════════════════════════════════════════
   Hero panel with illustration background override
   ════════════════════════════════════════════════════════════════════ */
.hero-v2__panel { background-blend-mode: normal; }

/* ═══ Lead-form sectie (P0-herstel 2026-07-03) ═══ */
.lead-form-section { padding: 64px 0; background: linear-gradient(160deg, #053f3a, #075b53); }
.lead-form-section__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; align-items: start; }
.lead-form-section__intro { color: #eaf6f3; }
.lead-form-section__intro h2 { color: #ffffff; margin: 8px 0 12px; }
.lead-form-section__intro p { color: rgba(234, 246, 243, 0.85); max-width: 46ch; }
.lead-form-section__intro .eyebrow--light { color: #ffb86b; }
.lead-form-section__points { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.lead-form-section__points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #ffffff; }
.lead-form-section__points .icon { color: #ffb86b; flex: 0 0 auto; }
.lead-form-section__panel { background: #ffffff; border-radius: 18px; padding: 22px 22px 26px; box-shadow: 0 24px 60px rgba(3, 34, 31, 0.35); }
@media (max-width: 920px) {
  .lead-form-section { padding: 44px 0; }
  .lead-form-section__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Premium dispatch redesign: dakwerk-specifieke visuele laag zonder formuliergedrag te wijzigen. */
body {
  background:
    linear-gradient(90deg, rgba(3, 40, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbf8 0%, #edf7f4 46%, #f4f7f0 100%);
  background-size: 42px 42px, auto;
}

.header-v2 {
  box-shadow: 0 10px 30px rgba(3, 40, 38, 0.06);
}

.header-v2__main {
  padding-block: 10px;
}

.header-v2__main .container {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 154, 138, 0.14);
  border-radius: 18px;
  padding: 10px 12px;
}

.header-v2__brand .brand__mark-shell {
  background:
    linear-gradient(135deg, rgba(255, 111, 71, 0.95), rgba(13, 154, 138, 0.75)),
    var(--brand-900);
  box-shadow: 0 12px 26px rgba(3, 40, 38, 0.18);
}

.hero-v2 {
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5.6rem);
  position: relative;
}

.hero-v2::before {
  background:
    linear-gradient(135deg, rgba(255, 111, 71, 0.12), transparent 26%),
    repeating-linear-gradient(135deg, rgba(3, 40, 38, 0.04) 0 1px, transparent 1px 18px);
  content: "";
  inset: 0 0 auto 0;
  height: 54%;
  pointer-events: none;
  position: absolute;
}

.hero-v2__grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.92fr);
  position: relative;
}

.hero-v2__copy .eyebrow {
  background: #fff;
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill);
  color: var(--brand-700);
  display: inline-flex;
  padding: 7px 12px;
}

.hero-v2__h1 {
  max-width: 12ch;
}

.hero-v2__intro {
  font-size: clamp(1rem, 0.96rem + 0.35vw, 1.22rem);
  max-width: 50ch;
}

.hero-v2__cta-row .btn-v2--accent,
.header-v2__actions .btn-v2--accent,
.lead-form__next,
.lead-form__submit {
  background:
    linear-gradient(135deg, #ff6f47 0%, #f39245 100%);
  box-shadow: 0 14px 28px rgba(255, 111, 71, 0.26);
}

.hero-v2__cta-row .btn-v2--ghost {
  background: #fff;
  border-color: rgba(13, 154, 138, 0.28);
}

.trust-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-badge {
  border-color: rgba(13, 154, 138, 0.2);
  box-shadow: 0 10px 28px rgba(3, 40, 38, 0.07);
}

.hero-v2__panel--dispatch {
  background:
    linear-gradient(160deg, rgba(3, 40, 38, 0.98), rgba(5, 63, 58, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 80px rgba(3, 40, 38, 0.28);
  gap: 14px;
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.hero-v2__panel--dispatch::after {
  background-image: var(--persona-illustration);
  background-position: right 1rem bottom 1rem;
  background-repeat: no-repeat;
  background-size: 44%;
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.hero-v2__media-frame {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  isolation: isolate;
  min-height: 260px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-v2__media-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-v2__media-frame::after {
  background:
    linear-gradient(180deg, transparent 22%, rgba(3, 40, 38, 0.84) 100%),
    linear-gradient(90deg, rgba(255, 111, 71, 0.18), transparent 44%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-v2__media-overlay {
  bottom: 14px;
  color: #fff;
  display: grid;
  gap: 5px;
  left: 14px;
  max-width: 78%;
  position: absolute;
  z-index: 1;
}

.hero-v2__media-overlay span {
  color: var(--accent-300);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-v2__media-overlay strong {
  font-size: clamp(1.08rem, 1rem + 0.6vw, 1.38rem);
  line-height: 1.15;
}

.hero-v2__stats {
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-v2__stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.hero-v2__route {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.hero-v2__route-label,
.hero-v2__personas-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero-v2__route-list {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-v2__route-list li {
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  gap: 10px;
  grid-template-columns: 30px 1fr;
}

.hero-v2__route-list span {
  align-items: center;
  background: var(--accent-500);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.hero-v2__personas {
  position: relative;
  z-index: 1;
}

.persona-quickpick .grid--4 {
  gap: clamp(0.85rem, 2vw, 1.2rem);
}

.card--persona {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  border-color: rgba(13, 154, 138, 0.18);
  min-height: 260px;
}

.card--persona .icon-circle {
  border: 1px solid rgba(255, 111, 71, 0.22);
}

.card--persona .card__cta {
  background: var(--brand-900);
  border-radius: var(--radius-pill);
  color: #fff;
  justify-content: center;
  min-height: 40px;
  padding: 9px 12px;
}

.vacatures-matrix table,
.salary-table {
  border: 1px solid rgba(13, 154, 138, 0.12);
  box-shadow: 0 22px 55px rgba(3, 40, 38, 0.08);
}

.lead-form-section {
  background:
    linear-gradient(135deg, rgba(255, 111, 71, 0.16), transparent 38%),
    linear-gradient(160deg, #032826 0%, #075b53 100%);
  overflow: hidden;
  position: relative;
}

.lead-form-section::before {
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 20px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.lead-form-section__grid {
  position: relative;
}

.lead-form-section__panel {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 22px;
}

.lead-form select:invalid {
  border-color: var(--surface-200);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: var(--danger-500);
}

@media (max-width: 900px) {
  .header-v2__main .container {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding-inline: var(--space-4);
  }

  .hero-v2 {
    padding-block: 26px 36px;
  }

  .hero-v2__grid {
    grid-template-columns: 1fr;
  }

  .hero-v2__media-frame {
    min-height: 210px;
  }

  .hero-v2__stats {
    grid-template-columns: 1fr;
  }

  .hero-v2__route-list li {
    align-items: start;
  }
}

@media (max-width: 520px) {
  .hero-v2__cta-row .btn-v2 {
    justify-content: center;
    width: 100%;
  }

  .trust-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-badge {
    justify-content: center;
  }
}

/* 2026-07 design/CRO upgrade: industrial editorial component layer.
   Global design tokens live in the single :root block at the start of this file. */

body {
  background: var(--surface-50);
  background-image: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image: repeating-linear-gradient(90deg, transparent 0 79px, rgba(16, 37, 34, 0.035) 79px 80px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.header-v2 {
  border-bottom: 1px solid var(--surface-200);
  box-shadow: none;
}

.header-v2__topbar {
  background: var(--brand-900);
}

.header-v2__main {
  padding-block: 0;
  background: var(--surface-overlay);
}

.header-v2__main .container {
  min-height: 76px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.header-v2__brand .brand__mark-shell {
  border-radius: 3px;
  background: var(--surface-0);
  box-shadow: none;
  border: 1px solid var(--surface-200);
}

.header-v2__nav > a,
.header-v2__megagroup > summary {
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-v2__nav > a[aria-current="page"] {
  color: var(--brand-700);
  box-shadow: inset 0 -3px 0 var(--accent-500);
}

.btn-v2,
.button,
.lead-form__next,
.lead-form__submit {
  min-height: 48px;
  border-radius: 3px;
  font-weight: 700;
  box-shadow: none;
}

.btn-v2--accent,
.hero-v2__cta-row .btn-v2--accent,
.header-v2__actions .btn-v2--accent,
.lead-form__next,
.lead-form__submit {
  color: var(--brand-900);
  background: var(--accent-500);
  background-image: none;
  box-shadow: 5px 5px 0 var(--brand-900);
}

.btn-v2--accent:hover,
.hero-v2__cta-row .btn-v2--accent:hover,
.header-v2__actions .btn-v2--accent:hover,
.lead-form__next:hover,
.lead-form__submit:hover {
  color: #fff;
  background: var(--accent-700);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--brand-900);
}

.btn-v2--ghost,
.hero-v2__cta-row .btn-v2--ghost {
  color: var(--brand-900);
  border-color: var(--brand-700);
  background: transparent;
}

.hero-v2 {
  min-height: min(760px, calc(100svh - 105px));
  padding-block: clamp(3.5rem, 7vw, 7rem);
  overflow: hidden;
  background: var(--surface-100);
  border-bottom: 1px solid var(--surface-200);
}

.hero-v2::before {
  inset: 0 auto 0 0;
  width: clamp(8px, 1vw, 16px);
  height: auto;
  background: var(--accent-500);
}

.hero-v2::after {
  position: absolute;
  top: 28px;
  right: clamp(20px, 4vw, 64px);
  content: "DAKWERK / NL";
  color: rgba(16, 37, 34, 0.28);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.stukadoor-vacancy-card__image {
  width: calc(100% + (2 * var(--space-5)));
  max-width: none;
  aspect-ratio: 1;
  object-fit: cover;
  margin: calc(-1 * var(--space-5)) calc(-1 * var(--space-5)) var(--space-3);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stukadoor-vacancy-facts {
  margin-block: var(--space-6);
  padding: var(--space-5);
  border: 1px solid var(--surface-200);
  border-radius: var(--radius-lg);
  background: var(--surface-0);
}
.stukadoor-vacancy-facts h2 { margin-top: 0; }
.stukadoor-vacancy-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
}
.stukadoor-vacancy-facts__item { min-width: 0; }
.stukadoor-vacancy-facts__item dt { color: var(--ink-500); font-size: var(--fs-small); font-weight: 700; }
.stukadoor-vacancy-facts__item dd { margin: var(--space-1) 0 0; font-weight: 700; overflow-wrap: anywhere; }
.stukadoor-vacancy-facts__subvalue { display: block; margin-top: var(--space-1); color: var(--ink-500); font-size: var(--fs-small); font-weight: 400; }
.stukadoor-vacancy-facts__note { margin: var(--space-4) 0 0; color: var(--ink-500); font-size: var(--fs-small); }
@media (max-width: 900px) {
  .stukadoor-vacancy-facts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .stukadoor-vacancy-facts { padding: var(--space-4); }
  .stukadoor-vacancy-facts__grid { grid-template-columns: 1fr; }
}

.stukadoor-vacancy-filters {
  margin: 0 0 var(--space-6);
  padding: var(--space-5);
  border: 1px solid var(--surface-200);
  border-radius: var(--radius-lg);
  background: var(--surface-0);
}

.stukadoor-vacancy-filters__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: var(--space-3);
  align-items: end;
}

/* Twee heldere mobiele hoofdroutes: WhatsApp en het formulier. Bellen blijft
   bereikbaar via header, menu en footer zonder een derde sticky keuze. */
.mobile-cta-bar__item.js-call { display: none; }

.zzp-experiment-band {
  background: var(--accent-500);
  border-bottom: 1px solid color-mix(in srgb, var(--brand-900) 22%, transparent);
  color: var(--brand-900);
}

.zzp-experiment-band__inner {
  align-items: center;
  display: flex;
  gap: var(--space-5);
  justify-content: space-between;
  min-height: 58px;
  padding-block: var(--space-2);
}

.zzp-experiment-band__copy {
  align-items: baseline;
  display: flex;
  gap: var(--space-3);
  min-width: 0;
}

.zzp-experiment-band__copy strong { font-size: 1.08rem; white-space: nowrap; }
.zzp-experiment-band__copy span { font-size: .88rem; font-weight: 600; }

.zzp-experiment-band__cta {
  align-items: center;
  background: var(--brand-900);
  border: 2px solid var(--brand-900);
  border-radius: var(--radius-pill);
  color: var(--surface-0);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .86rem;
  font-weight: 800;
  gap: var(--space-2);
  min-height: 40px;
  padding: 7px 14px;
  text-decoration: none;
}

.zzp-experiment-band__cta:hover { background: transparent; color: var(--brand-900); }
.zzp-experiment-band__cta:focus-visible { outline: 3px solid var(--surface-0); outline-offset: 2px; }

.stukadoor-vacancy-filters__details > summary {
  cursor: pointer;
  display: none;
  font-weight: 800;
  list-style: none;
}

.stukadoor-vacancy-filters__details > summary::-webkit-details-marker { display: none; }

.stukadoor-vacancy-filters .field { margin: 0; }
.stukadoor-vacancy-filters label { display: block; margin-bottom: var(--space-2); font-weight: 700; }
.stukadoor-vacancy-filters select { width: 100%; min-height: 46px; }
.stukadoor-vacancy-filters__reset { min-height: 46px; white-space: nowrap; }
.stukadoor-vacancy-filters__note,
.stukadoor-vacancy-filters__count { margin: var(--space-3) 0 0; color: var(--ink-500); font-size: var(--fs-small); }
.stukadoor-vacancy-filters__count { font-weight: 700; color: var(--ink-700); }
.stukadoor-vacancy-card__meta { display: block; margin-top: var(--space-2); color: var(--ink-500); font-size: var(--fs-small); }
.stukadoor-vacancy-filters__empty { margin: var(--space-6) 0; padding: var(--space-5); border: 1px dashed var(--brand-500); border-radius: var(--radius-lg); }

@media (max-width: 900px) {
  .stukadoor-vacancy-filters__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stukadoor-vacancy-filters__reset { justify-self: start; }
}

@media (max-width: 520px) {
  .zzp-experiment-band__inner { gap: var(--space-3); min-height: 54px; }
  .zzp-experiment-band__copy strong { font-size: .98rem; white-space: normal; }
  .zzp-experiment-band__copy span { display: none; }
  .zzp-experiment-band__cta { font-size: .76rem; min-height: 38px; padding-inline: 11px; }

  .stukadoor-vacancy-filters {
    margin-bottom: var(--space-3);
    padding: var(--space-3);
  }

  .stukadoor-vacancy-filters__details > summary {
    align-items: center;
    background: var(--brand-900);
    border-radius: var(--radius-pill);
    color: var(--surface-0);
    display: flex;
    justify-content: space-between;
    min-height: 46px;
    padding: var(--space-2) var(--space-4);
  }

  .stukadoor-vacancy-filters__details > summary::after {
    content: "+";
    font-size: 1.35rem;
    line-height: 1;
  }

  .stukadoor-vacancy-filters__details[open] > summary::after { content: "\2212"; }
  .stukadoor-vacancy-filters__details > summary:focus-visible { outline: 3px solid var(--accent-300); outline-offset: 3px; }
  .stukadoor-vacancy-filters__grid { grid-template-columns: 1fr; margin-top: var(--space-3); }
  .stukadoor-vacancy-filters__count { margin-top: var(--space-2); text-align: center; }

  .hero-v2__copy .eyebrow { margin-bottom: var(--space-2); }
  .hero-v2__h1 { font-size: clamp(1.8rem, 1.42rem + 1.9vw, 2.2rem); line-height: 1.04; }
  .hero-v2__intro { font-size: 1rem; line-height: 1.5; }
  .hero-v2__cta-row { margin-block: var(--space-3); }
  .hero-v2__panel--dispatch { margin-top: var(--space-3); }
}

.hero-v2__media-frame picture {
  display: contents;
}

.legal-document__header {
  max-width: 54rem;
  margin-bottom: var(--space-6);
}

.legal-document__version {
  color: var(--ink-500);
  font-size: var(--fs-small);
}

.legal-document__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-7);
}

.legal-document__links a {
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(13, 109, 96, 0.28);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
}

.legal-document__sections {
  display: grid;
  gap: var(--space-4);
}

.legal-document__sections section,
.legal-document__settings {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(16, 37, 34, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.legal-document__sections h2,
.legal-document__settings h2 {
  margin-top: 0;
}

.legal-document__settings {
  margin-top: var(--space-6);
  border-left: 5px solid var(--accent-500);
}

/* De stukadoor-variant gebruikt dezelfde componenten, maar nooit dakwerk-copy. */
body[data-site-mode="stukadoor"] .header-v2__brand-line::before {
  content: "Stukadoorwerk zonder jobboard-gedoe";
}

body[data-site-mode="stukadoor"] .header-v2__brand-line::after {
  content: "Geen CV nodig / persoonlijke opvolging / Noord-Brabant";
}

body[data-site-mode="stukadoor"] .header-v2__brand .brand__eyebrow::before {
  content: "STUKADOOR ROUTE";
}

body[data-site-mode="stukadoor"] .header-v2__brand .brand__wordmark-main::after {
  content: "Persoonlijke intake in Noord-Brabant";
}

body[data-site-mode="stukadoor"] .header-v2__actions::before {
  content: "Korte intake";
}

body[data-site-mode="stukadoor"] .header-v2__mobile-head > span:first-child::before {
  content: "stukadoor-vacatures.nl";
}

body[data-site-mode="stukadoor"] .hero-v2::after {
  content: "STUKADOOR / NL";
}

.hero-v2__grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.hero-v2__copy .eyebrow {
  padding: 0 0 0 12px;
  color: var(--brand-700);
  background: transparent;
  border: 0;
  border-left: 4px solid var(--accent-500);
  border-radius: 0;
  box-shadow: none;
}

.hero-v2__h1 {
  max-width: 11ch;
  margin-block: 18px 22px;
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-v2__intro {
  max-width: 54ch;
  color: var(--ink-700);
  font-size: clamp(1rem, 0.94rem + 0.35vw, 1.2rem);
}

.trust-strip {
  gap: 0;
  margin-block: 28px 0;
  border-top: 1px solid var(--surface-200);
  border-bottom: 1px solid var(--surface-200);
}

.trust-badge {
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-right: 1px solid var(--surface-200);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.75rem;
}

.trust-badge:last-child {
  border-right: 0;
}

.hero-v2__cta-row {
  margin-block: 28px 16px;
}

.hero-v2__employer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--brand-700);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent-500);
  text-underline-offset: 5px;
}

.hero-v2__panel--dispatch {
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 4px;
  background: var(--brand-900);
  box-shadow: 18px 18px 0 var(--accent-500);
}

.hero-v2__panel--dispatch::after {
  display: none;
}

.hero-v2__media-frame {
  min-height: 430px;
  aspect-ratio: 4 / 3;
  border-radius: 3px 3px 0 0;
}

.hero-v2__media-frame img {
  filter: saturate(0.82) contrast(1.04);
}

.hero-v2__media-frame::after {
  background: linear-gradient(180deg, transparent 48%, rgba(16, 37, 34, 0.94) 100%);
}

.hero-v2__media-overlay {
  bottom: 22px;
  left: 24px;
  max-width: 82%;
}

.hero-v2__media-overlay span {
  color: var(--accent-300);
}

.hero-v2__media-overlay strong {
  max-width: 31ch;
  font-size: clamp(1.18rem, 1rem + 0.7vw, 1.55rem);
}

.hero-v2__stats {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-v2__stat {
  min-height: 112px;
  padding: 18px 14px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  background: transparent;
}

.hero-v2__stat:last-child {
  border-right: 0;
}

.hero-v2__route {
  margin: 0;
  padding: 20px 24px 24px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  background: transparent;
}

.hero-v2__route-list span {
  border-radius: 2px;
  color: var(--brand-900);
}

.section-v2 {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section-v2--tint {
  background: var(--surface-100);
  border-block: 1px solid var(--surface-200);
}

.section-v2__head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-v2__head h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.eyebrow {
  color: var(--accent-700);
  letter-spacing: 0.14em;
}

.card,
.trust-card,
.process-step,
.salary-table,
.vacatures-matrix,
.faq-item {
  border-color: var(--surface-200);
  border-radius: 4px;
  background: var(--surface-0);
  box-shadow: var(--shadow-card);
}

.card {
  position: relative;
  padding: clamp(20px, 2.4vw, 30px);
}

.card::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: transparent;
  transition: background var(--dur-base) var(--ease-out);
}

.card:hover::after,
.card:focus-visible::after {
  background: var(--accent-500);
}

.card:hover {
  transform: translateY(-2px);
}

.card--accent-band::before {
  height: 4px;
  border-radius: 0;
  background: var(--accent-500);
}

.card--persona {
  min-height: 248px;
  background: var(--surface-0);
}

.card--persona .card__cta {
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  color: var(--brand-700);
  background: transparent;
  border-radius: 0;
  text-decoration: underline;
  text-decoration-color: var(--accent-500);
  text-underline-offset: 5px;
}

.icon-circle {
  border-radius: 3px;
}

.vacatures-matrix table,
.salary-table {
  border-radius: 4px;
  box-shadow: none;
}

.vacatures-matrix__link {
  border-radius: 2px;
}

.process-step__number {
  border-radius: 2px;
  color: var(--brand-900);
  background: var(--accent-500);
}

.lead-form-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--brand-900);
}

.lead-form-section::before {
  background: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,0.035) 79px 80px);
}

.lead-form-section__panel,
.funnel-hero__panel {
  padding: clamp(20px, 3vw, 34px);
  border: 0;
  border-radius: 4px;
  background: var(--surface-0);
  box-shadow: 12px 12px 0 var(--accent-500);
}

.funnel-fit-summary {
  margin: 0 0 var(--space-4);
  padding: var(--space-4);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--accent) 7%, white);
}

.funnel-fit-summary > strong { display: block; margin-bottom: var(--space-2); }
.funnel-fit-summary ul { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.funnel-fit-summary li { display: flex; align-items: flex-start; gap: .45rem; color: var(--ink-700); }

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 48px;
  border-radius: 3px;
  background: #fff;
}

.lead-form textarea {
  min-height: 128px;
}

.vacature-hero {
  background: var(--brand-900);
}

.vacature-hero__media {
  opacity: 0.24;
  filter: grayscale(1);
}

.site-footer {
  background: #0a1a18;
  border-top: 6px solid var(--accent-500);
}

@media (max-width: 1023px) {
  .header-v2__main .container {
    min-height: 66px;
    padding-inline: 0;
  }

  .hero-v2 {
    min-height: auto;
  }

  .hero-v2__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-v2__copy {
    max-width: 720px;
  }

  .hero-v2__panel--dispatch {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --container: min(100% - 32px, 1240px);
    --fs-display: clamp(2.55rem, 13vw, 4rem);
  }

  body::before {
    display: none;
  }

  .hero-v2 {
    padding-block: 42px 64px;
  }

  .hero-v2::before {
    width: 6px;
  }

  .hero-v2::after {
    top: 14px;
    right: 16px;
  }

  .hero-v2__h1 {
    max-width: 12ch;
  }

  .hero-v2__cta-row {
    display: grid;
  }

  .hero-v2__panel--dispatch {
    box-shadow: 8px 8px 0 var(--accent-500);
  }

  .hero-v2__media-frame {
    min-height: 270px;
    aspect-ratio: 4 / 3;
  }

  .hero-v2__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-v2__stat {
    min-height: 108px;
    padding: 14px 8px;
  }

  .hero-v2__stat strong {
    font-size: 0.82rem;
  }

  .hero-v2__stat span {
    font-size: 0.68rem;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .trust-badge {
    flex: 0 0 auto;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .lead-form-section__panel,
  .funnel-hero__panel {
    box-shadow: 7px 7px 0 var(--accent-500);
  }

  .section-v2 {
    padding-block: 64px;
  }
}
