/* ==========================================================================
   Nicolien Cares — Design System
   Premium healthcare/education site
   ========================================================================== */

:root {
  /* Color palette — warm care / wijkverpleging */
  --nc-ink:        #1f3a36;   /* warm deep teal-green — headlines */
  --nc-navy:       #2b5148;   /* forest sage dark */
  --nc-navy-2:     #3d6e62;   /* gradient mid */
  --nc-teal:       #5a9f88;   /* soft sage green — brand */
  --nc-teal-dark:  #3d7a66;
  --nc-teal-soft:  #eaf3ee;
  --nc-sand:       #f4ede1;   /* warm sand */
  --nc-sand-2:     #e8dcc5;
  --nc-peach:      #f5d3b8;   /* warm accent */
  --nc-peach-soft: #fdf1e6;
  --nc-coral:      #d98368;   /* accent — warmth */
  --nc-gold:       #c9925a;   /* warm amber */
  --nc-gold-soft:  #fbf1e2;

  --nc-bg:         #fdfbf7;   /* warm off-white */
  --nc-bg-alt:     #f6f1e8;   /* sand background */
  --nc-bg-dark:    #1f3a36;

  --nc-text:       #2a3f3a;
  --nc-text-soft:  #4f5f58;
  --nc-muted:      #7f8e86;
  --nc-border:     #e6dfd0;
  --nc-border-soft:#efe8d9;

  /* Typography — warm, approachable */
  --ff-serif:  'Fraunces', 'Lora', Georgia, serif;
  --ff-sans:   'DM Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii / shadows */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --sh-sm: 0 1px 2px rgba(14, 43, 58, 0.04), 0 1px 3px rgba(14, 43, 58, 0.06);
  --sh-md: 0 4px 12px rgba(14, 43, 58, 0.06), 0 2px 4px rgba(14, 43, 58, 0.04);
  --sh-lg: 0 18px 40px -12px rgba(14, 43, 58, 0.18), 0 8px 18px -8px rgba(14, 43, 58, 0.08);

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  font-family: var(--ff-sans);
  color: var(--nc-text);
  background: var(--nc-bg);
  line-height: 1.7;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--nc-teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--nc-teal-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--nc-ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-family: var(--ff-sans); font-weight: 600; }
em, .italic { font-style: italic; }
p  { color: var(--nc-text-soft); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nc-teal);
  margin-bottom: 0.8rem;
  display: inline-block;
}
.lead { font-size: 1.15rem; color: var(--nc-text-soft); line-height: 1.7; }

/* ---- Container ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }

/* ==========================================================================
   Top bar / navigation
   ========================================================================== */
.topbar {
  background: var(--nc-ink);
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  letter-spacing: 0.01em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: #fff; }
.topbar-badges { display: flex; gap: 1.2rem; align-items: center; }
.topbar-badges span { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-badges .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--nc-teal); display: inline-block; }

@media (max-width: 640px) {
  .topbar { display: none; }
}

header.site {
  background: #fff;
  position: sticky; top: 0; z-index: 80;
  border-bottom: 1px solid var(--nc-border-soft);
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255,255,255,0.92);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 48px; height: 48px;
  background-image: url('../img/logo-mark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  /* Text "N" wordt verborgen — beeld vervangt het */
  font-size: 0;
  color: transparent;
}
.brand-name {
  font-family: var(--ff-serif);
  font-size: 1.35rem; font-weight: 600; color: var(--nc-ink);
  letter-spacing: -0.005em;
  line-height: 1;
}
.brand-tag {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nc-muted);
  margin-top: 3px;
}

.nav-menu { display: flex; align-items: center; gap: 0.4rem; }
.nav-menu a {
  color: var(--nc-text);
  font-size: 0.92rem; font-weight: 500;
  padding: 0.55rem 0.9rem; border-radius: var(--r-sm);
  transition: all .2s ease;
}
.nav-menu a:hover { color: var(--nc-teal); background: var(--nc-teal-soft); }
.nav-menu a.active { color: var(--nc-teal); }

.nav-cta {
  margin-left: 0.8rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  background: var(--nc-teal); color: #fff !important;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(31, 122, 106, 0.25);
  transition: all .2s ease !important;
}
.nav-cta:hover { background: var(--nc-teal-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(31, 122, 106, 0.35); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--nc-bg-alt);
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--nc-ink); margin: 0 auto; }

@media (max-width: 900px) {
  .nav-menu {
    position: fixed; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 1rem; gap: 0.15rem;
    border-bottom: 1px solid var(--nc-border-soft);
    box-shadow: var(--sh-md);
    transform: translateY(-150%);
    transition: transform .3s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 0.8rem 1rem; font-size: 1rem; }
  .nav-cta { margin: 0.5rem 0 0; text-align: center; justify-content: center; }
  .nav-toggle { display: grid; place-items: center; }
}

