/* =====================================================================
   FysioNext Fysiotherapie, hoofdstijl
   Eén gedeeld CSS-bestand voor de hele site.
   Mobile-first, vanilla CSS, geen build-stap.
   =====================================================================
   INHOUD
   1.  Designtokens (kleuren, typografie, ruimte) in :root
   2.  Reset & basis
   3.  Typografie & helpers
   4.  Knoppen
   5.  Layout: container, secties, grid
   6.  Announcement-bar
   7.  Header & navigatie
   8.  Footer
   9.  Componenten (kaarten, badges, accordion, tabellen, formulier)
   10. Pagina-specifiek (hero, etc.)
   11. Toegankelijkheid & reduced motion
   ===================================================================== */

/* === 1. DESIGNTOKENS ================================================ */
:root {
  /* Huisstijlkleuren (uit het logo) */
  --marine: #133B63;        /* primair  */
  --marine-donker: #0F2740; /* donkere tekst / diepe vlakken */
  --hemel: #3FA9E0;         /* accent   */
  --hemel-donker: #2B86B8;  /* accent voor kleine tekst op wit (contrast) */
  --grijs-label: #8A98A6;   /* subtitels / labels */

  /* Neutralen */
  --wit: #ffffff;
  --licht: #F4F7FA;         /* zachte achtergrond */
  --licht-2: #E8EEF4;       /* randen / scheidingen */
  --tekst: #0F2740;         /* bodytekst */
  --tekst-zacht: #4A5b6b;   /* secundaire tekst */

  /* Functioneel */
  --succes: #1f7a4d;
  --fout: #b4232a;

  /* Typografie */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Ruimte (schaal) */
  --ruimte-xs: 0.5rem;
  --ruimte-sm: 1rem;
  --ruimte-md: 1.5rem;
  --ruimte-lg: 2.5rem;
  --ruimte-xl: 4rem;
  --ruimte-2xl: 6rem;

  /* Vormtaal */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Schaduwen (zacht) */
  --schaduw-sm: 0 2px 8px rgba(15, 39, 64, 0.06);
  --schaduw: 0 8px 28px rgba(15, 39, 64, 0.10);
  --schaduw-lg: 0 18px 48px rgba(15, 39, 64, 0.14);

  /* Layout */
  --max-breedte: 1140px;
  --header-hoogte: 72px;
}

/* === 2. RESET & BASIS ============================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Voorkom dat sticky header op #anchor-links de titel afsnijdt */
  scroll-padding-top: calc(var(--header-hoogte) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--tekst);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--hemel-donker); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--marine); }

/* === 3. TYPOGRAFIE ================================================= */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--marine);
  margin: 0 0 var(--ruimte-sm);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 var(--ruimte-sm); }
p:last-child { margin-bottom: 0; }

/* Label / kicker: uppercase, ruime spacing, grijs */
.label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grijs-label);
  margin-bottom: var(--ruimte-xs);
}
.label--op-marine { color: var(--grijs-label); }

.lead { font-size: 1.2rem; color: var(--tekst-zacht); }

/* Kleine plaatsregel bovenin de H1 (ziet eruit als .label, maar telt mee als H1-tekst voor SEO) */
.h1-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grijs-label);
  margin-bottom: 0.5rem;
}

.tekst-centreren { text-align: center; }
.tekst-zacht { color: var(--tekst-zacht); }

