/* ============================================================
   Basis & Balans — style.css
   ============================================================ */

/* 1. CSS Reset & Box-sizing
   ----------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Custom Properties
   ----------------------------------------------------------- */
:root {
  --navy:       #2C3E50;
  --green:      #8FAF8F;
  --green-dark: #6b8f6b;
  --offwhite:   #F8F9F7;
  --white:      #FFFFFF;
  --text:       #1a2332;
  --muted:      #5a6a7a;
  --border:     #e2e8e0;

  --radius-sm:  6px;
  --radius-md:  12px;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
  --transition:  0.3s ease;
}

/* 3. Base / Typography
   ----------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 52px; }
h2 { font-size: 38px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

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

/* 5. Buttons
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  height: 48px;
  padding: 0 28px;
}
.btn--primary:hover {
  background: #1e2d3f;
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  height: 48px;
  padding: 0 28px;
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--green {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
  height: 48px;
  padding: 0 28px;
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.btn--nav {
  background: var(--navy);
  color: var(--white) !important;
  height: auto;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  line-height: 1.4;
  border: none;
}
.btn--nav:hover {
  background: #243547;
  transform: none;
}

.btn--nav-outline {
  background: transparent;
  color: var(--navy) !important;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0;
  border: none;
  border-bottom: 1.5px solid transparent;
  height: auto;
  line-height: 1.4;
  transition: border-color 0.2s;
}
.btn--nav-outline:hover {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy) !important;
}

/* 6. Eyebrow label
   ----------------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

/* 7. Link Arrow
   ----------------------------------------------------------- */
.link-arrow {
  display: inline-block;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: text-decoration var(--transition);
}
.link-arrow:hover {
  text-decoration: underline;
}

/* 8. Scroll-reveal
   ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  height: 38px;
  display: flex;
  align-items: center;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.topbar__item:hover {
  opacity: 1;
}
.topbar__item svg {
  flex-shrink: 0;
}
.topbar__sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.25);
}
.topbar__right .topbar__item {
  opacity: 0.8;
}
.topbar__right .topbar__item:hover {
  opacity: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  line-height: 1;
}
.nav__logo img {
  height: 3rem;
  width: auto;
  display: block;
  align-self: center;
  position: relative;
  top: 0;
}
.nav__logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #2C3E50;
  line-height: 1;
  display: flex;
  align-items: center;
}
.nav__logo-amp {
  color: #8FAF8F;
  font-style: italic;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__menu > li {
  position: relative;
}
.nav__menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__menu > li > a:hover,
.nav__menu > li > a.active {
  color: var(--green-dark);
}
.nav__menu > li > a.active {
  border-bottom: 2px solid var(--green-dark);
  padding-bottom: 6px;
}
/* Dropdown chevron */
.nav__menu > li > a .chevron {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform var(--transition);
}
.nav__menu > li:hover > a .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  min-width: 220px;
  background: var(--white);
  border-top: 2px solid var(--navy);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 100;
}
.nav__menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.dropdown a:last-child {
  border-bottom: none;
}
.dropdown a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  padding-left: 22px;
}

/* Nested dropdown */
.dropdown__group {
  position: relative;
}
.dropdown__group > a::after {
  content: '›';
  position: absolute;
  right: 14px;
  font-size: 16px;
  opacity: 0.5;
}
.dropdown__group > a {
  position: relative;
}
.dropdown__sub {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: var(--white);
  border-top: 2px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.dropdown__group:hover .dropdown__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__menu > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav__menu > li > a {
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
  }
  .nav__cta {
    margin-top: 24px;
    width: 100%;
  }
  .nav__cta .btn--nav {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://d8j0ntlcm91z4.cloudfront.net/user_39CjFCGfFZYxsCnFZ6va7tuhqJZ/hf_20260526_202740_1f415e5a-946b-4830-a153-40c77e79c03d.png') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,38,50,0.62);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.7);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero--sm {
  height: 360px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,38,50,0.62);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero__content h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb__sep {
  opacity: 0.5;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--offwhite);
  padding: 100px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}
.about__text h2 {
  margin-bottom: 20px;
}
.about__text p {
  margin-bottom: 16px;
}

/* Stappenplan (numbered steps — flexbox, no browser ol rendering) */
.stappenplan {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 1rem 0 0;
}
.stap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.stap-nummer {
  min-width: 40px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
}
.stap-content {
  flex: 1;
  min-width: 0;
  padding-top: 0.6rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
}
.pill strong {
  color: var(--green-dark);
  font-weight: 600;
}
.about__img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SERVICES INTRO SECTION
   ============================================================ */
