/* ==========================================================================
   BetterPelvi.Amsterdam — design system ("Natuurlijk Herstel" groen palet)
   ========================================================================== */

:root {
  /* Primair: salie-groen (het gekozen "Natuurlijk Herstel"-palet) */
  --primary: #3d6b5d;
  --primary-dark: #2f5347;
  --primary-darker: #234038;
  --primary-light: #e6f0ec;
  --accent: #8fb5a3;
  --accent-dark: #6b9683;
  --accent-light: #eef5f1;

  /* Secundair: warme klei/terracotta — doorbreekt bewust het "alles-is-groen"-gevoel,
     gebruikt voor iconen, ribbons en accentdetails naast het primaire groen. */
  --secondary: #b8734a;
  --secondary-dark: #96593a;
  --secondary-light: #f7ebe0;

  /* Tertiair: diep bosgroen-teal — voor donkere vlakken (footer/cta) i.p.v. steeds
     dezelfde primary-darker, en voor een derde iconkleur. */
  --tertiary: #2b5566;
  --tertiary-dark: #1f3f4d;
  --tertiary-light: #e6eef1;

  --coral: #d9a05b;

  --ink: #1e2b26;
  --ink-soft: #4f6058;
  --ink-faint: #85958d;
  --bg: #ffffff;
  --bg-soft: #f9f7f2;
  --bg-warm: #f6f0e6;
  --bg-soft-2: #eef3ef;
  --border: #e0e2da;
  --border-soft: #eef1ea;

  --green: #3a8a5e;
  --green-bg: #e7f5ec;
  --amber: #b8823b;
  --amber-bg: #faf1e2;
  --red: #c0463a;
  --red-bg: #fbeae8;
  --privacy: #3d6e8f;
  --privacy-bg: #e8f1f6;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(30, 43, 38, 0.06);
  --shadow: 0 10px 28px rgba(30, 43, 38, 0.09);
  --shadow-lg: 0 28px 70px rgba(30, 43, 38, 0.18);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 16px;
}
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.18; margin: 0 0 18px; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2rem, 3.4vw, 2.95rem); line-height: 1.22; font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.25rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 16px; color: var(--ink-soft); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 0; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: var(--primary-dark);
  background: var(--primary-light); padding: 7px 14px 7px 10px; border-radius: 999px;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.07em;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--secondary); }
.eyebrow.tone-secondary { color: var(--secondary-dark); background: var(--secondary-light); }
.eyebrow.tone-secondary .eyebrow-dot { background: var(--secondary-dark); }
.eyebrow.tone-tertiary { color: var(--tertiary); background: var(--tertiary-light); }
.eyebrow.tone-tertiary .eyebrow-dot { background: var(--tertiary); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.005em;
  border: 1.5px solid transparent; transition: all 0.18s ease; white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 18px rgba(47, 83, 71, 0.25); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(47, 83, 71, 0.32); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost-light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.24); }
.btn-accent { background: var(--secondary); color: #fff; }
.btn-accent:hover { background: var(--secondary-dark); }
.btn-danger { background: var(--red-bg); color: var(--red); }
.btn-danger:hover { background: #fbdada; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---------- navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-soft);
}
.navbar__inner { max-width: var(--container); margin: 0 auto; padding: 15px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.navbar__logo { display: flex; align-items: center; gap: 10px; color: var(--ink); min-width: 0; flex-shrink: 0; font-size: 1.12rem; }
.navbar__logo span:last-child { white-space: nowrap; }
.navbar__logo-mark {
  width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--tertiary));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.08rem; font-weight: 800; flex-shrink: 0;
}
.navbar__links { display: flex; align-items: center; gap: 15px; flex-shrink: 1; min-width: 0; }
.navbar__links a { font-weight: 600; font-size: 0.86rem; color: var(--ink-soft); transition: color 0.15s; white-space: nowrap; }
.navbar__links a:hover, .navbar__links a.active { color: var(--primary); }
.navbar__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar__cta-short { display: none; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.navbar__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.navbar__mobile { display: none; flex-direction: column; padding: 8px 24px 20px; gap: 4px; border-top: 1px solid var(--border-soft); }
.navbar__mobile a { padding: 12px 4px; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--border-soft); }
.navbar__mobile a.active { color: var(--primary); }
.navbar.is-open .navbar__mobile { display: flex; }

