/* ==========================================================================
   Bijleren.eu: EDI landingspagina's
   Kleuren en typografie overgenomen uit web.assets_frontend.min.css van
   bijleren.eu (Odoo website theme).
   ========================================================================== */

:root {
  /* Odoo o_color palette van bijleren.eu */
  --o-color-1: #F7B518;   /* primary: amber    */
  --o-color-2: #212529;   /* secondary: donker */
  --o-color-3: #f5f4f0;   /* light: warm wit   */
  --o-color-4: #FFFFFF;
  --o-color-5: #FBDB8E;   /* zacht goud         */

  --primary: var(--o-color-1);
  --primary-dark: #d99a05;
  --primary-text-emphasis: #956a05;
  --secondary: var(--o-color-2);
  --light: var(--o-color-3);
  --soft-gold: var(--o-color-5);

  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-900: #212529;

  --body-color: #495057;
  --heading-font: "Quicksand", "Odoo Unicode Support Noto", system-ui, sans-serif;
  --body-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
  --shadow: 0 .5rem 1.5rem rgba(33, 37, 41, .08);
  --shadow-lg: 0 1rem 3rem rgba(33, 37, 41, .12);
  --container: 1180px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body-color);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0 0 .5rem;
}

h1 { font-size: clamp(2rem, 1.39rem + 1.65vw, 2.625rem); }
h2 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1rem; }

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