/* Pijl-omhoog accent (verwijzing naar het beeldmerk) */
.pijl-accent::before {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid var(--hemel);
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* === 4. KNOPPEN =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primair { background: var(--hemel); color: var(--marine-donker); box-shadow: var(--schaduw-sm); }
.btn--primair:hover { background: var(--hemel-donker); color: var(--wit); box-shadow: var(--schaduw); }

.btn--marine { background: var(--marine); color: var(--wit); }
.btn--marine:hover { background: var(--marine-donker); color: var(--wit); }

.btn--outline { background: transparent; color: var(--marine); border-color: var(--marine); }
.btn--outline:hover { background: var(--marine); color: var(--wit); }

/* Outline-variant op donkere achtergrond */
.btn--outline-wit { background: transparent; color: var(--wit); border-color: rgba(255,255,255,0.6); }
.btn--outline-wit:hover { background: var(--wit); color: var(--marine); border-color: var(--wit); }

.btn--breed { width: 100%; }

/* === 5. LAYOUT ==================================================== */
.container {
  width: 100%;
  max-width: var(--max-breedte);
  margin-inline: auto;
  padding-inline: var(--ruimte-md);
}
.container--smal { max-width: 760px; }

.sectie { padding-block: var(--ruimte-xl); }
.sectie--licht { background: var(--licht); }
.sectie--marine { background: var(--licht); color: var(--tekst); }
.sectie--marine h1, .sectie--marine h2, .sectie--marine h3 { color: var(--marine); }

.sectie-kop { max-width: 680px; margin-bottom: var(--ruimte-lg); }
.sectie-kop.tekst-centreren { margin-inline: auto; }

.grid { display: grid; gap: var(--ruimte-md); }
@media (min-width: 600px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Twee kolommen: tekst + beeld */
.split {
  display: grid;
  gap: var(--ruimte-lg);
  align-items: center;
}
@media (min-width: 850px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--ruimte-xl); }
  .split--beeld-eerst .split__beeld { order: -1; }
}
.split__beeld img {
  border-radius: var(--radius-lg);
  box-shadow: var(--schaduw);
  width: 100%;
  object-fit: cover;
}

/* === 6. ANNOUNCEMENT-BAR ========================================= */
.announcement {
  position: relative;
  background: #CE1B27;            /* opvallend rood, maakt de openingsdatum goed zichtbaar */
  color: var(--wit);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0.8rem var(--ruimte-md);
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(206, 27, 39, 0.35);
}
.announcement strong { color: var(--wit); font-weight: 800; }
.announcement a { color: var(--wit); text-decoration: underline; font-weight: 800; }
.announcement a:hover { color: var(--wit); opacity: 0.85; }
/* Knipperend "live" stipje vóór de tekst trekt de aandacht */
.announcement > span::before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: #fff;
  vertical-align: middle;
  animation: ann-pulse 1.6s ease-in-out infinite;
}
@keyframes ann-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  50%      { transform: scale(1.25); opacity: 0.7; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* === 7. HEADER & NAVIGATIE ======================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--licht-2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-md);
  min-height: var(--header-hoogte);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 40px; width: auto; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--marine); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hoofdmenu { display: flex; align-items: center; gap: var(--ruimte-md); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--ruimte-md);
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--marine);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--hemel-donker); }
.nav-links a.is-actief { border-bottom-color: var(--hemel); }

/* Dropdown-submenu onder "Therapieën" */
.nav-links .has-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; }
.nav-dropdown-toggle::after {
  content: "";
  width: 6px; height: 6px;
  margin-left: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}
.nav-dropdown { list-style: none; margin: 0; padding: 0; }

@media (min-width: 881px) {
  .nav-dropdown {
    position: absolute;
    top: 100%; left: -0.5rem;
    min-width: 250px;
    background: var(--wit);
    border: 1px solid var(--licht-2);
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    padding: 0.4rem;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 60;
  }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .has-dropdown:hover .nav-dropdown-toggle::after,
  .has-dropdown:focus-within .nav-dropdown-toggle::after {
    transform: rotate(-135deg) translateY(0);
  }
  .nav-dropdown li { margin: 0; }
  .nav-dropdown a {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    border-bottom: 0;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .nav-dropdown a:hover,
  .nav-dropdown a.is-actief { background: var(--licht); color: var(--hemel-donker); border-bottom: 0; }
}

@media (max-width: 880px) {
  .nav-dropdown { padding-left: 0.75rem; }
  .nav-dropdown a { padding: 0.7rem 0.5rem; font-size: 0.95rem; color: var(--tekst-zacht); }
  .nav-dropdown-toggle::after { display: none; }
}

/* Sub-items in de dropdown (onder Sportblessures) */
.nav-dropdown .sub a { padding-left: 1.8rem; font-size: 0.9rem; }
.nav-dropdown .sub a::before { content: "\2023\00a0"; color: var(--hemel-donker); }

/* Mobiel: menu inklapbaar */
@media (max-width: 880px) {
  .hoofdmenu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--wit);
    border-bottom: 1px solid var(--licht-2);
    box-shadow: var(--schaduw);
    padding: var(--ruimte-sm);
    display: none;
  }
  .hoofdmenu.is-open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 0.85rem 0.5rem; border-bottom: 0; }
  .nav-links a.is-actief { border-bottom: 0; color: var(--hemel-donker); }
  .hoofdmenu .btn { margin-top: var(--ruimte-sm); }
}
@media (min-width: 881px) {
  .nav-toggle { display: none; }
}