.services-intro {
  background: var(--white);
  padding: 100px 0;
}
.services-intro__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px;
  align-items: center;
}
.services-intro__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.services-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-intro__text h2 {
  margin-bottom: 20px;
}
.services-intro__text p {
  margin-bottom: 16px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  background: var(--offwhite);
  padding: 80px 0;
}
.services-grid__header {
  text-align: center;
  margin-bottom: 48px;
}
.services-grid__header h2 {
  margin-top: 8px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.service-card__img {
  height: 220px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img {
  transform: scale(1.04);
}
.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__body .link-arrow {
  margin-top: auto;
}
.service-card__body h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card__body p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}

/* Large cards (zorgverlening page) */
.service-card--large .service-card__img {
  height: 260px;
}
.service-card--large .service-card__body {
  padding: 32px;
}
.service-card--large .service-card__body h3 {
  font-size: 22px;
}

/* ============================================================
   VERWIJZERS SECTION
   ============================================================ */
.verwijzers {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.verwijzers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.verwijzers__text h2 {
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 8px;
}
.verwijzers__text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.verwijzers__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.verwijzers__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   VACATURES PREVIEW SECTION
   ============================================================ */
.vacatures-preview {
  background: var(--white);
  padding: 100px 0;
}
.vacatures-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vacatures-preview__text h2 {
  margin-bottom: 20px;
  margin-top: 8px;
}
.vacatures-preview__text p {
  margin-bottom: 16px;
}
.positions-card {
  background: var(--white);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.position-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.position-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.position-item::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--green);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  padding: 10px 16px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__logo-wrap img {
  height: 56px;
  width: auto;
  display: block;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer__col ul li a:hover {
  color: var(--white);
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-style: italic;
}
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer__socials a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__socials a:hover {
  color: var(--white);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__contact-item:hover {
  color: var(--white);
}
.footer__contact-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   OVER ONS PAGE
   ============================================================ */
.mission {
  padding: 100px 0;
  background: var(--offwhite);
}
.mission__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}
.mission__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.mission__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission__text h2 {
  margin-bottom: 24px;
  margin-top: 8px;
}
.mission__text p {
  margin-bottom: 16px;
}

.values {
  padding: 100px 0;
  background: var(--white);
}
.values__header {
  text-align: center;
  margin-bottom: 56px;
}
.values__header h2 {
  margin-top: 8px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 36px 32px;
  background: var(--offwhite);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card__icon svg {
  color: var(--white);
}
.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
}

.cta-strip {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-strip p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-strip__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ZORGVERLENING PAGE
   ============================================================ */
.page-intro {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}
.page-intro__inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-intro__inner h2 {
  margin-bottom: 20px;
  margin-top: 8px;
}
.page-intro__inner p {
  margin-bottom: 14px;
}

.legal-section {
  padding: 64px 0 80px;
  background: var(--offwhite);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.legal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 12px;
}
.legal-content h3:first-child {
  margin-top: 0;
}
.legal-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 8px;
}
.legal-content p {
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
.legal-content ul li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--navy);
  text-decoration: underline;
}

.staffing-strip {
  background: var(--navy);
  padding: 80px 0;
}
.staffing-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.staffing-strip__text h2 {
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 8px;
}
.staffing-strip__text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.staffing-roles {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.staffing-roles li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 80px 0;
  background: var(--offwhite);
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h2 {
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  margin-bottom: 32px;
  font-size: 15px;
}
.contact-details {
  padding: 16px 0;
}
.contact-details h2 {
  margin-bottom: 8px;
}
.contact-details > p {
  margin-bottom: 32px;
  font-size: 15px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}
.contact-detail-item:last-of-type {
  border-bottom: none;
}
.contact-detail-item:hover {
  color: var(--green-dark);
}
.contact-detail-item__icon {
  width: 44px;
  height: 44px;
  background: var(--offwhite);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}
.contact-detail-item__label {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail-item__value {
  font-size: 15px;
  font-weight: 500;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(143,175,143,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6a7a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
}

.form-fieldset {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.form-fieldset__legend {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 8px;
}

/* ============================================================
   CLIENT AANMELDEN PAGE
   ============================================================ */
.aanmelden-section {
  padding: 80px 0;
  background: var(--offwhite);
}
.aanmelden-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 56px 64px;
  box-shadow: var(--shadow-card);
}
.aanmelden-inner h2 {
  margin-bottom: 8px;
}
.aanmelden-inner > p {
  margin-bottom: 40px;
  font-size: 15px;
}

/* ============================================================
   VACATURES PAGE
   ============================================================ */
.process-section {
  padding: 80px 0;
  background: var(--offwhite);
}
.process-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.process-section__header h2 {
  margin-top: 8px;
}
.process-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  line-height: 1.6;
}

.vacatures-list {
  padding: 80px 0;
  background: var(--white);
}
.vacatures-list__header {
  margin-bottom: 40px;
}
.vacatures-list__header h2 {
  margin-top: 8px;
}
.vac-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.vac-card {
  background: var(--white);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vac-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.vac-card h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
}
.vac-card p {
  font-size: 13px;
  margin-top: 4px;
}

.solliciteer-section {
  padding: 80px 0;
  background: var(--offwhite);
}
.solliciteer-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 56px 64px;
  box-shadow: var(--shadow-card);
}
.solliciteer-inner h2 {
  margin-bottom: 8px;
}
.solliciteer-inner > p {
  margin-bottom: 40px;
  font-size: 15px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .hero__title { font-size: 34px; }
  .page-hero__content h1 { font-size: 34px; }

  .about__grid,
  .services-intro__grid,
  .verwijzers__grid,
  .vacatures-preview__grid,
  .mission__grid,
  .staffing-strip__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__grid { direction: initial; }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .aanmelden-inner,
  .solliciteer-inner {
    padding: 36px 24px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .hero {
    background-attachment: scroll;
  }

  .about__img-wrap {
    order: -1;
    aspect-ratio: 3/2;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .process-steps::before {
    display: none;
  }

  .vac-cards-grid {
    grid-template-columns: 1fr;
  }

  .verwijzers__deco {
    display: none;
  }

  .topbar__right {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .aanmelden-inner,
  .solliciteer-inner {
    padding: 28px 16px;
  }
}

/* ── MOBILE OVERRIDES ── */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body { overflow-x: hidden; max-width: 100vw; }
  .container { padding: 0 1.25rem; }

  /* Nav — is-open class (JS uses this) */
  /* Show hamburger, hide desktop nav */
  .nav__toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    position: relative;
  }
  .nav__menu {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9000;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    gap: 0.25rem;
  }
  .nav__menu.is-open {
    display: flex !important;
  }
  .nav__actions .btn { display: none; }
  .nav__actions .btn--nav { display: none; }
  .topbar { display: none; }

  /* Dropdown accordion on mobile */
  .nav__menu > li > a {
    font-size: 1.125rem;
    padding: 0.875rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .nav__menu > li .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #f5f7f5 !important;
    border-radius: 8px !important;
    pointer-events: auto !important;
    display: none;
    margin: 0.25rem 0 0.5rem 1rem;
  }
  .nav__menu > li.is-open .dropdown {
    display: block !important;
    padding: 8px 0;
    margin-top: 4px;
  }

  /* Sub-dropdowns on mobile: show below parent, not to the right */
  .dropdown__sub {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    box-shadow: none !important;
    border: none !important;
    background: #eaf0ea !important;
    border-radius: 6px !important;
    margin-top: 0.25rem !important;
    margin-left: 1rem !important;
    width: calc(100% - 1rem) !important;
    padding: 0.25rem !important;
    pointer-events: auto !important;
  }
  .dropdown__group.is-open .dropdown__sub {
    display: block !important;
  }

  /* Hero */
  .hero { background-attachment: scroll; min-height: 100svh; }
  .hero__content { padding: 2rem 0; max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Section padding */
  .section { padding: 3rem 0; }
  .section--lg { padding: 4rem 0; }

  /* Prevent iOS auto-zoom on form focus */
  input, select, textarea { font-size: 16px !important; }

  /* ── STAPPENPLAN — numbered steps ── */
  .stappenplan,
  .steps,
  .process-steps,
  .stappen {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .stap,
  .step,
  .process-step,
  .stappenplan li,
  .steps li {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 0 !important;
    margin-left: 0 !important;
    position: relative !important;
  }

  .stap-nummer,
  .step-number,
  .step__number,
  .stap__nummer,
  [class*="step-num"],
  [class*="stap-num"] {
    min-width: 40px !important;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    border-radius: 50% !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
  }

  .stap-content,
  .step-content,
  .step__content,
  .stap__content {
    flex: 1 !important;
    min-width: 0 !important;
  }

  /* Ordered list fallback — restore indent stripped by CSS reset */
  ol {
    padding-left: 1.5rem !important;
  }
  ol li {
    padding-left: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  /* ── GRID LAYOUTS → SINGLE COLUMN ── */

  /* Service cards — 1 per row */
  .services-grid,
  .service-cards,
  .zorgaanbod-grid,
  .cards-grid,
  .diensten-grid,
  [class*="grid"],
  [class*="cards"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* All 2 and 3 column layouts → 1 column */
  .col-2,
  .col-3,
  .two-col,
  .three-col,
  .grid-2,
  .grid-3,
  .about-grid,
  .services-intro,
  .partner-split,
  .contact-grid,
  .vacature-grid,
  .stats-grid,
  .footer__grid,
  .footer__columns {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Flex rows → column */
  .flex-row,
  .row,
  .pills,
  .about__pillars,
  .tag-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  /* Cards full width */
  .service-card,
  .card,
  .vacature-card,
  .dienst-card,
  [class*="card"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Stats row → 2-up grid */
  .stats,
  .stats-row,
  .numbers-row,
  [class*="stat"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
}

/* ── TABLET ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid .cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── FEATURE LIST (bullet points) ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(27,43,59,0.06);
}
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 0.6rem;
}

/* ── NAV LOGO mobile ── */
@media (max-width: 480px) {
  .nav__logo-text { font-size: 1.4rem; }
  .nav__logo img { height: 1.5rem; }
}

/* ── HIDE Zorgbemiddeling on mobile ── */
@media (max-width: 768px) {
  .nav__cta .btn--nav-outline { display: none; }
  .nav__cta .btn--nav { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
}

/* ── IMAGES responsive ── */
img { max-width: 100%; height: auto; }
