/* =============================================================
   De Wondzusters — stylesheet
   Een lichtgewicht design-systeem op basis van CSS custom properties.
   Pas de kleuren hieronder aan om de hele site in één keer te restylen.
   ============================================================= */

:root {
  /* Merkkleuren — afgeleid van het logo (groene pleister) */
  --brand:        #00723E;  /* logo-groen: knoppen, accenten            */
  --brand-dark:   #005A31;  /* header, footer, hover-states             */
  --brand-darker: #013d22;  /* diepste groen voor verlopen             */
  --brand-tint:   #eaf4ee;  /* zachte groene sectie-achtergrond        */
  --brand-tint-2: #f5faf7;  /* nóg lichtere tint                       */

  /* Neutralen */
  --ink:   #16271f;   /* koppen (groenig houtskool) */
  --text:  #686d67;   /* lopende tekst (neutraal grijs)  */
  --muted: #6b766f;   /* bijschriften / meta        */
  --line:  #e2ebe5;   /* randen / scheidingslijnen  */
  --white: #ffffff;

  /* Vormgeving */
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(1, 61, 34, 0.08);
  --shadow-lg: 0 18px 50px rgba(1, 61, 34, 0.14);
  --maxw:      1140px;
  --header-h:  76px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

/* ---------- Reset / basis ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

ul { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin-bottom: .4rem; }

/* ---------- Layout-helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--tint   { background: var(--brand-tint); }
.section--tint-2 { background: var(--brand-tint-2); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6rem;
}

.text-center { text-align: center; }

/* Leesbare tekstbreedte voor lopende tekst binnen een brede container */
.measure { max-width: 760px; margin-inline: auto; }
.mb-0 { margin-bottom: 0; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 114, 62, .25);
}
.btn--primary:hover { background: var(--brand-dark); }

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover { background: var(--brand); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--brand-dark);
}
.btn--white:hover { background: #f0f7f3; }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}
.btn--outline-white:hover { background: rgba(255, 255, 255, .12); }

/* =============================================================
   HEADER + NAVIGATIE
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-dark);
  color: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, .18); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand img {
  height: 53px;          /* 20% groter dan 44px */
  width: 53px;
  background: var(--white);
  border-radius: 8px;    /* vierkant (met zachte hoeken) i.p.v. rond */
  padding: 5px;
}
.brand span small {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .75);
}

/* Navigatielijst */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li { margin: 0; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .9rem;
  color: rgba(255, 255, 255, .92);
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  text-decoration: none;
}
.nav-link .caret {
  width: 12px; height: 12px;
  transition: transform .2s ease;
}

.nav-cta { margin-left: .5rem; }

/* ---------- Dropdown ---------- */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
/* Desktop: open op hover én op toetsenbord-focus */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-menu li { margin: 0; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
}
.dropdown-menu a:hover {
  background: var(--brand-tint);
  color: var(--brand-dark);
  text-decoration: none;
}
.dropdown-menu a svg { color: var(--brand); flex: 0 0 auto; }

/* Hamburger (alleen mobiel zichtbaar) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-darker) 100%);
  color: var(--white);
  overflow: hidden;
  /* Zwarte ondergloed onder alle hero-tekst — erft naar h1, eyebrow, lead, links */
  text-shadow: 0 2px 18px rgba(0, 0, 0, .60), 0 1px 3px rgba(0, 0, 0, .45);
}
.hero::after {            /* subtiel logo-watermerk */
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 460px;
  height: 460px;
  background: url("../images/logo.png") no-repeat center / contain;
  opacity: .06;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  max-width: 820px;
}
.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .9);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}
/* Knoppen in de hero erven geen ondergloed — die hoort alleen bij tekst */
.hero .btn { text-shadow: none; }

/* Compacte hero voor binnenpagina's */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
  color: var(--white);
  text-align: center;
  padding: clamp(54px, 8vw, 90px) 0;
  /* Zwarte ondergloed onder alle hero-tekst — erft naar h1, breadcrumb, lead, links */
  text-shadow: 0 2px 18px rgba(0, 0, 0, .60), 0 1px 3px rgba(0, 0, 0, .45);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.88); max-width: 640px; margin-inline: auto; }
