/* ===========================================================
   JobFlexxSolution brand stylesheet
   Palette : navy #0B2447, coral #F76C5E, cream #F7F4EE, ink #14110A
   Type    : Satoshi (body), General Sans (display)
   =========================================================== */

/* ---- Owner strip (founder note) ---- */
.owner-strip {
  background: var(--cream);
  border-top: 1px solid rgba(11, 36, 71, 0.08);
  border-bottom: 1px solid rgba(11, 36, 71, 0.08);
  padding: 72px 0 80px;
}
.owner-strip__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}
.owner-strip__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 32px -18px rgba(11, 36, 71, 0.45);
  background: var(--navy-50, #E8ECF4);
}
.owner-strip__photo::after {
  content: "";
  position: absolute;
  inset: auto auto -8px -8px;
  width: 64px;
  height: 64px;
  background: var(--coral);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.25;
}
.owner-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.owner-strip__copy h2 {
  font-family: "General Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--navy);
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.owner-strip__copy p {
  color: var(--ink);
  max-width: 62ch;
  margin: 0 0 10px;
  line-height: 1.55;
}
.owner-strip__sig {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 36, 71, 0.12);
}
.owner-strip__sig strong {
  font-family: "General Sans", system-ui, sans-serif;
  color: var(--navy);
  font-weight: 600;
}
.owner-strip__sig span {
  color: #5B5A55;
  font-size: 14px;
}
@media (max-width: 720px) {
  .owner-strip__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
  .owner-strip__photo {
    max-width: 220px;
    aspect-ratio: 4 / 5;
  }
}

:root {
  --navy:        #0B2447;
  --navy-700:    #143263;
  --navy-50:     #E8ECF4;
  --coral:       #F76C5E;
  --coral-700:   #D9523F;
  --coral-50:    #FDE8E4;
  --cream:       #F7F4EE;
  --cream-2:     #EFEBE0;
  --ink:         #14110A;
  --muted:       #5B5A55;
  --line:        #DCD7CB;
  --white:       #ffffff;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-1: 0 1px 2px rgba(11,36,71,.04), 0 4px 16px rgba(11,36,71,.06);
  --shadow-2: 0 10px 40px rgba(11,36,71,.10);

  --display: 'General Sans', ui-sans-serif, system-ui, sans-serif;
  --body: 'Satoshi', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Type */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  line-height: 1.1;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
p  { margin: 0 0 1em; color: var(--ink); }
.lede { font-size: 1.18rem; color: #2c2a23; max-width: 56ch; }

em { color: var(--coral); font-style: normal; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--coral);
  padding: 6px 12px;
  background: var(--coral-50);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.eyebrow--light {
  color: var(--coral);
  background: rgba(247,108,94,.16);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--display);
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 15px 26px; font-size: 1rem; }
.btn--primary { background: var(--navy); color: var(--cream); }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy-50); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(247,244,238,.3); }
.btn--ghost-light:hover { background: rgba(247,244,238,.1); }

.link { color: var(--coral); font-weight: 600; }
.link:hover { color: var(--coral-700); }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(247,244,238,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy);
}
.nav__logo strong { font-weight: 700; }
.nav__links {
  display: flex; align-items: center; gap: 8px;
}
.nav__links a:not(.btn) {
  padding: 8px 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 999px;
  font-size: .95rem;
}
.nav__links a:not(.btn):hover { background: var(--cream-2); }
.nav__links .btn { padding: 10px 18px; font-size: .9rem; }
.nav__links .btn--primary { color: var(--cream); }
.nav__links .btn--ghost { color: var(--navy); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  transition: transform .2s ease;
}

/* ============== HERO ============== */
.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute;
  right: -160px; top: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(247,108,94,.22), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero__copy h1 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.hero__copy h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.16em;
  background: rgba(247,108,94,.28);
  border-radius: 3px;
  z-index: -1;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 36px; }

.hero__stats {
  list-style: none; margin: 0; padding: 24px 0 0;
  display: flex; gap: 36px;
  border-top: 1px solid var(--line);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero__stats span { font-size: .82rem; color: var(--muted); }

.hero__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-1);
}
.hero__badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 4px rgba(46,204,113,.18);
}
.hero__badge strong {
  display: block;
  font-family: var(--display);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
}
.hero__badge span { font-size: .78rem; color: var(--muted); }

/* ============== LOGOS ============== */
.logos {
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.logos__label {
  margin: 0 0 18px;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
  text-align: center; color: var(--muted);
}
.logos__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 36px 56px;
}
.logos__row span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--navy);
  opacity: .55;
}

/* ============== SECTION SHELL ============== */
section { padding: 96px 0; }
.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section__head--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  text-align: left; max-width: none; align-items: end;
}
.section__head--split p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section__head--center { text-align: center; }
.section__head p { color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============== CARDS ============== */
.services { background: var(--cream); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--coral);
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--coral-50);
  color: var(--coral);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); margin-bottom: 1.1em; }

/* ============== SECTORS ============== */
.sectors { background: var(--cream-2); }
.chip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: block;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.chip span {
  display: inline-block;
  font-family: var(--display);
  font-size: .75rem; font-weight: 600;
  color: var(--coral);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.chip h4 { margin: 0 0 .25em; font-size: 1.05rem; }
.chip p { margin: 0; font-size: .85rem; color: var(--muted); }
.chip:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
  background: var(--white);
}

/* ============== HOW ============== */
.how { background: var(--cream); }
.how__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.how__visual img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.steps { list-style: none; margin: 0 0 32px; padding: 0; }
.steps li {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps__num {
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  color: var(--coral);
  letter-spacing: .04em;
}
.steps h4 { margin: 2px 0 4px; }
.steps p { margin: 0; color: var(--muted); }

/* ============== TESTIMONIALS ============== */
.testimonials { background: var(--cream-2); }
.quote {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 0;
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--display);
  font-size: 4rem;
  color: var(--coral);
  opacity: .25;
  line-height: 1;
}
.quote p {
  position: relative; z-index: 1;
  font-size: 1.02rem;
  color: var(--ink);
  margin: 12px 0 24px;
}
.quote footer { display: flex; flex-direction: column; gap: 2px; }
.quote footer strong {
  font-family: var(--display); color: var(--navy);
  font-weight: 600;
}
.quote footer span { font-size: .85rem; color: var(--muted); }