/* === 8. FOOTER =================================================== */
.site-footer {
  background: var(--marine);
  color: rgba(255, 255, 255, 0.82);
  padding-block: var(--ruimte-xl) var(--ruimte-lg);
  font-size: 0.95rem;
}
.site-footer a { color: var(--wit); }
.footer-grid {
  display: grid;
  gap: var(--ruimte-lg);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand img { height: 38px; margin-bottom: var(--ruimte-sm); }
.site-footer h4 { color: var(--wit); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-bodem {
  margin-top: var(--ruimte-lg);
  padding-top: var(--ruimte-md);
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-sm);
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* === 9. COMPONENTEN ============================================== */

/* USP-badges */
.badges {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--licht);
  border: 1px solid var(--licht-2);
  border-radius: var(--radius-pill);
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--marine);
}
.badges li::before {
  content: "";
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--hemel);
  flex: none;
}
/* Badges op donkere achtergrond */
.badges--op-marine li {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--wit);
}

/* Kaart */
.kaart {
  background: var(--wit);
  border: 1px solid var(--licht-2);
  border-radius: var(--radius);
  padding: var(--ruimte-lg);
  box-shadow: var(--schaduw-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.kaart--link:hover { transform: translateY(-4px); box-shadow: var(--schaduw); }
.kaart h3 { margin-bottom: 0.5rem; }
.kaart__icoon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--licht);
  border-radius: var(--radius-sm);
  margin-bottom: var(--ruimte-sm);
}
.kaart__icoon img { width: 30px; height: 30px; }
.kaart__meer {
  margin-top: auto;
  padding-top: var(--ruimte-sm);
  font-weight: 800;
  text-decoration: none;
  color: var(--hemel-donker);
}
.kaart__meer:hover { color: var(--marine); }
.kaart__meer::after { content: " →"; }

/* Kaart met foto bovenaan (therapie-overzicht + "andere therapieën") */
.kaart--foto { padding: 0; overflow: hidden; }
.kaart__foto { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.kaart--foto .kaart__body { padding: var(--ruimte-lg); display: flex; flex-direction: column; flex: 1 1 auto; }
.kaart--foto .kaart__body h3 { margin-bottom: 0.5rem; }

/* "Waarom"-lijst met vinkjes / pijl-accent */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--hemel);
}
.checklist strong { color: var(--marine); }
.checklist--op-marine strong { color: var(--wit); }