@media (max-width: 1180px) {
  /* Korte CTA-tekst eerder tonen: scheelt circa 100px in de balk, zodat de
     volledige navigatie langer past voordat de hamburger nodig is. */
  .navbar__cta-full { display: none; }
  .navbar__cta-short { display: inline; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__right .btn-secondary { display: none; }
  .navbar__burger { display: flex; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: 84px 0 100px; overflow: hidden; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 340px); }
.hero__mesh { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__mesh span { position: absolute; border-radius: 50%; filter: blur(96px); opacity: 0.18; }
.hero__mesh span:nth-child(1) { width: 440px; height: 440px; background: var(--primary); top: -170px; right: -110px; }
.hero__mesh span:nth-child(2) { width: 320px; height: 320px; background: var(--tertiary); top: 140px; left: -150px; opacity: 0.1; }
.hero__mesh span:nth-child(3) { width: 280px; height: 280px; background: var(--secondary); bottom: -110px; right: 22%; opacity: 0.09; }
.hero__mesh span:nth-child(4) { width: 200px; height: 200px; background: var(--primary-light); bottom: 40px; left: 30%; opacity: 0.32; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }
.hero__content .lead { font-size: 1.1rem; max-width: 540px; }
.hero__ctas { display: flex; gap: 14px; margin: 28px 0 32px; flex-wrap: wrap; }
.hero__proof { display: flex; align-items: center; gap: 14px; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -10px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.72rem; font-weight: 700;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__proof-text { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.hero__proof-text strong { color: var(--ink); }

/* hero: zorgverlener-zoeker mockup */
.hero__visual { position: relative; }
.finderwidget {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft); overflow: hidden;
}
.finderwidget__head { padding: 20px 24px; background: linear-gradient(135deg, var(--primary), var(--primary-darker)); color: #fff; }
.finderwidget__head h4 { margin: 0 0 4px; font-size: 1.05rem; }
.finderwidget__head p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.85rem; }
.finderwidget__body { padding: 20px 24px 24px; }
.finderwidget__field { background: var(--bg-soft); border-radius: 10px; padding: 12px 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }
.finderwidget__field svg { color: var(--primary); flex-shrink: 0; }
.finderwidget__results { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.finderwidget__result { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; border: 1.5px solid var(--border-soft); }
.finderwidget__result.chosen { border-color: var(--primary); background: var(--primary-light); }
.finderwidget__result img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.finderwidget__result-info { flex: 1; }
.finderwidget__result-name { font-weight: 700; font-size: 0.86rem; color: var(--ink); }
.finderwidget__result-meta { font-size: 0.75rem; color: var(--ink-faint); }
.finderwidget__result-slot { font-size: 0.76rem; font-weight: 700; color: var(--primary); background: #fff; padding: 4px 8px; border-radius: 6px; border: 1px solid var(--border); }
.finderwidget__float {
  position: absolute; background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 10px 16px;
  font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 8px; border: 1px solid var(--border-soft);
}
.finderwidget__float--1 { top: -18px; right: -18px; color: var(--green); }
.finderwidget__float--2 { bottom: -16px; left: -22px; color: var(--privacy); }
.finderwidget__float::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ---------- logostrip ---------- */
.logostrip { padding: 34px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.logostrip__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.logostrip__label { font-size: 0.82rem; color: var(--ink-faint); font-weight: 700; white-space: nowrap; }
.logostrip__logos { display: flex; gap: 34px; flex-wrap: wrap; }
.logostrip__logos span { font-weight: 800; color: var(--ink-faint); font-size: 1rem; opacity: 0.8; }

/* ---------- sections ---------- */
.section-pad { padding: 100px 0; }
.section-pad.tight { padding: 64px 0; }
.section-alt { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-head { max-width: 620px; margin: 0 auto 52px; text-align: center; }
.section-head p { font-size: 1.08rem; line-height: 1.65; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- features grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-card {
  background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-card__icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 0.92rem; }

/* ---------- how-it-works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px 24px 24px; background: var(--bg-soft); border-radius: var(--radius); }
.step__num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.05rem;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; font-size: 0.92rem; }

/* ---------- feature-block ---------- */
.feature-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; margin-bottom: 70px; }
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-block__chip {
  display: inline-block; font-size: 0.78rem; font-weight: 800; color: var(--accent-dark); background: var(--accent-light);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.03em;
}
.feature-block__list { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.feature-block__list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 0.94rem; color: var(--ink); }
.feature-block__list svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature-block__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 340px; object-fit: cover; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; text-align: center; }
.stat h3 { font-size: 2.3rem; color: var(--primary); margin-bottom: 4px; }
.stat span { color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }

/* ---------- testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.testimonial-card__stars { color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; color: var(--ink); }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.avatar-gradient { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; }
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------- specialisme / dienst cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.service-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 30px;
  display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }
.service-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.service-card__meta { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.chip { font-size: 0.76rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--bg-soft-2); color: var(--ink-soft); display: inline-flex; align-items: center; gap: 5px; }
.chip.chip-price { background: var(--primary-light); color: var(--primary-dark); }
.chip.chip-vergoed { background: var(--green-bg); color: var(--green); }
.chip.chip-verwijsbrief { background: var(--amber-bg); color: var(--amber); }
.service-card p { flex: 1; font-size: 0.93rem; }
.service-card__price { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.service-card__price span { font-size: 0.85rem; color: var(--ink-faint); font-weight: 600; }

/* specialisme-categorie hero cards (index/specialismen) */
.categorie-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.categorie-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 26px 22px;
  text-align: center; transition: all 0.15s;
}
.categorie-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.categorie-card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.categorie-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.categorie-card p { font-size: 0.86rem; margin: 0 0 14px; }

/* ---------- cta band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-darker)); border-radius: var(--radius-lg);
  padding: 60px 48px; text-align: center; color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.86); max-width: 560px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-band__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer {
  background: linear-gradient(180deg, var(--ink) 0%, var(--primary-darker) 260%);
  color: rgba(255,255,255,0.72); padding: 80px 0 32px; position: relative;
}
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary)); }
.footer__grid { display: grid; grid-template-columns: 1.7fr minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); gap: 44px; margin-bottom: 52px; }
.footer__brand-name { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 800; font-size: 1.3rem; margin-bottom: 16px; }
.footer__brand-name .navbar__logo-mark { width: 40px; height: 40px; }
.footer__brand p { color: rgba(255,255,255,0.58); font-size: 0.93rem; max-width: 320px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.09); display: flex;
  align-items: center; justify-content: center; font-size: 0.9rem;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.footer__socials a[data-setting-href="instagram_url"] { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.footer__socials a[data-setting-href="facebook_url"] { background: #1877f2; }
.footer__socials a[data-setting-href="x_url"] { background: #000; border: 1px solid rgba(255,255,255,0.25); }
.footer__socials a[data-setting-href="tiktok_url"] { background: linear-gradient(135deg, #25f4ee, #111 45%, #fe2c55); }
.footer__socials a[hidden] { display: none; }
.footer__socials a:hover { transform: translateY(-3px) scale(1.08); filter: brightness(1.15); box-shadow: 0 6px 16px rgba(0,0,0,0.35); }
.footer__signature { font-family: "Fraunces", Georgia, serif; font-style: italic; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 14px; }
.footer__col h4 { color: #fff; font-size: 0.82rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; position: relative; padding-bottom: 10px; }
.footer__col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--secondary); }
.footer__col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer__bottom a { color: var(--secondary); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(184,115,74,0.5); transition: color 0.15s, text-decoration-color 0.15s; }
.footer__bottom a:hover { color: #fff; text-decoration-color: currentColor; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 72px 0 76px; background: var(--bg-soft); text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { max-width: 700px; margin-left: auto; margin-right: auto; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.page-hero.split { text-align: left; }
.page-hero.split .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.page-hero.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 320px; object-fit: cover; }

/* ---------- generic content blocks ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 24px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; color: var(--ink-soft); }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.team-card { text-align: center; background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 24px; }
.team-card img, .team-card__avatar-fallback { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.team-card__avatar-fallback {
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.team-card h3 { margin-bottom: 2px; }
.team-card__role { color: var(--primary); font-weight: 700; font-size: 0.86rem; margin-bottom: 8px; }
.team-card p { font-size: 0.88rem; }
.team-card__meta { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.team-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.team-filter button {
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--border); background: #fff;
  font-weight: 700; font-size: 0.86rem; color: var(--ink-soft);
}
.team-filter button.active, .team-filter button:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.value-card { text-align: center; padding: 24px 16px; }
.value-card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.86rem; margin: 0; }

/* ---------- insurance (verzekering.html) ---------- */
.insurer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.insurer-chip {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px 12px;
  text-align: center; font-weight: 700; font-size: 0.88rem; color: var(--ink);
}
.coverage-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.coverage-table th, .coverage-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-soft); font-size: 0.9rem; }
.coverage-table th { background: var(--bg-soft); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-faint); }
.coverage-table tr:last-child td { border-bottom: none; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.form-field .hint { font-size: 0.78rem; color: var(--ink-faint); font-weight: 500; }
.form-field input, .form-field textarea, .form-field select {
  padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--border); font-size: 0.95rem; color: var(--ink);
  background: #fff; transition: border-color 0.15s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--primary); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-msg { padding: 12px 16px; border-radius: 10px; font-size: 0.9rem; font-weight: 600; margin-bottom: 18px; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: var(--green-bg); color: var(--green); }
.form-msg.error { background: var(--red-bg); color: var(--red); }

.contact-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: 50px; }
.contact-info-card { text-align: center; padding: 24px; background: var(--bg-soft); border-radius: var(--radius); }
.contact-info-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.contact-info-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   Afspraakflow (afspraak.html) — de kern van de interactiviteit
   ========================================================================== */
.booking-steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 42px; flex-wrap: wrap; }
.booking-steps__step { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--ink-faint); }
.booking-steps__num { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft-2); display: flex; align-items: center; justify-content: center; font-size: 0.76rem; }
.booking-steps__step.active { color: var(--primary); }
.booking-steps__step.active .booking-steps__num { background: var(--primary); color: #fff; }
.booking-steps__step.done .booking-steps__num { background: var(--accent); color: #fff; }
.booking-steps__sep { width: 20px; height: 2px; background: var(--border); }

.booking-panel { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.booking-panel__section { display: none; padding: 36px; }
.booking-panel__section.active { display: block; }

/* stap 1: categorie + dienst kiezen */
.categorie-select-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 24px; }
.categorie-select-card {
  border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px 10px; cursor: pointer; text-align: center;
  background: #fff; transition: all 0.15s; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.categorie-select-card:hover { border-color: var(--primary); }
.categorie-select-card.selected { border-color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(13,122,108,0.12); }
.categorie-select-card__icon { width: 38px; height: 38px; border-radius: 10px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.categorie-select-card.selected .categorie-select-card__icon { background: var(--primary); color: #fff; }
.categorie-select-card__naam { font-weight: 700; font-size: 0.86rem; }

.service-select-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.service-select-card {
  border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; cursor: pointer; text-align: left;
  background: #fff; transition: all 0.15s; display: flex; flex-direction: column; gap: 6px;
}
.service-select-card:hover { border-color: var(--primary); }
.service-select-card.selected { border-color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(13,122,108,0.12); }
.service-select-card__name { font-weight: 800; font-size: 1rem; }
.service-select-card__meta { display: flex; gap: 8px; flex-wrap: wrap; }

/* zorgverlener kiezen */
.team-select-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.team-select-card {
  border: 1.5px solid var(--border); border-radius: var(--radius); padding: 14px 10px; cursor: pointer; text-align: center;
  background: #fff; transition: all 0.15s; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.team-select-card:hover { border-color: var(--primary); }
.team-select-card.selected { border-color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(13,122,108,0.12); }
.team-select-card img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.team-select-card__avatar-none {
  width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800;
}
.team-select-card__naam { font-weight: 700; font-size: 0.85rem; }
.team-select-card__functie { font-size: 0.74rem; color: var(--ink-faint); }

/* eigen bijdrage / betaling */
.betaal-notice { background: var(--primary-light); color: var(--primary-darker); border-radius: 10px; padding: 12px 16px; font-size: 0.88rem; font-weight: 600; margin-bottom: 18px; }
.betaal-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px; font-size: 0.74rem; font-weight: 700; background: var(--green-bg); color: var(--green); }
.betaal-badge.open { background: var(--amber-bg); color: var(--amber); }

/* stap 2: kalender + tijden */
.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.calendar__head h3 { margin: 0; font-size: 1.05rem; text-transform: capitalize; }
.calendar__nav { display: flex; gap: 6px; }
.calendar__nav button {
  width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
}
.calendar__nav button:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.calendar__nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.calendar__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.calendar__dow { text-align: center; font-size: 0.72rem; font-weight: 800; color: var(--ink-faint); padding-bottom: 6px; text-transform: uppercase; }
.calendar__day {
  aspect-ratio: 1; border: 1.5px solid transparent; border-radius: 10px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 600; color: var(--ink-faint);
  cursor: not-allowed; position: relative;
}
.calendar__day.empty { background: none; }
.calendar__day.available { background: var(--primary-light); color: var(--primary-dark); cursor: pointer; font-weight: 700; }
.calendar__day.available:hover { border-color: var(--primary); }
.calendar__day.today.available::after {
  content: ""; position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--primary);
}
.calendar__day.selected { background: var(--primary); color: #fff; }
.calendar__legend { display: flex; gap: 18px; margin-top: 16px; font-size: 0.8rem; color: var(--ink-soft); }
.calendar__legend span { display: inline-flex; align-items: center; gap: 6px; }
.calendar__legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.calendar__legend .lg-avail { background: var(--primary-light); }
.calendar__legend .lg-sel { background: var(--primary); }
.calendar__legend .lg-none { background: var(--bg-soft); border: 1px solid var(--border); }

.slots__head { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.slots__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-height: 360px; overflow-y: auto; padding-right: 4px; }
.slot-btn {
  padding: 10px 8px; border-radius: 10px; border: 1.5px solid var(--border); background: #fff; font-weight: 700;
  font-size: 0.88rem; color: var(--ink); text-align: center;
}
.slot-btn:hover { border-color: var(--primary); color: var(--primary); }
.slot-btn.selected { background: var(--primary); border-color: var(--primary); color: #fff; }
.slots__empty { color: var(--ink-faint); font-size: 0.9rem; text-align: center; padding: 40px 0; }
.slots__empty svg { display: block; margin: 0 auto 10px; color: var(--ink-faint); }

/* stap 3: patiëntgegevens + verzekering */
.booking-summary { background: var(--bg-soft); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 26px; display: flex; flex-direction: column; gap: 6px; }
.booking-summary__row { display: flex; justify-content: space-between; font-size: 0.92rem; }
.booking-summary__row strong { color: var(--ink); }
.booking-summary__row span:first-child { color: var(--ink-soft); }

.section-subhead { font-size: 1rem; font-weight: 800; margin: 30px 0 4px; padding-top: 22px; border-top: 1px solid var(--border-soft); }
.section-subhead:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.section-subhead-sub { font-size: 0.85rem; color: var(--ink-faint); margin: 0 0 16px; }

.referral-notice { background: var(--amber-bg); color: #92600c; border-radius: 10px; padding: 12px 16px; font-size: 0.86rem; font-weight: 600; margin-bottom: 16px; }

/* stap 4: medische intake + AVG-toestemming */
.privacy-notice {
  background: var(--privacy-bg); border: 1px solid rgba(47,111,237,0.18); border-radius: var(--radius);
  padding: 16px 18px; font-size: 0.86rem; color: var(--ink); display: flex; gap: 12px; margin-bottom: 24px;
}
.privacy-notice svg { color: var(--privacy); flex-shrink: 0; margin-top: 2px; }
.privacy-notice strong { color: var(--privacy); }
.consent-box {
  background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px 20px;
  margin-top: 10px; display: flex; gap: 12px; align-items: flex-start;
}
.consent-box input { width: 19px; height: 19px; accent-color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.consent-box label { font-size: 0.86rem; color: var(--ink); font-weight: 600; }
.consent-box a { color: var(--primary); text-decoration: underline; }

/* stap 5: bevestiging */
.booking-success { text-align: center; padding: 20px 0 10px; }
.booking-success__icon {
  width: 74px; height: 74px; border-radius: 50%; background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.booking-success h2 { margin-bottom: 8px; }
.booking-success .booking-summary { text-align: left; max-width: 460px; margin: 24px auto; }
.ics-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--primary); text-decoration: none; margin-top: 10px; }
.ics-link:hover { text-decoration: underline; }

.booking-panel__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-soft); }

/* ==========================================================================
   Utilities / animations
   ========================================================================== */
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; }
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-amber { background: var(--amber-bg); color: var(--amber); }
.badge-red { background: var(--red-bg); color: var(--red); }
.badge-privacy { background: var(--privacy-bg); color: var(--privacy); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.spinner {
  width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%;
  animation: spin 0.7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Merk-logo (BetterPelvi groot / .Amsterdam klein — Booking.com-stijl)
   ========================================================================== */
.brand-mark { display: inline-flex; align-items: baseline; gap: 1px; white-space: nowrap; }
.brand-mark__groot { font-weight: 800; font-size: 1.3em; color: var(--ink); font-family: "Fraunces", Georgia, serif; }
.brand-mark__klein { font-weight: 600; font-size: 0.58em; color: var(--ink-soft); }
.footer .brand-mark__groot { color: #fff; }
.footer .brand-mark__klein { color: rgba(255,255,255,0.55); }
.partner-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 700;
  color: var(--primary-dark); background: var(--primary-light); padding: 5px 12px 5px 8px; border-radius: 999px;
}
.partner-badge svg { flex-shrink: 0; }

/* ---------- pricing / abonnementen ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.pricing-grid.pricing-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px;
  display: flex; flex-direction: column; position: relative; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.plan-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.plan-card.populair { border-color: var(--primary); box-shadow: var(--shadow); }
.plan-card__ribbon {
  position: absolute; top: -13px; left: 26px; background: var(--primary); color: #fff; font-size: 0.72rem;
  font-weight: 800; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.03em;
}
.plan-card__naam { font-size: 1.1rem; margin-bottom: 4px; }
.plan-card__beschrijving { font-size: 0.88rem; margin-bottom: 18px; flex: 1; }
.plan-card__prijs { font-size: 2.1rem; font-weight: 800; color: var(--ink); font-family: "Fraunces", Georgia, serif; }
.plan-card__prijs span { font-size: 0.85rem; color: var(--ink-faint); font-weight: 600; font-family: inherit; }
.plan-card__per-sessie { font-size: 0.8rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 18px; }
.plan-card__meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; font-size: 0.86rem; color: var(--ink-soft); }
.plan-card__meta li { display: flex; align-items: center; gap: 8px; }
.plan-card__meta svg { color: var(--primary); flex-shrink: 0; }

/* ---------- veiligheids-/contra-indicatiecheck ---------- */
.safety-box {
  background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px 22px;
  margin: 10px 0 24px;
}
.safety-box__title { font-weight: 800; font-size: 0.92rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.safety-box__title svg { color: var(--amber); flex-shrink: 0; }
.safety-box__sub { font-size: 0.82rem; color: var(--ink-faint); margin: 0 0 14px; }
.safety-check { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--border-soft); }
.safety-check:first-of-type { border-top: none; }
.safety-check input { width: 19px; height: 19px; accent-color: var(--red); margin-top: 2px; flex-shrink: 0; }
.safety-check label { font-size: 0.88rem; color: var(--ink); font-weight: 600; }
.safety-warning {
  display: none; background: var(--red-bg); color: var(--red); border-radius: 10px; padding: 14px 16px;
  font-size: 0.86rem; font-weight: 600; margin-top: 16px; gap: 10px; align-items: flex-start;
}
.safety-warning.show { display: flex; }
.safety-warning svg { flex-shrink: 0; margin-top: 1px; }

/* credit-toggle in de afspraakflow (abonnement gebruiken vs losse betaling) */
.credit-toggle {
  display: flex; gap: 14px; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; margin-bottom: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.credit-toggle__info { font-size: 0.88rem; color: var(--ink); font-weight: 600; }
.credit-toggle__info strong { color: var(--primary-dark); }
.credit-toggle .toggle-switch { display: inline-flex; background: #fff; border: 1.5px solid var(--border); border-radius: 999px; padding: 3px; }
.toggle-switch button {
  padding: 7px 14px; border-radius: 999px; border: none; background: none; font-weight: 700; font-size: 0.82rem;
  color: var(--ink-soft); cursor: pointer;
}
.toggle-switch button.active { background: var(--primary); color: #fff; }

/* ---------- animatie-diagram "hoe het werkt" (eigen, originele SVG i.p.v. productfoto) ---------- */
.pulse-diagram { position: relative; width: 100%; aspect-ratio: 1; max-width: 340px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.pulse-diagram--badge { overflow: hidden; border-radius: 50%; }
.pulse-diagram__ring { position: absolute; border-radius: 50%; border: 2px solid var(--primary); opacity: 0; animation: pulse-ring 3s ease-out infinite; }
.pulse-diagram__ring:nth-child(2) { animation-delay: 1s; }
.pulse-diagram__ring:nth-child(3) { animation-delay: 2s; }
@keyframes pulse-ring {
  0% { width: 60px; height: 60px; opacity: 0.55; }
  100% { width: 320px; height: 320px; opacity: 0; }
}
.pulse-diagram__core {
  position: relative; width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center; color: #fff;
}

.video-block {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-darker), var(--primary)); display: flex; align-items: center;
  justify-content: center; color: #fff; text-align: center; box-shadow: var(--shadow);
}
.video-block__play {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.16); border: 1.5px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.video-block__label { font-weight: 700; font-size: 0.95rem; max-width: 320px; margin: 0 auto; color: rgba(255,255,255,0.92); }
.video-block__sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ---------- klantportaal-layout ---------- */
.portal-shell { display: grid; grid-template-columns: 240px minmax(0, 1fr); min-height: 100vh; background: var(--bg-soft); }
.portal-sidebar { background: #fff; border-right: 1px solid var(--border-soft); padding: 24px 18px; display: flex; flex-direction: column; }
.portal-sidebar__brand { padding: 10px 10px 24px; }
.portal-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.portal-nav a {
  padding: 11px 14px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.portal-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.portal-nav a.active { background: var(--primary-light); color: var(--primary-dark); }
.portal-main { padding: 32px 40px; max-width: 980px; min-width: 0; }
.portal-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.portal-kpi-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 30px; }
.portal-kpi { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 18px 20px; }
.portal-kpi__label { font-size: 0.78rem; color: var(--ink-faint); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.portal-kpi__value { font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.portal-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 22px; }
.portal-card h2 { font-size: 1.1rem; margin-bottom: 16px; }
.portal-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--border-soft); flex-wrap: wrap;
}
.portal-row:last-child { border-bottom: none; }
.portal-row__main { display: flex; flex-direction: column; gap: 2px; }
.portal-row__title { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.portal-row__meta { font-size: 0.8rem; color: var(--ink-faint); }
.portal-row__actions { display: flex; gap: 8px; }
.portal-empty { text-align: center; color: var(--ink-faint); font-size: 0.9rem; padding: 30px 0; }
.portal-auth-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); padding: 24px; }
.portal-auth-card { width: 100%; max-width: 420px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px 36px; }
.portal-auth-card__logo { text-align: center; margin-bottom: 22px; }
.portal-auth-switch { text-align: center; font-size: 0.86rem; color: var(--ink-soft); margin-top: 18px; }
.portal-auth-switch a { color: var(--primary); font-weight: 700; }

@media (max-width: 860px) {
  .portal-shell { grid-template-columns: minmax(0, 1fr); }
  .portal-sidebar { position: sticky; top: 0; z-index: 50; flex-direction: row; align-items: center; padding: 12px 16px; overflow-x: auto; }
  .portal-sidebar__brand { padding: 0 14px 0 0; }
  .portal-nav { flex-direction: row; }
  .portal-main { padding: 22px 18px; }
  .portal-kpi-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ-accordeon ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 1rem; color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
}
.faq-item__q svg { flex-shrink: 0; color: var(--secondary); transition: transform 0.25s ease; }
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__a p { padding: 0 24px 22px; margin: 0; font-size: 0.95rem; }
.faq-item.open .faq-item__a { max-height: 260px; }

/* ---------- oprichters / founder-avatars (over-ons.html) ---------- */
.founder-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; max-width: 780px; margin: 0 auto; }
.founder-card { text-align: center; background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 34px 26px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.founder-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.founder-avatar {
  width: 128px; height: 128px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: "Fraunces", Georgia, serif; font-size: 2.3rem; font-weight: 600; margin: 0 auto 20px;
  box-shadow: var(--shadow); overflow: hidden; border: 4px solid #fff; outline: 1px solid var(--border-soft);
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-avatar.tone-a { background: linear-gradient(135deg, var(--primary), var(--tertiary)); }
.founder-avatar.tone-b { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.founder-card__role { color: var(--secondary-dark); font-weight: 700; font-size: 0.86rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.founder-card p { font-size: 0.93rem; }
.founder-card__badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 700; color: var(--ink-faint);
  background: var(--bg-soft); padding: 3px 10px; border-radius: 999px; margin-top: 10px;
}

.origin-quote {
  border-left: 3px solid var(--secondary); padding: 4px 0 4px 24px; margin: 32px 0; font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem; line-height: 1.5; color: var(--ink); font-weight: 500; font-style: italic;
}

/* ---------- "trust"-visual (icoonclusters i.p.v. stockfoto) ---------- */
.trust-visual { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 48px 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.trust-visual__item { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); text-align: center; }
.trust-visual__item .icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.trust-visual__item strong { display: block; font-size: 0.86rem; color: var(--ink); }

/* ---------- gekleurde icoonvarianten (doorbreekt "alles is groen") — bewust
   ná alle kaart-/icoondefinities geplaatst zodat deze de standaardkleur overschrijven ---------- */
.icon-a { background: var(--primary-light) !important; color: var(--primary-dark) !important; }
.icon-b { background: var(--secondary-light) !important; color: var(--secondary-dark) !important; }
.icon-c { background: var(--tertiary-light) !important; color: var(--tertiary) !important; }
.icon-d { background: var(--amber-bg) !important; color: var(--amber) !important; }
.categorie-card:hover .icon-b, .value-card:hover .icon-b { color: var(--secondary-dark); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-block__visual { order: -1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .categorie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .categorie-select-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insurer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-hero.split .container { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .navbar__inner { padding: 12px 14px; gap: 6px; }
  .navbar__logo-mark { width: 26px; height: 26px; font-size: 0.8rem; }
  .brand-mark__groot { font-size: 0.96em; }
  .navbar__right { gap: 5px; }
  .navbar__right .btn { padding: 8px 11px; font-size: 0.78rem; }
  .navbar__burger { padding: 6px 2px; }
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: 1fr; }
  .categorie-select-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-select-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { padding: 44px 24px; }
  .section-pad { padding: 56px 0; }
  .slots__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .insurer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  h1 { font-size: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .portal-topbar { flex-direction: column; align-items: flex-start; }
  .founder-grid { grid-template-columns: 1fr; }
  .trust-visual { grid-template-columns: 1fr; }
}