/* ==========================================================================
   Hero — home page
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(90, 159, 136, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(217, 131, 104, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #fdfbf7 0%, #f6f1e8 100%);
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 211, 184, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  background: #fff;
  border: 1px solid var(--nc-border);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; color: var(--nc-text-soft);
  margin-bottom: 1.5rem;
  box-shadow: var(--sh-sm);
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--nc-teal); border-radius: 50%; display: inline-block; }

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  color: var(--nc-ink);
  margin-bottom: 1.3rem;
}
.hero h1 em {
  font-style: italic; font-weight: 500;
  color: var(--nc-teal);
  position: relative;
}
.hero p.lead { max-width: 540px; margin-bottom: 2rem; font-size: 1.17rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.5rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--nc-border);
  max-width: 520px;
}
.stat .num {
  font-family: var(--ff-serif);
  font-size: 2.2rem; font-weight: 600;
  color: var(--nc-ink); line-height: 1;
}
.stat .num .plus { color: var(--nc-teal); font-size: 1.6rem; }
.stat .lbl { font-size: 0.82rem; color: var(--nc-muted); margin-top: 0.3rem; line-height: 1.35; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-image {
  aspect-ratio: 4/5;
  border-radius: 50% 50% 20% 20% / 40% 40% 10% 10%;
  background-color: #e8dcc5;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 58, 54, 0.25) 100%);
}
.hero-shape-bg {
  position: absolute;
  width: 90%; height: 90%;
  top: 8%; left: 6%;
  background: var(--nc-peach);
  border-radius: 50% 50% 30% 30% / 40% 40% 10% 10%;
  z-index: -1;
  opacity: 0.5;
}
.hero-leaf {
  position: absolute;
  color: var(--nc-teal);
  opacity: 0.4;
}
.hero-leaf.a { top: -20px; right: 30px; width: 80px; transform: rotate(-20deg); }
.hero-leaf.b { bottom: 10%; left: -30px; width: 100px; transform: rotate(15deg); }

.hero-card {
  position: absolute;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.88rem;
  max-width: 280px;
}
.hero-card-a { top: 8%; left: -6%; }
.hero-card-b { bottom: 10%; right: -4%; }
.hero-card .icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.hero-card .icon.g { background: var(--nc-teal-soft); color: var(--nc-teal); }
.hero-card .icon.d { background: var(--nc-gold-soft); color: var(--nc-gold); }
.hero-card .title { font-weight: 600; color: var(--nc-ink); }
.hero-card .sub { color: var(--nc-muted); font-size: 0.78rem; }

@media (max-width: 900px) {
  .hero { padding: 3rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-card-a { top: 4%; left: 2%; }
  .hero-card-b { bottom: 4%; right: 2%; }
}
@media (max-width: 520px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-card { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.95rem;
  transition: all .2s ease;
  letter-spacing: 0.005em;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--nc-teal); color: #fff !important;
  box-shadow: 0 2px 6px rgba(31, 122, 106, 0.25);
}
.btn-primary:hover { background: var(--nc-teal-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(31, 122, 106, 0.35); text-decoration: none; }

.btn-ghost {
  background: #fff; color: var(--nc-ink) !important;
  border: 1px solid var(--nc-border);
}
.btn-ghost:hover { border-color: var(--nc-teal); color: var(--nc-teal) !important; text-decoration: none; }

.btn-ink {
  background: var(--nc-ink); color: #fff !important;
}
.btn-ink:hover { background: #000; text-decoration: none; }

.btn-link {
  color: var(--nc-teal) !important;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.93rem;
}
.btn-link .arrow { transition: transform .2s ease; display: inline-block; }
.btn-link:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Page hero (secondary pages)
   ========================================================================== */