/* Tabellen (openingstijden / tarieven) */
.tabel {
  width: 100%;
  border-collapse: collapse;
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw-sm);
  border: 1px solid var(--licht-2);
}
.tabel th, .tabel td {
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--licht-2);
}
.tabel tr:last-child th, .tabel tr:last-child td { border-bottom: 0; }
.tabel thead th {
  background: var(--licht);
  color: var(--marine);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tabel tbody th { font-weight: 700; color: var(--marine); }
.tabel td { color: var(--tekst-zacht); }
.tabel .is-gesloten { color: var(--grijs-label); }
.tabel .todo { color: var(--fout); font-weight: 700; }

/* Notitie / let-op-blok */
.notitie {
  background: var(--licht);
  border-left: 4px solid var(--hemel);
  border-radius: var(--radius-sm);
  padding: var(--ruimte-md);
  font-size: 0.98rem;
}
.notitie strong { color: var(--marine); }

/* Accordion (FAQ) */
.accordion { border: 1px solid var(--licht-2); border-radius: var(--radius); overflow: hidden; background: var(--wit); box-shadow: var(--schaduw-sm); }
.accordion__item { border-bottom: 1px solid var(--licht-2); }
.accordion__item:last-child { border-bottom: 0; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-sm);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--marine);
  padding: 1.15rem var(--ruimte-md);
}
.accordion-trigger:hover { background: var(--licht); }
.accordion-trigger .pijl {
  flex: none;
  width: 14px; height: 14px;
  border-right: 2px solid var(--hemel-donker);
  border-bottom: 2px solid var(--hemel-donker);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.accordion-trigger[aria-expanded="true"] .pijl { transform: rotate(-135deg); }
.accordion__paneel { padding: 0 var(--ruimte-md) var(--ruimte-md); color: var(--tekst-zacht); }
.accordion__paneel p:first-child { margin-top: 0; }

/* === Formulier =================================================== */
.form { display: grid; gap: var(--ruimte-md); }
.form-rij { display: grid; gap: var(--ruimte-md); }
@media (min-width: 600px) { .form-rij--2 { grid-template-columns: 1fr 1fr; } }
.veld { display: grid; gap: 0.4rem; }
.veld label { font-weight: 700; color: var(--marine); font-size: 0.95rem; }
.veld .verplicht { color: var(--fout); }
.veld input, .veld select, .veld textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--tekst);
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--licht-2);
  border-radius: var(--radius-sm);
  background: var(--wit);
  width: 100%;
}
.veld textarea { resize: vertical; min-height: 130px; }
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none;
  border-color: var(--hemel);
  box-shadow: 0 0 0 3px rgba(63, 169, 224, 0.2);
}
.veld--akkoord { grid-template-columns: auto 1fr; align-items: start; gap: 0.6rem; }
.veld--akkoord input { width: auto; margin-top: 0.3rem; }
.veld--akkoord label { font-weight: 500; color: var(--tekst-zacht); font-size: 0.92rem; }

/* Honeypot, onzichtbaar voor mensen, zichtbaar voor bots */
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status { border-radius: var(--radius-sm); padding: var(--ruimte-sm) var(--ruimte-md); font-weight: 700; }
.form-status--bezig { background: var(--licht); color: var(--marine); }
.form-status--succes { background: #e6f4ec; color: var(--succes); }
.form-status--fout { background: #fbeaea; color: var(--fout); }

.form-fallback {
  background: var(--licht);
  border: 1px dashed var(--hemel);
  border-radius: var(--radius);
  padding: var(--ruimte-lg);
  text-align: center;
}

/* Telefoon "volgt" weergave */
.is-onbekend { color: var(--grijs-label); font-style: italic; }

/* Contactgegevens-lijst */
.contact-lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--ruimte-md); }
.contact-lijst li { display: grid; grid-template-columns: auto 1fr; gap: var(--ruimte-sm); align-items: start; }
.contact-lijst .ico {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  background: var(--licht); border-radius: var(--radius-sm);
  color: var(--hemel-donker);
}
.contact-lijst .ico svg { width: 22px; height: 22px; }
.contact-lijst strong { display: block; color: var(--marine); }

/* Ingesloten kaart */
.map-embed {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--schaduw);
}

/* === 10. HERO ==================================================== */
.hero {
  position: relative;
  background: var(--licht);
  color: var(--tekst);
  overflow: hidden;
  border-bottom: 1px solid var(--licht-2);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: var(--ruimte-lg); align-items: center; padding-block: var(--ruimte-xl); }