/* huisstijl: elke afbeelding krijgt afgeronde hoeken */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* uitzondering: wat al rond is, blijft rond */
img.is-round, .portrait img { border-radius: 50%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lead { font-size: 1.15rem; color: var(--gray-700); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.small { font-size: .875rem; }
.muted { color: var(--gray-600); }

/* -------------------------------------------------------------- header -- */
.site-header {
  background: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* de navbar mag breder zijn dan de content: 9 menu-items passen anders niet */
.site-header .container { max-width: 1320px; }

.navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 50rem;
  box-shadow: var(--shadow-sm);
  padding: .5rem 1.25rem;
}

.navbar-brand img { width: 95px; height: auto; display: block; border-radius: 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0 auto 0 1rem;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: .5rem .6rem;
  border-radius: 50rem;
  color: var(--gray-900);
  font-weight: 500;
  font-size: .92rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .15s ease;
}

.nav-links a:hover { background: var(--light); }
.nav-links a.active { background: var(--primary); color: #fff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-900);
}

/* -------------------------------------------------------------- knoppen -- */
.btn {
  display: inline-block;
  padding: .6rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 50rem;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .15s ease-in-out;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.btn-secondary { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #000; color: #fff; }

.btn-outline { background: transparent; border-color: var(--gray-900); color: var(--gray-900); }
.btn-outline:hover { background: var(--gray-900); color: #fff; }

.btn-light { background: #fff; border-color: #fff; color: var(--gray-900); }
.btn-light:hover { background: var(--light); color: var(--gray-900); }

.btn-lg { padding: .8rem 1.9rem; font-size: 1.09375rem; }
.btn-sm { padding: .4rem 1rem; font-size: .875rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; }

/* -------------------------------------------------------------- secties -- */
section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--secondary); }
.bg-dark, .bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.bg-dark .lead, .bg-dark p { color: rgba(255, 255, 255, .8); }
.bg-gold { background: var(--soft-gold); }

/* Blokken met een eigen witte achtergrond staan soms binnen een donkere sectie.
   Die mogen de witte tekstkleur van .bg-dark niet erven, anders staat er wit
   op wit. Hier zetten we ze terug naar de normale tekstkleuren. */
.bg-dark .card,
.bg-dark .source,
.bg-dark .person,
.bg-dark .quote,
.bg-dark .form-card,
.bg-dark .course-card,
.bg-dark .table-wrap { color: var(--body-color); }

/* Elk element binnen zo'n blok erft van het blok zelf, in plaats van de witte
   kleur van .bg-dark op te pikken. Dit vangt ook losse <span>'s op die geen
   eigen klasse hebben, zoals de waarden in een .spec-lijst. */
.bg-dark .card *,
.bg-dark .source *,
.bg-dark .person *,
.bg-dark .quote *,
.bg-dark .form-card *,
.bg-dark .course-card *,
.bg-dark .table-wrap * { color: inherit; }

/* en daarna weer de uitzonderingen die wél een eigen kleur horen te hebben */
.bg-dark .card h1, .bg-dark .card h2, .bg-dark .card h3, .bg-dark .card h4,
.bg-dark .source h3, .bg-dark .person h3, .bg-dark .course-card h3,
.bg-dark .form-card h3, .bg-dark .table-wrap th,
.bg-dark .card strong, .bg-dark .quote cite { color: var(--gray-900); }

.bg-dark .card .muted, .bg-dark .card .small.muted,
.bg-dark .source .meta, .bg-dark .person .role { color: var(--gray-600); }

.bg-dark .card .eyebrow, .bg-dark .card a,
.bg-dark .source a, .bg-dark .form-card a { color: var(--primary-text-emphasis); }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-text-emphasis);
  margin-bottom: .75rem;
}
.bg-dark .eyebrow { color: var(--primary); }

.hr-brand {
  width: 64px;
  height: 3px;
  background: var(--primary);
  border: 0;
  margin: 0 0 1.25rem;
}
.section-head .hr-brand { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- hero -- */
.hero {
  background: linear-gradient(160deg, var(--light) 0%, #fff 60%);
  padding: 4rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 { margin-bottom: 1rem; }
.hero .lead { margin-bottom: 1.75rem; }

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.hero-card ul { margin: 0; padding-left: 1.1rem; }
.hero-card li { margin-bottom: .6rem; }
.hero-card li:last-child { margin-bottom: 0; }

.hero-compact { padding: 3.5rem 0; }
.hero-compact .container { max-width: 820px; text-align: center; }

/* ---------------------------------------------------------------- grid -- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* --------------------------------------------------------------- cards -- */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--soft-gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* klikbare kaart die naar een anker op dezelfde pagina springt */
a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover { text-decoration: none; border-color: var(--primary); }
a.card h3 { color: var(--gray-900); }
a.card .jump { display: block; margin-top: .75rem; font-size: .82rem; font-weight: 700; color: var(--primary-text-emphasis); }

/* blok per ondersteuningsvorm */
.support { scroll-margin-top: 6rem; }
.support-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.support-head .card-icon { margin-bottom: 0; flex: 0 0 auto; }
.support-head h2 { margin-bottom: 0; }

.spec {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .9rem;
}
.spec li { display: flex; gap: .75rem; padding: .55rem 0; border-bottom: 1px dashed var(--gray-200); }
.spec li:last-child { border-bottom: 0; }
.spec dt, .spec .k { flex: 0 0 38%; font-weight: 600; color: var(--gray-900); }

/* strook die aangeeft dat het om de officiële modules gaat */
.official {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--primary);
}
.official img { width: 96px; height: auto; border-radius: 0; }
.official h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.official p { font-size: .95rem; }

@media (max-width: 640px) {
  .official { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* modulekaart: nummer, titel, hoofddoel en de leerdoelen eronder */
.module h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.module .module-goal {
  font-weight: 600;
  color: var(--gray-900);
  padding-bottom: .9rem;
  margin-bottom: .9rem;
  border-bottom: 1px solid var(--gray-200);
}
.module .check-list li { font-size: .9rem; padding-top: .25rem; padding-bottom: .25rem; }
.module .check-list li::before { top: .35rem; }

/* leerdoelen zitten ingeklapt, zodat je eerst alle onderwerpen ziet */
.module-goals summary {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary-text-emphasis);
  padding: .35rem 0;
}
.module-goals summary::-webkit-details-marker { display: none; }
.module-goals summary::before {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft-gold);
  color: var(--primary-text-emphasis);
  font-size: 1rem;
  line-height: 1;
}
.module-goals[open] summary::before { content: "–"; }
.module-goals summary:hover { text-decoration: underline; }
.module-goals .check-list { margin-top: .75rem; }

.module-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--gray-200);
}
.module-date {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-900);
}
.module-date.muted { font-weight: 500; color: var(--gray-600); }

@media (max-width: 640px) {
  .module-foot { flex-direction: column; align-items: stretch; }
  .module-foot .btn { width: 100%; }
}

.numbered-card { position: relative; padding-left: 4.5rem; }
.numbered-card .num {
  position: absolute;
  left: 1.5rem;
  top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .95rem;
}

/* ------------------------------------------------------------- cursussen -- */
.course-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.course-card .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  font-size: 2.6rem;
  background: var(--soft-gold);
  overflow: hidden;
}
/* een echte foto in de thumb volgt de bovenhoeken van de kaart */
.course-card .thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.course-card .thumb.dark { background: var(--secondary); }
.course-card .thumb.light { background: var(--light); }

.course-body { padding: 1.5rem; flex: 1 1 auto; display: flex; flex-direction: column; }
.course-body h3 { font-size: 1.2rem; }
.course-body .desc { flex: 1 1 auto; }