.page-hero {
  background:
    radial-gradient(circle at 85% 30%, rgba(217, 131, 104, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, var(--nc-ink) 0%, var(--nc-navy) 60%, var(--nc-navy-2) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(31, 122, 106, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(184, 138, 62, 0.15) 0%, transparent 35%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: rgba(255,255,255,0.7); }
.page-hero h1 { color: #fff; margin-bottom: 1rem; max-width: 820px; }
.page-hero .lead { color: rgba(255,255,255,0.82); max-width: 680px; font-size: 1.15rem; }

.breadcrumb {
  padding: 1.3rem 0;
  font-size: 0.85rem;
  color: var(--nc-muted);
  border-bottom: 1px solid var(--nc-border-soft);
}
.breadcrumb a { color: var(--nc-teal); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--nc-border); }

/* ==========================================================================
   Sections / shared
   ========================================================================== */
section { padding: 5rem 0; }
.section-alt { background: var(--nc-bg-alt); }
.section-ink { background: var(--nc-ink); color: #fff; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p { color: rgba(255,255,255,0.75); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head h2 { margin-bottom: 0.8rem; }
.section-head p { font-size: 1.08rem; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--nc-border-soft);
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.trust-label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--nc-muted);
}
.trust-items { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--nc-text-soft);
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.trust-item svg { width: 28px; height: 28px; color: var(--nc-teal); flex-shrink: 0; }
.trust-item img { max-width: 32px; max-height: 32px; }
.trust-item.trust-badge img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.trust-item.trust-badge { font-size: 0.98rem; }

/* ==========================================================================
   Intro / about blocks
   ========================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.about-visual {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, #bccfd0 0%, #7a9699 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: #fff;
  padding: 1rem 1.3rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex; gap: 0.8rem; align-items: center;
}
.about-badge .icon { width: 42px; height: 42px; border-radius: 50%; background: var(--nc-gold-soft); color: var(--nc-gold); display: grid; place-items: center; flex-shrink: 0; }
.about-badge .num { font-family: var(--ff-serif); font-size: 1.4rem; color: var(--nc-ink); font-weight: 600; line-height: 1; }
.about-badge .lbl { font-size: 0.78rem; color: var(--nc-muted); }

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p + p { margin-top: 1.1rem; }
.about-text .signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nc-border);
  display: flex; align-items: center; gap: 1rem;
}
.signature-img {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nc-teal) 0%, var(--nc-navy) 100%);
  display: grid; place-items: center; color: #fff;
  font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 600;
}
.signature-text .name { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--nc-ink); font-weight: 600; }
.signature-text .role { font-size: 0.85rem; color: var(--nc-muted); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   Pillars / values
   ========================================================================== */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pillar {
  background: #fff;
  padding: 2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--nc-border-soft);
  transition: all .3s ease;
}
.pillar:hover { border-color: var(--nc-teal); transform: translateY(-3px); box-shadow: var(--sh-md); }
.pillar .icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--nc-teal-soft); color: var(--nc-teal);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.pillar .icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.6rem; font-family: var(--ff-sans); font-weight: 600; }
.pillar p { font-size: 0.92rem; line-height: 1.65; }

@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   Courses grid
   ========================================================================== */
.courses {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
}
.course {
  background: #fff;
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.course::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--nc-teal) 0%, var(--nc-navy) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.course:hover { border-color: var(--nc-border); box-shadow: var(--sh-md); transform: translateY(-2px); }
.course:hover::before { transform: scaleX(1); }

.course-badge {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.badge-open { background: var(--nc-teal-soft); color: var(--nc-teal); }
.badge-company { background: var(--nc-gold-soft); color: var(--nc-gold); }
.badge-request { background: #eef3f8; color: var(--nc-navy); }

.course h3 { margin-bottom: 0.7rem; font-size: 1.35rem; line-height: 1.25; }
.course p { font-size: 0.94rem; flex-grow: 1; margin-bottom: 1.3rem; }
.course-meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--nc-border-soft);
  margin-bottom: 1.3rem;
}
.cm-lbl {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--nc-muted);
  margin-bottom: 0.15rem;
}
.cm-val { font-size: 0.88rem; color: var(--nc-text); font-weight: 500; }

.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.8rem;
}
.course-price { font-size: 0.88rem; color: var(--nc-muted); }
.course-price strong { color: var(--nc-ink); font-weight: 600; }

@media (max-width: 800px) { .courses { grid-template-columns: 1fr; } }

/* ==========================================================================
   Compacte training-tiles (homepage)
   ========================================================================== */
.training-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tile {
  display: flex; flex-direction: column;
  padding: 1.4rem 1.3rem;
  background: #fff;
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
  color: var(--nc-ink) !important;
  transition: all .25s ease;
  position: relative;
  min-height: 160px;
}
.tile:hover {
  border-color: var(--nc-teal);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  text-decoration: none !important;
}
.tile-badge {
  align-self: flex-start;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}