.breadcrumb { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: .6rem; }
.breadcrumb a { color: rgba(255,255,255,.85); }

/* Extra-compacte variant: alleen titel zichtbaar zodat de content boven de vouw verschijnt */
.page-hero--compact { padding: 24px 0; }
.page-hero--compact h1 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* =============================================================
   KAARTEN / GRIDS
   ============================================================= */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cfe2d6; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--text); margin-bottom: 1.1rem; }

.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; }

.card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.card-link:hover { gap: .6rem; }

/* Waarom-kiezen-voor-ons rij (compactere kaart) */
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature .card-icon { margin-bottom: 0; flex: 0 0 auto; width: 48px; height: 48px; }
.feature h3 { font-size: 1.1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .97rem; }

/* =============================================================
   SPLIT (tekst + visueel)
   ============================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split--reverse .split-media { order: -1; }
.split-media {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  border-radius: var(--radius);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/logo.png") no-repeat center / 45%;
  opacity: .18;
}

/* Lijstje met vinkjes */
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .8rem;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300723E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Stappen (genummerd proces) */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  position: relative;
  padding-left: 64px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
}
.step h3 { margin-bottom: .25rem; }

/* =============================================================
   CTA-BAND
   ============================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 1.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact-item .card-icon { margin-bottom: 0; width: 46px; height: 46px; flex: 0 0 auto; }
.contact-item h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.contact-item a, .contact-item p { margin: 0; color: var(--text); }

.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .35rem;
  font-size: .95rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
/* Selectvak: eigen groene pijl zodat het bij de inputs past */
.form-field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300723E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 114, 62, .12);
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.map-embed {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--brand-darker);
  color: rgba(255, 255, 255, .78);
  padding: 64px 0 28px;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--white); }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand img { height: 42px; width: 42px; background: #fff; border-radius: 8px; padding: 5px; }
.footer-brand strong { color: var(--white); font-size: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links .is-pending { color: rgba(255, 255, 255, .5); }
.footer-links .is-pending small { font-size: .82em; opacity: .85; margin-left: .25em; font-weight: 400; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  /* Mobiel menu: uitklappend paneel onder de header */
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--brand-dark);
    padding: 12px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform .28s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,.25);
  }
  .nav-menu.is-open { transform: translateY(0); }

  .nav-link { padding: .85rem 1rem; border-radius: 8px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* Dropdown wordt accordeon op mobiel */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.06);
    padding: 4px 4px 8px 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .dropdown.is-open .dropdown-menu { max-height: 400px; }
  .dropdown-menu a { color: rgba(255,255,255,.9); }
  .dropdown-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .dropdown-menu a svg { color: rgba(255,255,255,.7); }
  .dropdown:hover .caret { transform: none; }
  .dropdown.is-open .caret { transform: rotate(180deg); }
}

@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .grid--2, .grid--3, .grid--4, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .brand span small { display: none; }
}

/* =============================================================
   DOELGROEP-SCHAKELAAR (cliënten / zorgorganisaties)
   ============================================================= */
.audience-switch { display: flex; justify-content: center; margin: 0 auto 8px; }
.audience-switch .seg {
  display: inline-flex;
  background: var(--brand-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}
.audience-switch button {
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 600;
  padding: .65rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.audience-switch button:hover { color: var(--brand); }
.audience-switch button.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 114, 62, .25);
}

/* Panelen: standaard verborgen; het actieve (cliënten in de HTML) toont.
   Zo zien bezoekers zonder JS meteen inhoud — geen lege pagina. */
.audience-panel { display: none; }
.audience-panel.is-active { display: block; animation: audienceFade .25s ease; }
@keyframes audienceFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .audience-switch .seg { width: 100%; }
  .audience-switch button { flex: 1; padding: .65rem .4rem; }
}

/* Toegankelijkheid: respecteer 'reduce motion' */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto; }
}