.course-meta {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: .9rem;
  color: var(--gray-600);
}
.course-meta li { padding: .3rem 0; border-bottom: 1px dashed var(--gray-200); }
.course-meta li:last-child { border-bottom: 0; }
.course-meta strong { color: var(--gray-900); font-weight: 600; }

.course-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.price { font-family: var(--heading-font); font-weight: 700; font-size: 1.3rem; color: var(--gray-900); }
.price small { display: block; font-size: .75rem; font-weight: 500; color: var(--gray-600); }

/* ---------------------------------------------------------------- badge -- */
.badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }

.badge {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 50rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.badge-digital { background: #E7F1FF; color: #0a4b9c; }
.badge-live    { background: #FDEFD3; color: var(--primary-text-emphasis); }
.badge-hybrid  { background: #E4F6EC; color: #10431c; }
.badge-level   { background: var(--gray-200); color: var(--gray-700); }
.badge-soon    { background: var(--secondary); color: var(--primary); }

/* ---------------------------------------------------------------- lijst -- */
.check-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.check-list li { position: relative; padding: .35rem 0 .35rem 1.9rem; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
}

/* --------------------------------------------------------------- tabel -- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); }
table.agenda { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
table.agenda th, table.agenda td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--gray-200); }
table.agenda th { background: var(--light); font-family: var(--heading-font); font-weight: 600; color: var(--gray-900); font-size: .9rem; }
table.agenda tr:last-child td { border-bottom: 0; }
table.agenda td { font-size: .95rem; }

/* --------------------------------------------------------------- stats -- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--heading-font); font-weight: 700; font-size: 2.4rem; color: var(--primary); line-height: 1; }
.stat p { margin: .5rem 0 0; font-size: .95rem; }

/* --------------------------------------------------------------- quote -- */
.quote {
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.quote blockquote { margin: 0 0 1rem; font-size: 1.02rem; color: var(--gray-700); }
.quote cite { font-style: normal; font-weight: 600; color: var(--gray-900); font-family: var(--heading-font); }

/* citaat met een pasfoto naast de naam */
.quote-author { display: flex; align-items: center; gap: .9rem; }
.quote-author .avatar { width: 56px; height: 56px; margin-bottom: 0; flex: 0 0 auto; }
.quote .role { display: block; font-size: .85rem; color: var(--gray-600); font-weight: 400; font-family: var(--body-font); }

/* ------------------------------------------------------------ sprekers -- */
/* twee personen naast elkaar */
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.person {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.75rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}

/* in een kolom van de helft past een kleiner portret beter */
.people .person { grid-template-columns: 116px 1fr; gap: 1.35rem; padding: 1.75rem; }
.people .person .portrait { width: 116px; height: 116px; font-size: 2rem; }
.people .person .role { font-size: .9rem; }

.person .portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--soft-gold);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--primary-text-emphasis);
}
.person .portrait.dark { background: var(--secondary); color: var(--primary); }

/* echte foto vult de cirkel; iets hoger uitgesneden zodat het gezicht centraal valt */
.person .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  display: block;
}
.person .role { font-family: var(--heading-font); font-weight: 600; color: var(--primary-text-emphasis); margin-bottom: .75rem; }
.person h3 { margin-bottom: .15rem; }

/* kleine ronde pasfoto, bruikbaar in een gewone kaart */
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin-bottom: 1rem;
}

/* twee overlappende pasfoto's, voor een trainersband */
.avatar-pair {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.avatar-pair img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
}
.avatar-pair img + img { margin-left: -22px; }

.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }
.tag {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: 50rem;
  background: var(--light);
  border: 1px solid var(--gray-200);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
}

.note {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary);
  background: #FDEFD3;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--primary-text-emphasis);
}
.note strong { color: var(--primary-text-emphasis); }

/* -------------------------------------------------------- EDI-badge -- */
.badge-block {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 2rem;
  align-items: center;
}
.badge-block img { width: 190px; height: auto; display: block; }
.badge-block blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-700);
}
.bg-dark .badge-block blockquote { color: rgba(255, 255, 255, .85); }
.badge-block cite { font-style: normal; font-family: var(--heading-font); font-weight: 600; color: var(--gray-900); }
.bg-dark .badge-block cite { color: #fff; }
.badge-block cite span { display: block; font-family: var(--body-font); font-weight: 400; font-size: .85rem; color: var(--gray-600); }
.bg-dark .badge-block cite span { color: rgba(255, 255, 255, .7); }

.badge-inline { display: flex; align-items: center; gap: 1rem; }
.badge-inline img { width: 92px; height: auto; flex: 0 0 auto; }

/* ---------------------------------------------------------- bronnen -- */
.source {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}
.source .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--soft-gold);
  font-size: 1.6rem;
}
.source h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.source .meta { font-size: .82rem; color: var(--gray-600); margin-bottom: .6rem; }
.source p:last-child { margin-bottom: 0; }
.source .ext::after { content: " ↗"; font-size: .85em; }