.tile h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem; font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--nc-ink);
}
.tile-meta {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--nc-muted);
  padding-top: 0.8rem;
  border-top: 1px solid var(--nc-border-soft);
}
@media (max-width: 900px) { .training-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .training-tiles { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why-split (waarom + quote naast elkaar)
   ========================================================================== */
.why-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.why-list {
  display: grid; gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.why-list li {
  padding: 1rem 1.2rem;
  background: var(--nc-bg-alt);
  border-radius: var(--r-md);
  border-left: 3px solid var(--nc-teal);
  font-size: 0.98rem;
  color: var(--nc-text);
}
.why-list li strong {
  display: block;
  color: var(--nc-ink);
  margin-bottom: 0.1rem;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.05rem;
}
.quote-compact {
  background: linear-gradient(135deg, var(--nc-sand) 0%, var(--nc-peach-soft) 100%);
  padding: 2rem;
  border-radius: var(--r-lg);
  position: relative;
}
.quote-compact blockquote {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--nc-ink);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.quote-compact .attrib {
  display: flex; align-items: center; gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 58, 54, 0.1);
}
@media (max-width: 900px) { .why-split { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   Documenten-strook (homepage)
   ========================================================================== */
.docs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.doc-card {
  position: relative;
  display: flex; gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
  transition: all .25s ease;
}
.doc-card:hover {
  border-color: var(--nc-teal);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.doc-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nc-teal-soft);
  color: var(--nc-teal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.doc-icon svg { width: 22px; height: 22px; }
.doc-content { flex: 1; min-width: 0; }
.doc-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem; font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--nc-ink);
  line-height: 1.25;
}
.doc-card h3 a { color: var(--nc-ink); text-decoration: none; }
.doc-card:hover h3 a { color: var(--nc-teal); }
/* Stretched link: hele kaart is klikbaar via de h3-link */
.stretched-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.doc-card p {
  font-size: 0.88rem;
  color: var(--nc-text-soft);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}
.doc-links {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.doc-link-a {
  color: var(--nc-teal);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.doc-link-b {
  position: relative;
  z-index: 2;  /* boven de stretched-link */
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--nc-muted) !important;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.7rem;
  background: var(--nc-bg-alt);
  border: 1px solid var(--nc-border-soft);
  border-radius: 100px;
  transition: all .2s ease;
  text-decoration: none;
}
.doc-link-b:hover {
  border-color: var(--nc-teal);
  color: var(--nc-teal) !important;
  background: #fff;
  text-decoration: none !important;
}
.doc-card .arrow { transition: transform .2s ease; display: inline-block; }
.doc-card:hover .arrow { transform: translateX(3px); }

@media (max-width: 900px) { .docs-strip { grid-template-columns: 1fr; } }

/* Section head inline (op home: titel + link naast elkaar) */
.sec-head-inline { flex-wrap: wrap; }
@media (max-width: 700px) {
  .sec-head-inline { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   Echte reviews sectie (homepage)
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.review {
  background: #fff;
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
  padding: 1.5rem 1.5rem 1.2rem;
  display: flex; flex-direction: column;
  transition: all .25s ease;
}
.review:hover {
  border-color: var(--nc-teal);
  box-shadow: var(--sh-sm);
}
.review-rating {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--nc-border-soft);
}
.review-rating .score {
  font-family: var(--ff-serif);
  font-size: 1.8rem; font-weight: 600;
  color: var(--nc-teal);
  line-height: 1;
}
.review-rating .stars {
  color: var(--nc-gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.review blockquote {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--nc-ink);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
  flex-grow: 1;
  position: relative;
  padding-left: 1rem;
}
.review blockquote::before {
  content: '"';
  position: absolute;
  left: -0.1rem; top: -0.8rem;
  font-family: var(--ff-serif);
  font-size: 3rem;
  color: var(--nc-teal-soft);
  line-height: 1;
  font-style: normal;
}
.review-topic {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nc-muted);
  font-weight: 600;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--nc-border-soft);
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Review stats rij */
.review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--nc-border-soft);
  box-shadow: var(--sh-sm);
}
.review-stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--nc-border-soft);
}
.review-stat:last-child { border-right: none; }
.review-stat .n {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--nc-teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.review-stat .l {
  font-size: 0.92rem;
  color: var(--nc-text);
  font-weight: 500;
  line-height: 1.4;
}
.review-stat .l span {
  display: block;
  font-size: 0.78rem;
  color: var(--nc-muted);
  font-weight: 400;
}
@media (max-width: 700px) {
  .review-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 1.5rem 1rem; }
  .review-stat { border-right: none; border-bottom: 1px solid var(--nc-border-soft); padding-bottom: 1rem; }
  .review-stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}

/* ==========================================================================
   Approach / method (numbered)
   ========================================================================== */
.method-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: flex-start;
}
.method-list { display: grid; gap: 1rem; }
.method-item {
  display: flex; gap: 1.3rem;
  padding: 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--nc-border-soft);
  transition: all .3s ease;
  background: #fff;
}
.method-item:hover { border-color: var(--nc-teal); background: #fafaf7; }
.method-num {
  font-family: var(--ff-serif);
  font-size: 1.6rem; font-weight: 600;
  color: var(--nc-teal);
  line-height: 1;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--nc-teal-soft);
}
.method-item h4 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.method-item p { font-size: 0.92rem; line-height: 1.6; }