/* Home hero met foto als achtergrond (background-image shorthand + !important = kogelvrij) */
.hero--home {
  position: relative !important;
  background: url('../images/hero-home.jpg') center/cover no-repeat !important;
  min-height: clamp(460px, 64vh, 640px) !important;
  display: flex !important;
  align-items: center !important;
}
.hero--home .hero-bg { display: none !important; }   /* <img> niet meer nodig */
.hero--home::after { display: none !important; }     /* logo-watermark uit */
.hero--home .container { position: relative; z-index: 2; }

/* Indicaties hero met foto-achtergrond
   (text-shadow erft van .page-hero — geen aparte regel meer nodig) */
.hero--indicaties {
  position: relative !important;
  background: url('../images/hero-indicaties.jpg') center 30%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--indicaties::after { display: none !important; }
.hero--indicaties .container { position: relative; z-index: 2; }

/* Wondzorg hero met foto-achtergrond
   (text-shadow erft van .page-hero — geen aparte regel meer nodig) */
.hero--wondzorg {
  position: relative !important;
  background: url('../images/hero-wondzorg.jpg') center 20%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--wondzorg::after { display: none !important; }
.hero--wondzorg .container { position: relative; z-index: 2; }

/* Scholing hero met foto-achtergrond
   (text-shadow erft van .page-hero — geen aparte regel meer nodig) */
.hero--scholing {
  position: relative !important;
  background: url('../images/Scholing.png') center 30%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--scholing::after { display: none !important; }
.hero--scholing .container { position: relative; z-index: 2; }

/* Zorg hero met foto-achtergrond
   (text-shadow erft van .page-hero) */
.hero--zorg {
  position: relative !important;
  background: url('../images/ChatGPT Image 1 jun 2026, 12_23_09.png') center 35%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--zorg::after { display: none !important; }
.hero--zorg .container { position: relative; z-index: 2; }

/* Over ons-subpagina's met foto-achtergrond
   (text-shadow erft van .page-hero) */
.hero--klanttevredenheid {
  position: relative !important;
  background: url('../images/Klanttevredenheid.png') center 30%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--klanttevredenheid::after { display: none !important; }
.hero--klanttevredenheid .container { position: relative; z-index: 2; }

.hero--klachtenprocedure {
  position: relative !important;
  background: url('../images/Klachtenprocedure.png') center 30%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--klachtenprocedure::after { display: none !important; }
.hero--klachtenprocedure .container { position: relative; z-index: 2; }

.hero--werkwijze {
  position: relative !important;
  background: url('../images/Onze werkwijze.png') center 30%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--werkwijze::after { display: none !important; }
.hero--werkwijze .container { position: relative; z-index: 2; }

/* Over ons-hero met teamfoto — 'center 25%' houdt de gezichten in beeld */
.hero--over-ons {
  position: relative !important;
  background: url('../images/Overons.png') center 25%/cover no-repeat !important;
  display: flex !important;
  align-items: center !important;
}
.hero--over-ons::after { display: none !important; }
.hero--over-ons .container { position: relative; z-index: 2; }

/* Kleine teksten in heroes in brand-donkergroen — h1 blijft wit.
   Op foto-hero's geeft dit on-brand contrast met de lichte achtergrond;
   op gradient-hero's (over-ons, diensten, contact) wordt het bewust subtiel. */
.hero .eyebrow,
.hero p.lead,
.page-hero p,
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: #75A891;
  text-shadow: none;
}

/* =============================================================
   AANGESLOTEN PARTNERS
   ============================================================= */
.partners { text-align: center; }
.partners .eyebrow { display: block; margin-bottom: 1.5rem; }
.partners-row { display: flex; justify-content: center; }
.partners-row img { max-height: 64px; width: auto; max-width: 100%; }

.footer-partner { display: inline-block; margin-top: 1.25rem; }
.footer-partner img { height: 46px; width: auto; }

.footer-zorgkaart { display: inline-block; margin-top: 1.5rem; background: #fff; padding: 10px 14px; border-radius: 10px; line-height: 0; }
.footer-zorgkaart img { height: 40px; width: auto; }