/* ============== CTA ============== */
.cta {
  background: var(--navy);
  color: var(--cream);
  padding: 88px 0;
}
.cta h2, .cta .eyebrow { color: var(--cream); }
.cta__inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px; align-items: center;
}
.cta p { color: rgba(247,244,238,.78); margin-bottom: 0; font-size: 1.1rem; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ============== FOOTER ============== */
.footer {
  background: #08193A;
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer__inner {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,244,238,.12);
}
.footer__brand p {
  color: rgba(247,244,238,.7);
  max-width: 36ch;
  margin-top: 16px;
}
.footer__addr { font-size: .85rem; }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.footer__cols h5 { color: var(--cream); margin-bottom: 16px; opacity: .9; }
.footer__cols a {
  display: block; padding: 4px 0;
  color: rgba(247,244,238,.7);
  font-size: .92rem;
}
.footer__cols a:hover { color: var(--coral); }
.footer__base {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  color: rgba(247,244,238,.55); font-size: .85rem;
}
.footer__base a:hover { color: var(--coral); }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .hero__inner,
  .how__inner,
  .cta__inner,
  .footer__inner,
  .section__head--split { grid-template-columns: 1fr; gap: 40px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .section__head--split { text-align: center; }
  section { padding: 72px 0; }
  .hero { padding: 40px 0 72px; }
  .hero__visual img { aspect-ratio: 4/3; }
  .how__visual img { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a { padding: 12px 16px; }
  .nav__links .btn { width: 100%; justify-content: center; margin-top: 6px; }
  .grid--3, .grid--4, .footer__cols { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stats strong { font-size: 1.4rem; }
  .footer__base { flex-direction: column; gap: 8px; text-align: center; }
  h1 { font-size: 2.2rem; }
}

/* ===========================================================
 *  Forms, static pages, vacancy detail, contact, 404
 *  =========================================================== */

.form { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.form .field { display: flex; flex-direction: column; gap: 6px; }
.form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .form .field-row { grid-template-columns: 1fr; } }
.form label { font-weight: 500; font-size: .92rem; color: var(--ink, #1b1d22); }
.form input[type=text], .form input[type=email], .form input[type=tel],
.form input[type=password], .form textarea, .form select {
  width: 100%; box-sizing: border-box;
  padding: 11px 14px;
  font-family: inherit; font-size: 1rem;
  background: #fff;
  border: 1px solid var(--border, #d8d4c6);
  border-radius: 8px;
  color: inherit; line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0; border-color: var(--navy, #0d2944);
  box-shadow: 0 0 0 3px rgba(13,41,68,.12);
}
.form textarea { resize: vertical; min-height: 110px; }
.form input[type=file] {
  padding: 10px; background: #fafaf6;
  border: 1px dashed var(--border, #d8d4c6);
  border-radius: 8px;
  font-family: inherit; font-size: .94rem;
}
.field-err { color: #8a2222; font-size: .82rem; }
.form-error  { background: #fbecec; border: 1px solid #efc7c7; color: #8a2222; padding: 12px 16px; border-radius: 8px; margin-bottom: 14px; }
.form-success { background: #ecf6ec; border: 1px solid #cfe5cf; color: #1c5824; padding: 22px; border-radius: 12px; }
.form-success h2 { margin-top: 0; }

.form-page { padding-bottom: 80px; }
.form-section { padding: 32px 0 0; }
.form-section--two { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .form-section--two { grid-template-columns: 1fr; gap: 28px; } }
.form-side { min-width: 0; }
.form-aside { background: #f7f4ee; border: 1px solid var(--border, #e6e3da); border-radius: 12px; padding: 22px; }
.form-aside h3 { margin-top: 0; font-weight: 600; }
.form-aside .contact-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; font-size: .94rem; }
.form-aside .contact-kvk { font-size: .78rem; color: var(--muted, #6b6e75); margin: 14px 0 0; }

.flash { padding: 10px 0; background: #fdf3df; color: #6a4d10; }
.flash--success { background: #ecf6ec; color: #1c5824; }
.flash--error   { background: #fbecec; color: #8a2222; }

/* Page-static and vacancy-detail */
.page-static__head { padding: 56px 0 30px; }
.page-static__head h1 { font-size: 2.4rem; font-weight: 600; letter-spacing: -.02em; margin: 8px 0 12px; }
.page-static__head p { color: var(--muted, #6b6e75); max-width: 720px; font-size: 1.06rem; }
.page-static__body { max-width: 800px; margin: 0 auto; padding: 24px 24px 60px; font-size: 1.04rem; line-height: 1.7; }
.page-static__body h2 { font-size: 1.5rem; margin: 32px 0 12px; font-weight: 600; }
.page-static__body h3 { font-size: 1.15rem; margin: 24px 0 8px; font-weight: 600; }
.page-static__body ul { padding-left: 1.2em; }
.page-static__body li { margin: 4px 0; }
.page-static__body a { color: var(--navy, #0d2944); text-decoration: underline; text-underline-offset: 3px; }

.back-link { display: inline-block; color: var(--muted, #6b6e75); text-decoration: none; font-size: .9rem; margin-bottom: 14px; }
.back-link:hover { color: var(--navy, #0d2944); }

.vacancy-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin: 20px 0 8px; padding: 18px 0; border-top: 1px solid var(--border, #e6e3da); border-bottom: 1px solid var(--border, #e6e3da); }
.vacancy-meta dt { font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted, #6b6e75); margin-bottom: 4px; }
.vacancy-meta dd { margin: 0; font-weight: 500; }
.vacancy-apply-cta { padding: 30px 0 0; }
.cta-card { background: #fdfaf2; border: 1px solid var(--border, #e6e3da); border-radius: 12px; padding: 28px; text-align: center; }
.cta-card h2 { margin: 0 0 6px; font-size: 1.4rem; font-weight: 600; }
.cta-card p { color: var(--muted, #6b6e75); margin: 0 0 16px; }

.not-found { padding: 120px 0; text-align: center; }
.not-found h1 { font-size: 3rem; font-weight: 600; letter-spacing: -.02em; margin: 12px 0 16px; }
.not-found p { color: var(--muted, #6b6e75); max-width: 480px; margin: 0 auto 18px; }

/* Vacancies index */
.vacancies-list { display: grid; gap: 16px; padding: 12px 0 80px; }
.vacancy-card {
  display: grid; grid-template-columns: 1fr auto; gap: 14px;
  padding: 22px 24px; background: #fff; border: 1px solid var(--border, #e6e3da); border-radius: 12px;
  transition: transform .12s, box-shadow .12s;
}
.vacancy-card:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -22px rgba(0,0,0,.4); }
.vacancy-card h3 { margin: 6px 0 4px; font-size: 1.15rem; font-weight: 600; }
.vacancy-card p { margin: 0; color: var(--muted, #6b6e75); }
.vacancy-card__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: var(--muted, #6b6e75); margin: 8px 0; }
.vacancy-card__cta { align-self: center; }
.vacancy-filters { display: flex; gap: 12px; margin: 0 0 18px; flex-wrap: wrap; }
.vacancy-filters input, .vacancy-filters select {
  padding: 10px 14px; border: 1px solid var(--border, #e6e3da); border-radius: 8px; font-family: inherit; font-size: .95rem; background: #fff;
}
.vacancy-filters input { flex: 1; min-width: 200px; }

.lang-switch { display: inline-flex; gap: 4px; margin: 0 8px; padding: 2px; background: rgba(0,0,0,.04); border-radius: 6px; }
.lang-switch a { padding: 4px 8px; border-radius: 4px; font-size: .78rem; font-weight: 600; color: var(--muted, #6b6e75); text-decoration: none; letter-spacing: .04em; }
.lang-switch a.is-active { background: var(--navy, #0d2944); color: #fff; }

.brand__logo { height: 32px; width: auto; display: block; }
.site-footer__logo { height: 32px; width: auto; margin-bottom: 14px; }
.site-footer__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; opacity: .7; }
.site-footer__legal p { margin: 0; }

/* =========================================================
   REDESIGN PASS · JUNE 2026
   Stronger hero, richer sectors, polished vacancy cards
   ========================================================= */

/* --- HERO redesign --- */
.hero { position: relative; overflow: hidden; padding: 64px 0 96px; background: linear-gradient(180deg, #faf6ed 0%, #f3ede0 100%); }
.hero::before { content: ""; position: absolute; right: -200px; top: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(closest-side, rgba(247,108,94,.32), rgba(247,108,94,0)); pointer-events: none; }
.hero::after { content: ""; position: absolute; left: -120px; bottom: -120px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(closest-side, rgba(11,36,71,.10), rgba(11,36,71,0)); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero__copy .eyebrow { display: inline-block; padding: 5px 14px; background: rgba(247,108,94,.14); color: #c33d2e; font-weight: 700; font-size: .72rem; letter-spacing: .12em; border-radius: 999px; margin-bottom: 22px; }
.hero__title { font-size: clamp(2.4rem, 4.4vw, 4.2rem); font-weight: 700; line-height: 1.02; letter-spacing: -.025em; color: var(--navy, #0B2447); margin: 0 0 22px; }
.hero__lead { font-size: 1.12rem; line-height: 1.55; color: #2a2a2e; max-width: 460px; margin: 0 0 28px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 36px; }
.hero__stats { list-style: none; padding: 18px 0 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid rgba(11,36,71,.12); max-width: 520px; }
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong { font-size: 1.7rem; font-weight: 700; color: var(--navy, #0B2447); letter-spacing: -.02em; }
.hero__stats span { font-size: .8rem; color: var(--muted, #5B5A55); line-height: 1.3; }

.hero__visual { position: relative; }
.hero__visual--image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(11,36,71,.35), 0 8px 16px -8px rgba(11,36,71,.12);
}
.hero__visual--image img { display: block; width: 100%; height: auto; }
.hero__badge {
  position: absolute; left: -24px; bottom: 28px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 18px 40px -20px rgba(11,36,71,.40);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.hero__badge-dot { width: 10px; height: 10px; border-radius: 50%; background: #F76C5E; box-shadow: 0 0 0 4px rgba(247,108,94,.18); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(247,108,94,.18); } 50% { box-shadow: 0 0 0 7px rgba(247,108,94,.05); } }
.hero__badge-text strong { display: block; font-size: .92rem; color: var(--navy, #0B2447); font-weight: 600; }
.hero__badge-text span { display: block; font-size: .76rem; color: var(--muted, #5B5A55); }

/* Hide the legacy empty card */
.hero__card { display: none; }

@media (max-width: 880px) {
  .hero { padding: 40px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__badge { left: 12px; bottom: 12px; padding: 12px 14px; }
}

/* --- SECTORS redesign --- */
.sectors { padding: 96px 0; background: #fff; }
.sectors .section__head { margin-bottom: 48px; }
.sectors .section__head h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; letter-spacing: -.02em; color: var(--navy, #0B2447); margin: 8px 0 14px; }
.sectors .section__head p { color: var(--muted, #5B5A55); max-width: 600px; margin: 0 auto; }
.sectors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sector-card {
  position: relative; overflow: hidden; border-radius: 14px;
  background: #fff; border: 1px solid #ece7da;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -28px rgba(11,36,71,.30); border-color: #d8d0bd; }
.sector-card__media { aspect-ratio: 4/3; overflow: hidden; background: #f3ede0; }
.sector-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.sector-card:hover .sector-card__media img { transform: scale(1.04); }
.sector-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sector-card__icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(247,108,94,.14); color: #c33d2e; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.sector-card__icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.sector-card h3 { margin: 0; font-size: 1.12rem; font-weight: 700; color: var(--navy, #0B2447); letter-spacing: -.01em; }
.sector-card p { margin: 0; font-size: .92rem; line-height: 1.5; color: var(--muted, #5B5A55); }
@media (max-width: 980px) { .sectors__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sectors__grid { grid-template-columns: 1fr; } }

/* --- HOW (steps) redesign --- */
.how { padding: 96px 0; background: linear-gradient(180deg, #faf6ed 0%, #f3ede0 100%); }
.how .section__head { margin-bottom: 48px; text-align: left; max-width: 640px; }
.how__steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.how__steps li { background: #fff; border: 1px solid #ece7da; border-radius: 14px; padding: 28px 26px 30px; position: relative; }
.how__step-num { display: inline-block; font-size: .82rem; font-weight: 700; color: #c33d2e; letter-spacing: .14em; margin-bottom: 14px; }
.how__steps h3 { margin: 0 0 8px; font-size: 1.18rem; font-weight: 700; color: var(--navy, #0B2447); letter-spacing: -.01em; }
.how__steps p { margin: 0; color: var(--muted, #5B5A55); line-height: 1.55; font-size: .96rem; }
.how__steps li::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 3px; background: #F76C5E; border-radius: 3px 0 0 0; }
@media (max-width: 880px) { .how__steps { grid-template-columns: 1fr; } }

/* --- OWNER strip refresh --- */
.owner-strip { padding: 96px 0; background: #fff; }
.owner-strip__inner { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; }
.owner-strip__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 50px -30px rgba(11,36,71,.35); }
.owner-strip__copy h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; color: var(--navy, #0B2447); margin: 14px 0 18px; line-height: 1.15; }
.owner-strip__copy p { font-size: 1.06rem; line-height: 1.65; color: #2a2a2e; max-width: 600px; }
.owner-strip__sig { display: flex; flex-direction: column; margin-top: 22px; padding-top: 20px; border-top: 1px solid #e6e0d2; max-width: 240px; }
.owner-strip__sig strong { font-weight: 700; color: var(--navy, #0B2447); }
.owner-strip__sig span { font-size: .86rem; color: var(--muted, #5B5A55); }
@media (max-width: 820px) { .owner-strip__inner { grid-template-columns: 1fr; gap: 28px; } .owner-strip__photo img { max-width: 280px; } }

/* --- VACANCIES strip (home) + VACANCIES INDEX --- */
.vacancies-strip { padding: 96px 0; background: linear-gradient(180deg, #faf6ed 0%, #f3ede0 100%); }
.vacancies-strip .section__head { margin-bottom: 36px; }
.vacancy-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vacancy-card {
  display: flex; flex-direction: column; align-items: stretch;
  padding: 0; background: #fff; border: 1px solid #ece7da; border-radius: 14px;
  text-decoration: none; color: inherit; position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.vacancy-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #F76C5E; opacity: .9; }
.vacancy-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -28px rgba(11,36,71,.30); border-color: #d8d0bd; }
.vacancy-card__sector { display: inline-block; align-self: flex-start; margin: 22px 24px 0; padding: 4px 10px; border-radius: 999px; background: rgba(11,36,71,.06); color: var(--navy, #0B2447); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vacancy-card h3 { margin: 12px 24px 6px; font-size: 1.18rem; font-weight: 700; color: var(--navy, #0B2447); letter-spacing: -.01em; line-height: 1.25; }
.vacancy-card__meta { margin: 4px 24px 12px; font-size: .86rem; color: var(--muted, #5B5A55); display: flex; gap: 8px; flex-wrap: wrap; }
.vacancy-card__summary { margin: 0 24px 18px; font-size: .94rem; line-height: 1.55; color: #2a2a2e; flex: 1; }
.vacancy-card__cta { margin: 0 24px 22px; font-size: .9rem; font-weight: 600; color: #c33d2e; }
@media (max-width: 980px) { .vacancy-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .vacancy-list { grid-template-columns: 1fr; } }

/* Vacancies INDEX page reuse the same card style */
.vacancies-list { grid-template-columns: repeat(2, 1fr); display: grid; gap: 20px; padding: 12px 0 80px; }
@media (max-width: 760px) { .vacancies-list { grid-template-columns: 1fr; } }

/* --- TESTIMONIALS refresh --- */
.testimonials { padding: 96px 0; background: #fff; }
.testimonials .section__head { margin-bottom: 48px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { margin: 0; padding: 28px 28px 26px; background: #faf6ed; border-radius: 14px; border: 1px solid #ece7da; position: relative; }
.testimonial::before { content: "\201C"; position: absolute; top: 6px; left: 18px; font-size: 4rem; color: #F76C5E; opacity: .35; line-height: 1; font-family: Georgia, serif; }
.testimonial blockquote { margin: 14px 0 18px; font-size: 1.02rem; line-height: 1.55; color: #2a2a2e; position: relative; z-index: 2; }
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid #e6e0d2; }
.testimonial figcaption strong { color: var(--navy, #0B2447); font-weight: 700; }
.testimonial figcaption span { font-size: .84rem; color: var(--muted, #5B5A55); }
@media (max-width: 880px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* --- CTA strip refresh --- */
.cta { padding: 64px 0 72px; background: linear-gradient(135deg, #0B2447 0%, #08193A 100%); color: #f3ede0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(closest-side, rgba(247,108,94,.20), rgba(247,108,94,0)); }
.cta__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; position: relative; z-index: 2; }
.cta h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; margin: 0 0 14px; color: #faf6ed; }
.cta p { font-size: 1.04rem; line-height: 1.55; color: #d8d4c8; margin: 0; max-width: 480px; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
@media (max-width: 820px) {
  .cta__inner { grid-template-columns: 1fr; }
  .cta__actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* --- Eyebrow + section head --- */
.eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #c33d2e; }
.section__head { margin: 0 0 36px; }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__head .eyebrow { margin-bottom: 10px; }
.section__head h2 { font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.02em; color: var(--navy, #0B2447); margin: 0 0 12px; line-height: 1.15; }
.section__head p { color: var(--muted, #5B5A55); font-size: 1.04rem; line-height: 1.55; }

/* --- Buttons polish --- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; line-height: 1; }
.btn--primary { background: var(--navy, #0B2447); color: #faf6ed; box-shadow: 0 10px 20px -10px rgba(11,36,71,.50); }
.btn--primary:hover { background: #08193A; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy, #0B2447); border: 1px solid rgba(11,36,71,.25); }
.btn--ghost:hover { background: rgba(11,36,71,.06); }
.btn--ghost-light { background: transparent; color: #faf6ed; border: 1px solid rgba(255,255,255,.40); }
.btn--ghost-light:hover { background: rgba(255,255,255,.10); }

/* --- Container --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* =====================================================
   REDESIGN v2 — page-static, contact, vacancy detail, apply
   ===================================================== */

/* Static page hero band */
.page-static__head { padding: 56px 0 48px; background: linear-gradient(180deg, #FBF6EB 0%, #F4ECDC 100%); border-bottom: 1px solid rgba(11,36,71,.06); position: relative; overflow: hidden; }
.page-static__head--plain { padding: 56px 0 40px; }
.page-static__head--image { padding-bottom: 64px; }
.page-static__head-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.page-static__head-copy .eyebrow { margin-bottom: 14px; }
.page-static__head-copy h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; color: var(--navy, #0B2447); margin: 0 0 18px; }
.page-static__lead { font-size: 1.12rem; line-height: 1.55; color: #4b4a45; max-width: 540px; margin: 0 0 22px; }
.page-static__head-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.page-static__head-visual { position: relative; }
.page-static__head-visual img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: 18px; box-shadow: 0 24px 48px -24px rgba(11,36,71,.35); display: block; }
.page-static__head-badge { position: absolute; left: -16px; bottom: -22px; background: #fff; border-radius: 14px; padding: 14px 18px; box-shadow: 0 18px 36px -16px rgba(11,36,71,.30); border: 1px solid rgba(11,36,71,.06); display: flex; flex-direction: column; gap: 2px; }
.page-static__head-badge strong { font-size: 1.4rem; font-weight: 700; color: var(--navy, #0B2447); letter-spacing: -.01em; }
.page-static__head-badge span { font-size: .78rem; color: #6b6a65; }
.back-link { display: inline-block; margin-bottom: 14px; font-size: .9rem; color: #5b5a55; text-decoration: none; }
.back-link:hover { color: var(--navy, #0B2447); }

@media (max-width: 900px) {
  .page-static__head-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-static__head-visual { order: -1; }
  .page-static__head-badge { left: 12px; bottom: -16px; }
}

/* Static page main body + aside */
.page-static__main { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 64px 24px; align-items: flex-start; }
.page-static__main .page-static__body { max-width: none; padding: 0; }
.page-static__body { max-width: 760px; padding: 56px 0 64px; }
.page-static__body h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy, #0B2447); margin: 32px 0 12px; letter-spacing: -.01em; }
.page-static__body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy, #0B2447); margin: 24px 0 8px; }
.page-static__body p { line-height: 1.65; color: #2a2a26; margin: 0 0 14px; }
.page-static__body ul, .page-static__body ol { line-height: 1.65; color: #2a2a26; padding-left: 22px; margin: 0 0 16px; }
.page-static__body li { margin-bottom: 6px; }
.page-static__body a { color: #c33d2e; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .page-static__main { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px; }
}

/* Aside card pattern */
.page-static__aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 88px; }
.aside-card { background: #fff; border: 1px solid rgba(11,36,71,.10); border-radius: 16px; padding: 22px 22px 20px; box-shadow: 0 12px 28px -20px rgba(11,36,71,.25); }
.aside-card .eyebrow { font-size: .68rem; margin-bottom: 10px; }
.aside-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy, #0B2447); margin: 0 0 8px; letter-spacing: -.01em; }
.aside-card p { font-size: .95rem; line-height: 1.55; color: #4b4a45; margin: 0 0 10px; }
.aside-card a { color: #c33d2e; text-decoration: none; }
.aside-card a:hover { text-decoration: underline; }
.aside-card hr { border: 0; border-top: 1px solid rgba(11,36,71,.08); margin: 14px 0; }
.aside-card .small { font-size: .85rem; }
.aside-card--accent { background: linear-gradient(135deg, #0B2447 0%, #0E2E5C 100%); color: #f3ede0; border-color: transparent; }
.aside-card--accent .eyebrow { color: #F7AE9A; }
.aside-card--accent h3 { color: #faf6ed; }
.aside-card--accent p, .aside-card--accent li { color: #d8d4c8; }
.aside-card--accent a { color: #F7AE9A; }
.aside-card--accent .btn--primary { background: #fff; color: var(--navy, #0B2447); }
.aside-card--accent .btn--primary:hover { background: #f3ede0; }
.aside-card--sticky { position: sticky; top: 96px; }
.aside-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.aside-facts li { display: flex; flex-direction: column; padding-bottom: 12px; border-bottom: 1px solid rgba(11,36,71,.08); }
.aside-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.aside-facts strong { font-size: 1.5rem; font-weight: 700; color: var(--navy, #0B2447); letter-spacing: -.01em; }
.aside-facts span { font-size: .82rem; color: #6b6a65; }
.btn--sm { padding: 8px 14px; font-size: .85rem; }

/* Contact page */
.contact-quick { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 14px; }
.contact-quick li { display: flex; gap: 14px; align-items: baseline; padding-bottom: 12px; border-bottom: 1px dashed rgba(11,36,71,.15); }
.contact-quick li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-quick__label { width: 90px; flex-shrink: 0; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #6b6a65; }
.contact-quick a { color: var(--navy, #0B2447); text-decoration: none; font-weight: 600; }
.contact-quick a:hover { color: #c33d2e; }
.contact-map { position: relative; }
.contact-map img { border-radius: 18px; }
.contact-map__pin { position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%); background: #fff; padding: 12px 16px; border-radius: 12px; box-shadow: 0 16px 32px -12px rgba(11,36,71,.40); display: flex; gap: 10px; align-items: center; max-width: 240px; }
.contact-map__pin span[aria-hidden] { font-size: 1.6rem; }
.contact-map__pin strong { display: block; color: var(--navy, #0B2447); font-size: .95rem; }
.contact-map__pin > div span { font-size: .8rem; color: #6b6a65; }

.form-section--two { display: grid; grid-template-columns: 1fr 340px; gap: 56px; padding: 64px 24px; align-items: flex-start; }
.form-side__title { font-size: 1.4rem; font-weight: 700; color: var(--navy, #0B2447); margin: 0 0 20px; letter-spacing: -.01em; }
.form-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.contact-list li { font-size: .95rem; color: #4b4a45; }
.hours-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 10px; }
.hours-list li { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; color: #d8d4c8; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.10); }
.hours-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-kvk { font-size: .78rem; color: #b5b1a6; margin-top: 12px; }

@media (max-width: 900px) {
  .form-section--two { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px; }
}

/* Vacancy listing page hero + filters */
.vacancies-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px; background: #fff; border-radius: 18px; box-shadow: 0 18px 36px -22px rgba(11,36,71,.30); border: 1px solid rgba(11,36,71,.08); }
.vacancies-hero__stats div { display: flex; flex-direction: column; gap: 4px; padding: 0 8px; border-right: 1px solid rgba(11,36,71,.10); }
.vacancies-hero__stats div:last-child { border-right: 0; }
.vacancies-hero__stats strong { font-size: 1.8rem; font-weight: 700; color: var(--navy, #0B2447); letter-spacing: -.02em; }
.vacancies-hero__stats span { font-size: .78rem; color: #6b6a65; line-height: 1.3; }

.vacancy-page { padding: 48px 24px 64px; }
.vacancy-filters { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; align-items: center; padding: 16px 18px; background: #fff; border-radius: 14px; border: 1px solid rgba(11,36,71,.10); box-shadow: 0 8px 20px -16px rgba(11,36,71,.20); }
.vacancy-filters__field { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #5b5a55; }
.vacancy-filters select { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(11,36,71,.20); background: #fff; font-size: .9rem; color: var(--navy, #0B2447); cursor: pointer; }
.vacancy-filters__search { flex: 1; min-width: 220px; }
.vacancy-filters input[type="search"] { width: 100%; padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(11,36,71,.20); background: #fff; font-size: .92rem; }
.vacancy-filters input[type="search"]:focus { outline: 2px solid #c33d2e; outline-offset: 2px; }

.vacancy-list--grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.vacancy-card__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #6b6a65; margin: 8px 0 12px; }
.vacancy-card__meta span { display: inline-flex; align-items: center; gap: 4px; }

/* Vacancy detail */
.vacancy-detail__main { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 56px 24px; align-items: flex-start; }
.vacancy-detail__body { min-width: 0; }
.vacancy-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; margin: 0 0 32px; padding: 22px 24px; background: #fff; border: 1px solid rgba(11,36,71,.10); border-radius: 14px; box-shadow: 0 8px 18px -14px rgba(11,36,71,.20); }
.vacancy-meta--compact { padding: 14px 0 0; background: transparent; border: 0; box-shadow: none; grid-template-columns: 1fr; gap: 10px; }
.vacancy-meta div { display: flex; flex-direction: column; gap: 2px; }
.vacancy-meta--compact div { flex-direction: row; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid rgba(11,36,71,.08); }
.vacancy-meta--compact div:last-child { border-bottom: 0; }
.vacancy-meta dt { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #6b6a65; margin: 0; }
.vacancy-meta dd { font-size: 1rem; font-weight: 600; color: var(--navy, #0B2447); margin: 0; }

@media (max-width: 900px) {
  .vacancy-detail__main { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px; }
}

/* Apply page steps */
.apply-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: flex; flex-direction: column; gap: 12px; }
.apply-steps li { counter-increment: step; padding-left: 36px; position: relative; font-size: .92rem; line-height: 1.5; color: #d8d4c8; }
.apply-steps li::before { content: counter(step); position: absolute; left: 0; top: -2px; width: 26px; height: 26px; border-radius: 50%; background: rgba(247,108,94,.20); color: #F7AE9A; display: inline-flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; }

/* Form polish — refine field appearance */
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: #4b4a45; }
.field input, .field textarea, .field select { padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(11,36,71,.18); background: #fff; font-size: .98rem; font-family: inherit; color: #2a2a26; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: #c33d2e; box-shadow: 0 0 0 3px rgba(195,61,46,.15); }
.field-err { font-size: .82rem; color: #c33d2e; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-error { background: rgba(195,61,46,.08); color: #8a2a1f; padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; border: 1px solid rgba(195,61,46,.20); }
.form-success { background: linear-gradient(135deg, #FBF6EB 0%, #F4ECDC 100%); padding: 28px 28px 24px; border-radius: 16px; border: 1px solid rgba(11,36,71,.10); }
.form-success h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy, #0B2447); margin: 0 0 8px; }
.form-success p { font-size: 1rem; line-height: 1.55; color: #4b4a45; margin: 0 0 12px; }
.btn--lg { padding: 14px 26px; font-size: 1rem; }


/* ============================================================ */
/* REVISIE RONDE 2026-06-10 — feedback patches                  */
/* ============================================================ */

/* --- Header: logo grootte gelijk aan footer (38px), netter menu --- */
.nav__inner {
  flex-wrap: wrap;
  gap: 18px 24px;
  padding-block: 14px;
}
.nav__logo { padding: 0; }
.brand__logo { height: 38px; width: auto; display: block; }

/* Nav-links: nette horizontale lijn, geen wrap op desktop */
.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
}
.nav__links a:not(.btn) {
  padding: 8px 12px;
  font-size: .92rem;
  white-space: nowrap;
  border-radius: 8px;
}

/* Op middelgrote schermen: laat menu wel wrappen i.p.v. proppen */
@media (max-width: 1180px) {
  .nav__links { flex-wrap: wrap; justify-content: flex-end; row-gap: 6px; }
}

/* --- Language switcher: pill met gelijke ronding --- */
.lang-switch {
  display: inline-flex;
  gap: 0;
  margin: 0 8px;
  padding: 3px;
  background: rgba(11,36,71,.06);
  border-radius: 999px;          /* volledig pill */
  align-items: center;
}
.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;          /* zelfde ronding als pill — hoekjes lopen gelijk */
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted, #5B5A55);
  text-decoration: none;
  line-height: 1;
  transition: background .15s, color .15s;
}
.lang-switch a.is-active {
  background: var(--navy, #0B2447);
  color: #fff;
}
.lang-switch a:not(.is-active):hover {
  color: var(--navy, #0B2447);
}

/* --- Footer: logo zelfde hoogte als header, address compact --- */
.footer__logo { height: 38px; width: auto; display: block; margin-bottom: 14px; }
.footer__brand p { margin-top: 0; }
.footer__addr { margin-top: 10px; }

/* --- Footer CTA blok: compacter, niet meer twee regels --- */
.cta { padding: 48px 0 56px; }
.cta__inner {
  grid-template-columns: 1.4fr .9fr;
  gap: 28px;
  align-items: center;
}
.cta h2 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 10px;
}
.cta p {
  font-size: .98rem;
  line-height: 1.5;
  max-width: 520px;
}
.cta__actions {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.cta__actions .btn { white-space: nowrap; }
@media (max-width: 820px) {
  .cta__inner { grid-template-columns: 1fr; gap: 18px; }
  .cta__actions { justify-content: flex-start; }
}

/* --- Vacancy cards: meer padding, kleinere titels, nettere lay-out --- */
.vacancy-card {
  padding: 0;            /* padding via children, behoud accent bar boven */
  border-radius: 16px;
}
.vacancy-card__sector { margin: 26px 28px 0; }
.vacancy-card h2,
.vacancy-card h3 {
  margin: 14px 28px 6px;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -.005em;
  font-weight: 600;
}
.vacancy-card__meta {
  margin: 6px 28px 14px;
  font-size: .85rem;
  gap: 10px;
}
.vacancy-card__summary {
  margin: 0 28px 22px;
  font-size: .92rem;
  line-height: 1.6;
}
.vacancy-card__cta {
  margin: 0 28px 26px;
  font-size: .88rem;
}

/* --- Vacatures lijst: zoek en sector netjes naast elkaar --- */
.vacancy-filters {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  margin: 0 0 28px;
  align-items: stretch;
}
.vacancy-filters__field,
.vacancy-filters__search {
  display: block;
  position: relative;
}
.vacancy-filters__field > span,
.vacancy-filters__search > span {
  display: none;            /* labels visueel verbergen, semantiek behouden */
}
.vacancy-filters select,
.vacancy-filters input[type="search"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d8d3c4;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--navy, #0B2447);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.vacancy-filters select {
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230B2447' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.vacancy-filters input[type="search"]::-webkit-search-decoration { display: none; }
.vacancy-filters select:focus,
.vacancy-filters input[type="search"]:focus {
  outline: none;
  border-color: var(--coral, #F76C5E);
  box-shadow: 0 0 0 3px rgba(247,108,94,.18);
}
@media (max-width: 720px) {
  .vacancy-filters { grid-template-columns: 1fr; }
}

/* --- btn--cta: opvallende rode primaire knop met witte tekst --- */
.btn--cta {
  background: linear-gradient(180deg, #F25647 0%, #D33B2D 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px -10px rgba(211,59,45,.55);
  font-weight: 600;
}
.btn--cta:hover {
  background: linear-gradient(180deg, #E94B3C 0%, #BE2F22 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px rgba(211,59,45,.65);
}
.btn--cta:active { transform: translateY(0); }
.btn--cta:focus-visible {
  outline: 3px solid rgba(247,108,94,.45);
  outline-offset: 2px;
}

/* Subtle attention-bounce — alleen op desktop, met respect voor reduce-motion */
@keyframes btnBounce {
  0%, 100% { transform: translateY(0); }
  35%      { transform: translateY(-3px); }
  60%      { transform: translateY(0); }
  70%      { transform: translateY(-1px); }
  85%      { transform: translateY(0); }
}
.btn--bounce {
  animation: btnBounce 2.4s ease-in-out 1.2s infinite;
  transform-origin: center;
}
.btn--bounce:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .btn--bounce { animation: none; }
}

/* --- Inline apply form sectie op vacaturedetail --- */
.apply-inline {
  background: #fdfaf2;
  border-top: 1px solid #ece6d6;
  border-bottom: 1px solid #ece6d6;
  padding: 56px 0 64px;
  margin-top: 24px;
}
.apply-inline__head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.apply-inline__head h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 6px 0 10px;
  color: var(--navy, #0B2447);
}
.apply-inline__form {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ece6d6;
  border-radius: 16px;
  padding: 28px 28px 30px;
  box-shadow: 0 12px 32px -22px rgba(11,36,71,.25);
}
.apply-inline__form .btn { margin-top: 8px; }

/* Aside CTA-knop moet niet uit z'n container snijden */
.aside-card .btn--cta { width: 100%; box-sizing: border-box; text-align: center; padding-inline: 18px; }
.aside-card .btn--lg  { font-size: .95rem; padding-block: 13px; }

/* Floating new-vacancies badge op hero collage staat al donker — laat zo */

/* CTA blok in footer: heading mag niet meer over 2 regels lopen op desktop */
.cta__inner .cta__copy { min-width: 0; }

/* ============================================================
   REVISIE 4 — Definitieve overrides (hogere specificiteit)
   ============================================================ */

/* Logo: garandeer geen achtergrond/border/box op de header img */
.nav .nav__logo,
.nav .nav__logo:hover,
.nav .nav__logo:focus { background: transparent !important; box-shadow: none !important; border: 0 !important; }
.nav .brand__logo { background: transparent !important; height: 40px; width: auto; display: block; }

/* Language pill — schrijf met .nav__links voor specificiteit,
   en zet expliciet !important op border-radius zodat .nav__links a:not(.btn) niet kan winnen. */
.nav__links .lang-switch {
  display: inline-flex;
  gap: 0;
  margin: 0 8px;
  padding: 3px;
  background: rgba(11,36,71,.06);
  border-radius: 999px;
  align-items: center;
  line-height: 1;
}
.nav__links .lang-switch a,
.nav__links .lang-switch a:not(.btn) {
  padding: 6px 12px !important;
  border-radius: 999px !important;     /* echt gelijke ronding met de pill */
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted, #5B5A55);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav__links .lang-switch a.is-active,
.nav__links .lang-switch a.is-active:not(.btn) {
  background: var(--navy, #0B2447) !important;
  color: #fff !important;
}
.nav__links .lang-switch a:not(.is-active):hover { color: var(--navy, #0B2447); background: transparent; }

/* Vacancy cards: echte zichtbare padding op de container, content gewoon binnen */
.vacancy-list .vacancy-card,
.vacancy-page .vacancy-card,
.vacancy-card {
  padding: 28px 28px 26px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vacancy-card::before { top: -1px; }
.vacancy-card .vacancy-card__sector { margin: 0 0 4px !important; align-self: flex-start; }
.vacancy-card h2,
.vacancy-card h3 { margin: 0 0 4px !important; }
.vacancy-card .vacancy-card__meta { margin: 0 0 8px !important; }
.vacancy-card .vacancy-card__summary { margin: 0 0 14px !important; flex: 1; }
.vacancy-card .vacancy-card__cta { margin: 0 !important; }

/* CTA-blok in footer: heading kleiner houden, actions altijd stack op smal/dense */
.cta__inner { grid-template-columns: 1.5fr 1fr; gap: 32px; }
.cta__inner .cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 1100px) {
  .cta__inner { grid-template-columns: 1fr; gap: 20px; }
  .cta__inner .cta__actions { justify-content: flex-start; }
}

/* Header: nav items kleiner houden zodat ze niet wrappen */
.nav__inner { gap: 12px 18px; }
@media (max-width: 1280px) {
  .nav__links a:not(.btn) { padding: 8px 10px; font-size: .88rem; }
}

/* Footer adres-block: zichtbare regels met telefoon en stad */
.footer__addr { line-height: 1.55; }
.footer__addr a { color: inherit; text-decoration: none; }
.footer__addr a:hover { text-decoration: underline; }
.footer__addr span { color: rgba(255,255,255,.7); }

/* Vacancy image bovenaan card (als image_path aanwezig is) */
.vacancy-card__image {
  display: block;
  width: calc(100% + 56px);
  margin: -28px -28px 16px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

/* ============================================================
   REVISIE 5 — typografie + header height + vacancy spacing
   Hogere specificiteit + !important waar nodig om eerdere lagen
   netjes te overschrijven. Mobile-first variant onderaan.
   ============================================================ */

/* --- Header: meer verticale lucht, logo iets groter --- */
.nav { background: var(--cream, #FBF6EB); border-bottom: 1px solid rgba(11,36,71,.06); }
.nav .nav__inner {
  padding-block: 22px !important;
  gap: 14px 28px;
  min-height: 88px;
}
.nav .brand__logo { height: 44px !important; }

/* Menu items net iets meer ademruimte, font netjes */
.nav__links { gap: 4px; }
.nav__links a:not(.btn) {
  padding: 10px 14px !important;
  font-size: .92rem !important;
  font-weight: 500;
  letter-spacing: 0;
}
.nav__links .btn { padding: 11px 20px; font-size: .92rem; font-weight: 600; }

/* Op middelgrote schermen menu compacter ipv te wrappen */
@media (max-width: 1280px) {
  .nav .brand__logo { height: 40px !important; }
  .nav__links a:not(.btn) { padding: 8px 10px !important; font-size: .86rem !important; }
  .nav__links { gap: 2px; }
  .nav .nav__inner { padding-block: 18px !important; min-height: 76px; }
}

/* --- Hero typografie kalmer --- */
.hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 3rem) !important;   /* was tot 63px */
  line-height: 1.08 !important;
  letter-spacing: -.015em;
  font-weight: 700;
}
.hero p,
.hero__lead {
  font-size: 1.06rem !important;
  line-height: 1.55;
}
.eyebrow {
  font-size: .72rem !important;
  letter-spacing: .14em;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- Sectie-titels kalmer --- */
section h2,
.section h2,
.section-title,
.sectors h2,
.how h2,
.testimonials h2,
.founder h2,
.cta h2 {
  font-size: clamp(1.55rem, 2.1vw, 2rem) !important;  /* was tot 43px */
  line-height: 1.18 !important;
  letter-spacing: -.01em;
}

/* --- Vacancy listing hero --- */
.vacancies-hero h1,
.page-static__head h1 {
  font-size: clamp(1.9rem, 2.6vw, 2.5rem) !important; /* was 54px */
  line-height: 1.1 !important;
  letter-spacing: -.012em;
}

/* Stats card: niet meer afgekapt zoals "9 d" */
.vacancies-hero__stats {
  grid-template-columns: repeat(3, minmax(120px, 1fr)) !important;
  gap: 24px;
  padding: 22px 26px !important;
}
.vacancies-hero__stats strong,
.vacancies-hero__stats > div > strong {
  font-size: 1.7rem !important;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.vacancies-hero__stats > div > span,
.vacancies-hero__stats span {
  font-size: .82rem;
  line-height: 1.35;
}

/* --- Vacancy cards: ademruimte + leesbare titel --- */
.vacancy-card {
  padding: 32px 30px 30px !important;
  border-radius: 18px;
  gap: 12px !important;
}
.vacancy-card::before { height: 5px; }
.vacancy-card .vacancy-card__sector {
  font-size: .68rem !important;
  letter-spacing: .12em;
  padding: 5px 12px !important;
  margin: 0 0 4px !important;
}
.vacancy-card h2,
.vacancy-card h3 {
  font-size: 1.22rem !important;       /* was 16.8px - veel te klein */
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin: 4px 0 8px !important;
  color: var(--navy, #0B2447) !important;
  letter-spacing: -.005em;
}
.vacancy-card .vacancy-card__meta {
  margin: 0 0 10px !important;
  font-size: .87rem !important;
  color: #6b6a65 !important;
  gap: 14px !important;
  display: flex;
  flex-wrap: wrap;
}
.vacancy-card .vacancy-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.vacancy-card .vacancy-card__summary {
  margin: 0 0 18px !important;
  font-size: .94rem !important;
  line-height: 1.6 !important;
  color: #2a2a2e;
  flex: 1;
}
.vacancy-card .vacancy-card__cta {
  margin: auto 0 0 !important;
  font-size: .92rem !important;
  font-weight: 600;
  color: #c33d2e !important;
}

/* Vacancy image fix: ook nieuwe padding 32px volgen */
.vacancy-card__image {
  width: calc(100% + 60px);
  margin: -32px -30px 14px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

/* --- Vacancy grid: iets meer gap zodat cards lucht hebben --- */
.vacancy-list--grid {
  gap: 22px !important;
}

/* --- Footer legalline duidelijker leesbaar --- */
.footer__base {
  border-top: 1px solid rgba(247,244,238,.10);
  padding-top: 22px !important;
  margin-top: 14px;
  color: rgba(247,244,238,.70) !important;
  font-size: .82rem;
}
.footer__base p { margin: 0; }

/* --- Mobile: header echt compacter, menu in drawer --- */
@media (max-width: 820px) {
  .nav .nav__inner { padding-block: 14px !important; min-height: 64px; }
  .nav .brand__logo { height: 34px !important; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem) !important; }
  .vacancy-card { padding: 24px 22px !important; }
  .vacancy-card h2 { font-size: 1.1rem !important; }
}

/* --- Stats card: kleinere "dagen" suffix, geen afkapping --- */
.vacancies-hero__stats {
  grid-template-columns: repeat(3, auto) !important;
  justify-content: space-between;
  gap: 28px !important;
  padding: 24px 28px !important;
}
.vacancies-hero__stats > div { min-width: 0; }
.vacancies-hero__stats strong .unit {
  display: inline-block;
  font-size: .58em;
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0;
  color: var(--navy, #0B2447);
  opacity: .85;
  vertical-align: middle;
}
@media (max-width: 720px) {
  .vacancies-hero__stats { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
  .vacancies-hero__stats strong { font-size: 1.3rem !important; }
}

/* =========================================================
   REVISIE 5.1 — DEFINITIEVE FIX: vacancy card + lang switch
   Selectors zonder :not() en met hoogste specificity.
   ========================================================= */

/* --- Vacature kaart: titel kleiner + meta/summary echt los van de rand --- */
html body .vacancy-list .vacancy-card,
html body .vacancy-page .vacancy-card,
html body .vacancy-card {
  padding: 30px 30px 28px !important;
  border-radius: 18px !important;
  gap: 10px !important;
  display: flex !important;
  flex-direction: column !important;
}
html body .vacancy-card h1,
html body .vacancy-card h2,
html body .vacancy-card h3 {
  font-size: 1.18rem !important;          /* ~18.9px, voorgoed klein */
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 6px 0 6px !important;
  color: var(--navy, #0B2447) !important;
  letter-spacing: -.005em !important;
}
html body .vacancy-card .vacancy-card__sector {
  margin: 0 0 6px !important;
  font-size: .68rem !important;
  letter-spacing: .12em !important;
  padding: 5px 12px !important;
  align-self: flex-start !important;
}
html body .vacancy-card .vacancy-card__meta {
  margin: 2px 0 10px !important;
  padding: 0 !important;
  font-size: .86rem !important;
  color: #6b6a65 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}
html body .vacancy-card .vacancy-card__summary {
  margin: 2px 0 18px !important;
  padding: 0 !important;
  font-size: .94rem !important;
  line-height: 1.6 !important;
  color: #2a2a2e !important;
  flex: 1 !important;
}
html body .vacancy-card .vacancy-card__cta {
  margin: auto 0 0 !important;
  padding: 0 !important;
  font-size: .92rem !important;
  font-weight: 600 !important;
  color: #c33d2e !important;
}

/* --- Lang switch: ALLE drie links altijd pill-rond, ook NL en DE --- */
html body .lang-switch {
  display: inline-flex !important;
  gap: 0 !important;
  margin: 0 8px !important;
  padding: 3px !important;
  background: rgba(11,36,71,.06) !important;
  border-radius: 999px !important;
  align-items: center !important;
  line-height: 1 !important;
}
html body .lang-switch a,
html body .lang-switch a:link,
html body .lang-switch a:visited {
  padding: 6px 12px !important;
  border-radius: 999px !important;    /* NL en DE krijgen ook ronde hoek */
  font-size: .76rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  color: var(--muted, #5B5A55) !important;
  background: transparent !important;
  text-decoration: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transition: background .15s, color .15s !important;
}
html body .lang-switch a.is-active {
  background: var(--navy, #0B2447) !important;
  color: #fff !important;
  border-radius: 999px !important;
}
html body .lang-switch a:hover,
html body .lang-switch a:focus-visible {
  background: rgba(11,36,71,.08) !important;
  color: var(--navy, #0B2447) !important;
  border-radius: 999px !important;
}
html body .lang-switch a.is-active:hover {
  background: var(--navy, #0B2447) !important;
  color: #fff !important;
}
@media (max-width: 720px) {
  .vacancies-hero__stats strong .unit { font-size: .65em; }
}