.method-visual {
  background: var(--nc-ink);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--r-lg);
  position: sticky; top: 96px;
}
.method-visual .eyebrow { color: rgba(255,255,255,0.7); }
.method-visual h3 { color: #fff; margin-bottom: 1rem; }
.method-visual p { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; }
.method-visual ul { display: grid; gap: 0.6rem; }
.method-visual li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.85);
}
.method-visual li svg { width: 18px; height: 18px; color: var(--nc-teal); flex-shrink: 0; }

@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; gap: 2rem; }
  .method-visual { position: static; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem;
}
.quote {
  background: #fff;
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
  padding: 2rem;
  display: flex; flex-direction: column;
}
.quote .mark {
  font-family: var(--ff-serif);
  font-size: 3.5rem; line-height: 0.8;
  color: var(--nc-teal);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.quote blockquote {
  font-family: var(--ff-serif);
  font-size: 1.25rem; line-height: 1.5;
  color: var(--nc-ink);
  margin-bottom: 1.5rem;
  font-weight: 500;
  flex-grow: 1;
}
.quote .attrib { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.attrib-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nc-teal) 0%, var(--nc-navy) 100%);
  display: grid; place-items: center;
  color: #fff; font-family: var(--ff-serif); font-weight: 600; font-size: 1rem;
}
.attrib-text .name { font-size: 0.9rem; font-weight: 600; color: var(--nc-ink); }
.attrib-text .role { font-size: 0.8rem; color: var(--nc-muted); }

.quote.small blockquote { font-size: 1.05rem; }
.quote.small .mark { font-size: 2.5rem; }

@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Media / credentials
   ========================================================================== */
.media-mentions {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  align-items: center;
}
.media-mention {
  text-align: center;
  padding: 1rem;
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--nc-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-right: 1px solid var(--nc-border-soft);
}
.media-mention:last-child { border-right: none; }
.media-mention em { font-style: italic; color: var(--nc-navy); }

@media (max-width: 700px) {
  .media-mentions { grid-template-columns: 1fr 1fr; }
  .media-mention { border-right: none; border-bottom: 1px solid var(--nc-border-soft); padding-bottom: 1.2rem; }
  .media-mention:nth-last-child(-n+2) { border-bottom: none; }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--nc-ink) 0%, var(--nc-navy) 50%, var(--nc-teal-dark) 100%);
  color: #fff;
  padding: 4.5rem 3rem;
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-banner::before { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-banner::after { width: 200px; height: 200px; bottom: -80px; left: -40px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .eyebrow { color: rgba(255,255,255,0.7); }
.cta-banner h2 { color: #fff; margin-bottom: 1rem; max-width: 650px; margin-left: auto; margin-right: auto; }
.cta-banner p { color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-banner .btn-primary { background: #fff; color: var(--nc-ink) !important; }
.cta-banner .btn-primary:hover { background: var(--nc-sand); }
.cta-banner .btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.3); }
.cta-banner .btn-ghost:hover { border-color: #fff; color: #fff !important; background: rgba(255,255,255,0.06); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: flex-start;
}
.contact-info { background: var(--nc-bg-alt); padding: 2.5rem; border-radius: var(--r-lg); border: 1px solid var(--nc-border-soft); }
.contact-info h3 { margin-bottom: 1.5rem; }

.info-list { display: grid; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--nc-teal);
  display: grid; place-items: center; flex-shrink: 0;
  border: 1px solid var(--nc-border-soft);
}
.info-item .icon svg { width: 18px; height: 18px; }
.info-item .lbl {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--nc-muted);
  margin-bottom: 0.2rem;
}
.info-item .val { color: var(--nc-ink); font-weight: 500; font-size: 0.98rem; }
.info-item .val a { color: var(--nc-ink); }

/* Form */
.form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--nc-ink);
  margin-bottom: 0.4rem;
}
.field label .req { color: var(--nc-teal); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--nc-border);
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--nc-ink);
  background: #fff;
  transition: all .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--nc-teal);
  box-shadow: 0 0 0 3px rgba(31, 122, 106, 0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--nc-text-soft); line-height: 1.5; }
.field-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--nc-teal); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Legal / long-form doc styling
   ========================================================================== */