@media (min-width: 850px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--ruimte-xl); } }
.hero h1 { color: var(--marine); }
.hero p { color: var(--tekst-zacht); }
.hero .label { color: var(--grijs-label); }
.hero-acties { display: flex; flex-wrap: wrap; gap: var(--ruimte-sm); margin-top: var(--ruimte-md); }
.hero-note { margin-top: var(--ruimte-md); font-size: 0.95rem; color: var(--tekst-zacht); display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__beeld img { border-radius: var(--radius-lg); box-shadow: var(--schaduw-lg); width: 100%; }

/* Compacte pagina-hero (binnenpagina's) */
.pagina-hero {
  background: var(--licht);
  color: var(--tekst);
  padding-block: var(--ruimte-xl);
  border-bottom: 1px solid var(--licht-2);
}
.pagina-hero h1 { color: var(--marine); margin-bottom: 0.5rem; }
.pagina-hero p { color: var(--tekst-zacht); max-width: 640px; }
.pagina-hero .label { color: var(--grijs-label); }

/* Kruimelpad */
.kruimel { font-size: 0.85rem; color: var(--grijs-label); margin-bottom: var(--ruimte-sm); }
.kruimel a { color: var(--hemel-donker); }

/* CTA-band */
.cta-band { background: var(--licht); color: var(--tekst); text-align: center; border-top: 1px solid var(--licht-2); }
.cta-band h2 { color: var(--marine); }
.cta-band p { color: var(--tekst-zacht); max-width: 560px; margin-inline: auto; }
.cta-band .btn--marine { margin-top: var(--ruimte-md); }

/* Teamkaart */
.team-kaart { display: grid; gap: var(--ruimte-lg); align-items: center; }
@media (min-width: 700px) { .team-kaart { grid-template-columns: 220px 1fr; } }
.team-kaart img { border-radius: var(--radius-lg); box-shadow: var(--schaduw); width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-rol { color: var(--grijs-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }

/* Zorgverzekeraars (tekstueel) */
.verzekeraars { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: var(--ruimte-md) 0 0; padding: 0; }
.verzekeraars li { background: var(--licht); border: 1px solid var(--licht-2); border-radius: var(--radius-pill); padding: 0.45rem 1rem; font-weight: 700; font-size: 0.9rem; color: var(--marine); }

/* === 11. TOEGANKELIJKHEID ======================================= */
.skip-link {
  position: absolute;
  left: 0; top: -60px;
  background: var(--marine);
  color: var(--wit);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* Zichtbare focus voor toetsenbordgebruikers */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--hemel);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .btn:hover, .kaart--link:hover { transform: none; }
}

/* === 12. VRAAG-ASSISTENT (chatwidget) ============================ */
.va-knop {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--marine);
  color: var(--wit);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--schaduw);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.va-knop:hover { background: var(--marine-donker); transform: translateY(-2px); }

.va-paneel {
  position: fixed;
  right: 1.25rem; bottom: 5.75rem;
  z-index: 90;
  width: min(360px, calc(100vw - 2.5rem));
  max-height: min(540px, calc(100vh - 8rem));
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--licht-2);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-lg);
  overflow: hidden;
}
.va-paneel[hidden] { display: none; }

.va-kop {
  position: relative;
  background: var(--marine);
  color: var(--wit);
  padding: 0.85rem 3rem 0.85rem 1rem;
}
.va-kop strong { display: block; font-size: 1rem; }
.va-sub { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.va-sluit {
  position: absolute;
  right: 0.5rem; top: 0.5rem;
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  color: var(--wit);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.va-sluit:hover { background: rgba(255,255,255,0.15); }

.va-berichten {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--licht);
  min-height: 140px;
}
.va-bericht {
  max-width: 88%;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.5;
}
.va-bericht--bot {
  align-self: flex-start;
  background: var(--wit);
  border: 1px solid var(--licht-2);
  border-bottom-left-radius: var(--radius-sm);
  color: var(--tekst);
}
.va-bericht--gebruiker {
  align-self: flex-end;
  background: var(--marine);
  color: var(--wit);
  border-bottom-right-radius: var(--radius-sm);
}

.va-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.6rem 1rem 0.2rem;
  background: var(--wit);
}
.va-chip {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--marine);
  background: var(--licht);
  border: 1px solid var(--licht-2);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem;
  cursor: pointer;
}
.va-chip:hover { background: var(--licht-2); }

.va-invoer {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  background: var(--wit);
}
.va-invoer input {
  flex: 1 1 auto;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--licht-2);
  border-radius: var(--radius-sm);
}
.va-invoer input:focus {
  outline: none;
  border-color: var(--hemel);
  box-shadow: 0 0 0 3px rgba(63, 169, 224, 0.2);
}
.va-invoer .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }

@media (max-width: 480px) {
  .va-paneel { right: 0.75rem; left: 0.75rem; width: auto; }
  .va-knop { right: 0.75rem; bottom: 0.75rem; }
}