/* --------------------------------------------------------- referenties -- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.logo-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 84px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-600);
}

.case { border-top: 4px solid var(--primary); }

/* ------------------------------------------------------------- FAQ/SEO -- */
.qa-group { scroll-margin-top: 6rem; }

.qa {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  scroll-margin-top: 6rem;
}
.qa:last-child { border-bottom: 0; }
.qa h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  display: flex;
  gap: .6rem;
}
.qa h3::before {
  content: "?";
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: .1rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}
.qa p:last-child { margin-bottom: 0; }
.qa .answer-lead { font-weight: 600; color: var(--gray-900); }

.toc { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.toc a {
  display: block;
  padding: .7rem 1rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-900);
  text-decoration: none;
}
.toc a:hover { border-color: var(--primary); text-decoration: none; }

table.gloss td:first-child { font-weight: 600; color: var(--gray-900); width: 30%; }

/* ------------------------------------------------------------ accordion -- */
.faq details {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: .75rem;
}
.faq summary {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { margin-bottom: .75rem; }
.faq p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- form -- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--gray-900); margin-bottom: .35rem; }
.form-group .req { color: #dc3545; }
.form-control {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-900);
  background: #fff;
}
.form-control:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(247, 181, 24, .25); }
textarea.form-control { min-height: 110px; resize: vertical; }

/* ------------------------------------------------------- ingebed form -- */
.form-embed {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  overflow: hidden;
}
.form-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
}

/* ------------------------------------------------------------------ cta -- */
.cta-band { background: var(--secondary); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .8); max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { justify-content: center; margin-top: 1.75rem; }

/* -------------------------------------------------------------- footer -- */
.site-footer { background: var(--secondary); color: rgba(255, 255, 255, .75); padding: 3.5rem 0 0; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255, 255, 255, .75); }
.site-footer a:hover { color: var(--primary); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-logo { background: #fff; border-radius: 10px; padding: .6rem .8rem; display: inline-block; margin-bottom: 1rem; }
.footer-logo img { width: 110px; display: block; border-radius: 8px; }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .85rem;
  text-align: center;
}

/* --------------------------------------------------------- cookiebar -- */
.cookiebar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  background: var(--secondary);
  color: rgba(255, 255, 255, .85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cookiebar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 1.4rem;
}

.cookiebar-text { font-size: .9rem; line-height: 1.55; }
.cookiebar-text strong { color: #fff; }
.cookiebar-text a { color: var(--primary); text-decoration: underline; }

.cookiebar-actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.cookiebar .btn-outline { border-color: rgba(255, 255, 255, .55); color: #fff; }
.cookiebar .btn-outline:hover { background: #fff; color: var(--gray-900); }

/* melding op de plek van een geblokkeerd formulier */
.embed-consent {
  background: var(--light);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.embed-consent p { font-size: .95rem; }
.embed-consent p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .cookiebar-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cookiebar-actions .btn { flex: 1 1 auto; }
}

/* --------------------------------------------------------- responsive -- */
@media (max-width: 1199px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .toc { grid-template-columns: repeat(2, 1fr); }
}

/* sprekers blijven links/rechts staan; alleen bínnen de kaart schuift het
   portret boven de tekst zodra de kolom te smal wordt */
@media (max-width: 900px) {
  .people .person { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .people .person .tags { justify-content: center; }
}

@media (max-width: 991px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* navigatie klapt vroeger dicht dan de rest: 9 menu-items passen niet onder ~1320px */
@media (max-width: 1319px) {
  .nav-toggle { display: block; }
  .navbar { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: .5rem 0 0;
    gap: 0;
  }
  .navbar.open .nav-links { display: flex; }
  .navbar .btn { display: none; }
  .navbar.open .btn { display: inline-block; width: 100%; margin-top: .5rem; }
}

@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .toc { grid-template-columns: 1fr; }
  .support-head { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .course-foot { flex-direction: column; align-items: stretch; }
  .course-foot .btn { width: 100%; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .person { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .person .tags { justify-content: center; }
  .badge-block { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .source { grid-template-columns: 1fr; }
  .people { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
}