.doc-body {
  max-width: 780px; margin: 0 auto;
  padding: 3.5rem 0 5rem;
}
.doc-intro {
  background: var(--nc-bg-alt);
  border-left: 3px solid var(--nc-teal);
  padding: 1.3rem 1.5rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.95rem;
  color: var(--nc-text-soft);
  margin-bottom: 2.5rem;
}
.doc-article {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--nc-border-soft);
}
.doc-article:last-child { border-bottom: none; }
.doc-article h2 {
  display: flex; align-items: baseline; gap: 0.8rem;
  font-size: 1.3rem; margin-bottom: 1.1rem;
  color: var(--nc-ink);
}
.doc-article h2 .n {
  flex-shrink: 0;
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--nc-teal); color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.82rem; font-weight: 700;
}
.doc-article p, .doc-clause {
  font-size: 0.98rem;
  color: var(--nc-text);
  line-height: 1.75;
  padding: 0.3rem 0 0.3rem 1.1rem;
  border-left: 2px solid var(--nc-border-soft);
  margin-bottom: 0.7rem;
}
.doc-clause:hover { border-left-color: var(--nc-teal); }
.doc-clause .dt { font-weight: 600; color: var(--nc-ink); }

.doc-toc {
  background: #fff;
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.doc-toc h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--nc-muted); margin-bottom: 0.8rem; font-family: var(--ff-sans); font-weight: 700; }
.doc-toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 1.5rem; list-style: decimal inside; color: var(--nc-muted); font-size: 0.88rem; }
.doc-toc ol a { color: var(--nc-text); }
.doc-toc ol a:hover { color: var(--nc-teal); }
@media (max-width: 640px) { .doc-toc ol { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site {
  background: var(--nc-ink);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 320px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255,255,255,0.5); }
footer h4 {
  font-family: var(--ff-sans);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; display: inline-block; transition: color .2s ease, transform .2s ease; }
.footer-col a:hover { color: #fff; transform: translateX(2px); }
.footer-col .contact-line { display: flex; gap: 0.5rem; align-items: flex-start; color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 0.6rem; line-height: 1.5; }
.footer-col .contact-line svg { width: 15px; height: 15px; color: var(--nc-teal); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  padding: 1.8rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom .legal-links a { color: rgba(255,255,255,0.55); margin-left: 1.5rem; }
.footer-bottom .legal-links a:first-child { margin-left: 0; }
.footer-bottom .legal-links a:hover { color: #fff; }
.footer-badges { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .legal-links a { margin-left: 0; margin-right: 1.2rem; }
}

/* ==========================================================================
   Utilities & animations
   ========================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ==========================================================================
   Credential / accreditatie badges
   ========================================================================== */
.credential-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--nc-bg-alt);
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
}
.credential-badges img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}
.credential-text { display: flex; flex-direction: column; gap: 0.2rem; line-height: 1.4; }
.credential-text strong { font-size: 0.88rem; color: var(--nc-ink); font-weight: 600; }
.credential-text span { font-size: 0.78rem; color: var(--nc-muted); }

/* Bio-sidebar accreditaties (over-pagina) */
.bio-accreditations {
  margin-top: 1.2rem;
  padding: 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-md);
  text-align: center;
}
.bio-accr-title {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--nc-muted);
  margin-bottom: 0.9rem;
}
.bio-accr-badges { display: flex; gap: 1rem; justify-content: center; align-items: center; }
.bio-accr-badges img { width: 51px; height: 51px; object-fit: contain; }

/* Footer accreditaties */
.footer-accreditations {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
}
.footer-accr-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.footer-accr-badges { display: flex; gap: 0.8rem; align-items: center; }
.footer-accr-badges img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  padding: 3px;
}
@media (max-width: 700px) {
  .footer-accreditations { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1.4rem 0; }
  .footer-accr-label { border-right: none; padding-right: 0; }
  .credential-badges { flex-wrap: wrap; }
}

/* ==========================================================================
   Platform-sectie (vakbekwaamindiceren.nl verwijzing)
   ========================================================================== */
.platform-section { padding: 4rem 0; }
.platform-card {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(135deg, #fff 0%, var(--nc-bg-alt) 100%);
  border: 1px solid var(--nc-border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.platform-logo {
  background: #fff;
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--nc-border-soft);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.platform-logo > img:first-child {
  max-width: 100%;
  max-height: 110px;
  margin: 0 auto;
}
.platform-badges {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  padding-top: 1.3rem;
  border-top: 1px solid var(--nc-border-soft);
  width: 100%;
}
.platform-badges img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.platform-body h2 { margin-bottom: 0.9rem; font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.platform-body p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.7; }
.platform-accreditation {
  font-size: 0.88rem !important;
  color: var(--nc-muted) !important;
  padding: 0.8rem 1rem;
  background: var(--nc-teal-soft);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--nc-teal);
  margin-bottom: 1.5rem !important;
}
.platform-accreditation strong { color: var(--nc-ink); }
@media (max-width: 800px) {
  .platform-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
  .platform-logo { padding: 1.5rem; }
  .platform-logo > img:first-child { max-height: 80px; }
  .platform-badges img { width: 70px; height: 70px; }
}

/* Focus states for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--nc-teal);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ==========================================================================
   MOBILE PORTRAIT — gericht verticaal leesbaar (≤ 700px)
   ========================================================================== */
@media (max-width: 700px) {
  body { font-size: 16px; line-height: 1.65; }

  /* Compactere section padding */
  section { padding: 3rem 0; }
  .container, .container-narrow { padding: 0 1.1rem; }

  /* Typografie */
  h1 { font-size: clamp(1.85rem, 7.5vw, 2.2rem) !important; line-height: 1.15; }
  h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem) !important; line-height: 1.2; }
  h3 { font-size: 1.15rem; }
  .lead { font-size: 1rem; line-height: 1.65; }
  .eyebrow { font-size: 0.72rem; margin-bottom: 0.6rem; }

  /* Navigatie */
  header.site { position: sticky; }
  .nav { height: 64px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { font-size: 0.62rem; letter-spacing: 0.14em; margin-top: 2px; }
  .nav-menu { top: 64px; }

  /* Hero: stack met foto eronder, tekst eerst */
  .hero { padding: 2.5rem 0 3rem; }
  .hero-grid { gap: 2.5rem; }
  .hero-eyebrow { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .hero p.lead { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; padding-top: 1.3rem; max-width: 100%; }
  .hero-stats .stat:last-child { grid-column: span 2; text-align: center; padding-top: 0.8rem; border-top: 1px solid var(--nc-border); }
  .hero-stats .stat .num { font-size: 1.8rem; }
  .hero-stats .stat .lbl { font-size: 0.78rem; }
  .hero-image { aspect-ratio: 1/1.1; }
  .hero-card { display: none; }  /* floating cards verbergen op mobiel — te druk */
  .hero-shape-bg { display: none; }
  .hero-leaf { display: none; }

  /* Trust bar: compacter, items wrappen */
  .trust { padding: 1.5rem 0 !important; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .trust-items { gap: 0.5rem 0.8rem; width: 100%; flex-wrap: wrap; }
  .trust-item { font-size: 0.85rem; gap: 0.35rem; }
  .trust-item svg { width: 18px; height: 18px; }
  /* 2 persoonlijke badges — subtiel naast elkaar */
  .trust-item.trust-badge {
    font-size: 0.75rem;
    gap: 0.35rem;
    color: var(--nc-muted);
    opacity: 0.85;
  }
  .trust-item.trust-badge img { width: 18px !important; height: 18px !important; }

  /* About / over */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { max-width: 100%; min-height: 240px; }
  .about-text p { font-size: 0.98rem; }

  /* Pillars */
  .pillars { gap: 1rem; }
  .pillar { padding: 1.4rem; }

  /* Training tiles — altijd volledige breedte op mobiel */
  .training-tiles { grid-template-columns: 1fr !important; gap: 0.8rem; }
  .tile { min-height: auto; padding: 1.2rem; }
  .sec-head-inline { gap: 1rem !important; grid-template-columns: 1fr !important; }
  .sec-head-inline a.btn-link { align-self: flex-start; }

  /* Why-split */
  .why-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-list li { padding: 0.9rem 1rem; font-size: 0.95rem; }
  .quote-compact { padding: 1.5rem; }
  .quote-compact blockquote { font-size: 1.05rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr !important; gap: 1rem; margin-bottom: 2rem; }
  .review { padding: 1.3rem 1.2rem 1.1rem; }
  .review blockquote { font-size: 1rem; padding-left: 0.8rem; }
  .review-rating .score { font-size: 1.5rem; }
  .review-stats { grid-template-columns: 1fr 1fr !important; gap: 1.5rem 0.8rem; padding: 1.3rem 0.8rem; }
  .review-stat { padding: 0 0.5rem; }
  .review-stat .n { font-size: 1.9rem; }
  .review-stat .l { font-size: 0.85rem; }
  .review-stat .l span { font-size: 0.72rem; }

  /* Documenten-strook */
  .docs-strip { grid-template-columns: 1fr !important; gap: 0.8rem; }
  .doc-card { padding: 1.2rem; gap: 1rem; }
  .doc-icon { width: 40px; height: 40px; }
  .doc-icon svg { width: 20px; height: 20px; }

  /* Page hero (secundaire pagina's) */
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero .lead { font-size: 1rem; }

  /* Breadcrumb */
  .breadcrumb { padding: 0.9rem 0; font-size: 0.8rem; }

  /* CTA-banner */
  .cta-banner { padding: 2.5rem 1.5rem; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .cta-banner > div > a { width: 100%; justify-content: center; }

  /* Buttons op mobiel */
  .btn { padding: 0.85rem 1.3rem; font-size: 0.9rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info { padding: 1.8rem 1.4rem; }
  .info-list { gap: 1.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .field input, .field select, .field textarea { font-size: 16px; /* iOS zoom-prevention */ }

  /* Legal docs */
  .doc-body { padding: 2rem 0 3rem; }
  .doc-intro { padding: 1rem 1.2rem; font-size: 0.92rem; }
  .doc-article { margin-bottom: 1.8rem; padding-bottom: 1.8rem; }
  .doc-article h2 { font-size: 1.15rem; gap: 0.6rem; }
  .doc-article h2 .n { width: 28px; height: 28px; font-size: 0.75rem; }
  .doc-clause { font-size: 0.94rem; padding-left: 0.9rem; }
  .doc-toc ol { grid-template-columns: 1fr !important; gap: 0.2rem; }

  /* Klachtenreglement layout forceren naar 1 kolom */
  .doc-layout { grid-template-columns: 1fr !important; gap: 1.8rem !important; }
  .doc-layout aside > div { position: static !important; }

  /* Over-pagina bio */
  .bio-grid { grid-template-columns: 1fr !important; gap: 1.8rem; }
  .bio-sidebar { position: static !important; }
  .bio-portrait { max-width: 340px; margin-left: auto; margin-right: auto; }
  .bio-content h2 { margin-top: 1.8rem; }
  .bio-content p { font-size: 0.98rem; line-height: 1.7; }
  .media-grid { grid-template-columns: 1fr; }

  /* Trainingen course cards */
  .course-expanded-head { padding: 1.4rem 1.2rem; }
  .course-expanded-head h2 { font-size: 1.3rem !important; }
  .course-meta-bar { grid-template-columns: 1fr !important; }
  .course-meta-bar .mi { border-right: none; border-bottom: 1px solid var(--nc-border-soft); padding: 0.8rem 1.2rem; }
  .course-meta-bar .mi:last-child { border-bottom: none; }
  .course-body { padding: 1.5rem 1.2rem; grid-template-columns: 1fr; gap: 1.5rem; }
  .detail-panel { padding: 1.2rem; }
  .course-footer-bar { padding: 1rem 1.2rem; flex-direction: column; align-items: stretch; }
  .course-footer-bar .btn { justify-content: center; }

  /* Aanpak timeline */
  .timeline { padding-left: 2.5rem; }
  .timeline::before { left: 16px; }
  .tl-step .num { left: -2.5rem; width: 34px; height: 34px; font-size: 0.95rem; }
  .tl-step h3 { font-size: 1.15rem; }
  .tl-step p { font-size: 0.95rem; }
  .care-banner { padding: 2rem 1.3rem; }

  /* Bio-sidebar accreditaties op mobile kleiner */
  .bio-accr-badges img { width: 44px !important; height: 44px !important; }
  .bio-accreditations { padding: 1rem; }

  /* Footer accreditaties op mobile kleiner */
  .footer-accr-badges img { width: 32px !important; height: 32px !important; padding: 2px; }
  .footer-accr-label { font-size: 0.7rem; }

  /* Footer */
  footer.site { padding: 3rem 0 0; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.8rem; padding-bottom: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 1.4rem 0; }
  .footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.3rem; }
  .footer-bottom .legal-links a { margin-left: 0 !important; font-size: 0.8rem; }
}

/* Extra kleine schermen (≤ 380px, bijv. oude iPhone SE) */
@media (max-width: 380px) {
  .container, .container-narrow { padding: 0 0.9rem; }
  h1 { font-size: 1.7rem !important; }
  h2 { font-size: 1.35rem !important; }
  .brand-tag { display: none; }  /* Alleen naam tonen op hele smalle schermen */
  .nav { height: 60px; }
  .nav-menu { top: 60px; }
  .review-stats { grid-template-columns: 1fr !important; }
  .review-stat { border-right: none !important; border-bottom: 1px solid var(--nc-border-soft); padding-bottom: 1rem; }
  .review-stat:last-child { border-bottom: none; padding-bottom: 0; }
}
