/* ============================================================
   TechBean — Gedeeld Stylesheet (Geoptimaliseerd)
   Huisstijl: DM Serif Display + DM Sans | Forest-groen palet
   Versie: 2.0 (Cleaned & Modularized)
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Forest palette */
  --forest:       hsl(150 20% 30%);
  --forest-dark:  hsl(150 18% 22%);
  --forest-light: hsl(150 22% 42%);
  --forest-tint:  hsl(150 20% 94%);

  /* Accent */
  --slate:        hsl(200 55% 42%);
  --slate-tint:   hsl(200 50% 92%);

  /* Warmte */
  --amber:        hsl(38 75% 52%);
  --amber-tint:   hsl(38 60% 94%);

  /* Neutraal */
  --near-black:   hsl(150 5% 12%);
  --stone:        hsl(150 5% 45%);
  --mist:         hsl(150 8% 90%);
  --off-white:    hsl(150 15% 97%);
  --white:        #ffffff;

  /* Aliassen (Backward compat) */
  --green:        var(--forest);
  --green-soft:   hsla(150, 20%, 30%, 0.66);
  --green-dim:    hsl(150 20% 30% / 0.10);
  --green-glow:   var(--forest-light);
  --ink:          var(--near-black);
  --ink-mid:      var(--stone);
  --ink-light:    hsl(150 5% 62%);
  --sand:         var(--forest-tint);

  /* Radius */
  --radius-sm: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;

  /* Easing */
  --ease: cubic-bezier(0.22, 0.68, 0, 1.2);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  background: var(--off-white);
  color: var(--near-black);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-alt { background: var(--forest-tint); }

/* ── TYPOGRAPHY ── */
h1, .h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--near-black);
}
h2, .h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--near-black);
}
h3, .h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--near-black);
}
h4, .h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
}

.serif {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
}
em { font-style: italic; color: var(--forest-light); }

/* ── UTILITIES ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--forest-tint);
  border: 1px solid hsl(150 20% 30% / 0.22);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
}

/* Tag Modifiers */
.tag-accent {
  background: hsl(150 28% 42% / 0.2);
  color: hsl(150 40% 70%);
  border-color: hsl(150 28% 42% / 0.3);
}

.eyebrow-group { margin-bottom: 2rem; }
.eyebrow-group h2 { margin-top: 0.75rem; }

/* Layout Helpers */
.text-center-max {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.body-text {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1rem; height: 1rem; transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* Button Sizes */
.btn-small {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

.btn-fullwidth {
  width: 100%;
  justify-content: center;
}

/* Button Variants */
.btn-dark {
  background: var(--near-black);
  color: var(--white);
  box-shadow: 0 4px 20px hsl(150 5% 12% / 0.25);
}
.btn-dark:hover { box-shadow: 0 8px 32px hsl(150 5% 12% / 0.35); }

.btn-outline {
  background: transparent;
  color: var(--near-black);
  border: 1.5px solid hsl(150 5% 12% / 0.2);
}
.btn-outline:hover { border-color: var(--forest); color: var(--forest); }

.btn-green {
  background: var(--forest);
  color: var(--white) !important;
  box-shadow: 0 4px 20px hsl(150 20% 30% / 0.3);
}
.btn-green:hover {
  background: var(--forest-dark);
  box-shadow: 0 8px 32px hsl(150 20% 30% / 0.4);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: hsl(150 15% 97% / 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--mist);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--forest);
  text-decoration: none;
}
.nav-logo img { display: block; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }

/* Mobile Menu Toggle (CSS only structure) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--near-black);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px hsl(0 0% 0% / 0.1);
  }
  .nav-links.mobile-open { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 95svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background: var(--off-white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, hsl(150 35% 55% / 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, hsl(200 55% 42% / 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 75%, hsl(150 20% 30% / 0.06) 0%, transparent 50%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image: url(images/hero-bg.png);
  opacity: 0.07;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── STRIP ── */
.strip { background: var(--near-black); padding: 1.1rem 0; overflow: hidden; }
.strip-track {
  display: flex; gap: 3rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.strip-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: hsl(0 0% 100% / 0.65); flex-shrink: 0;
}
.strip-dot {
  width: 0.35rem; height: 0.35rem;
  border-radius: 50%; background: var(--forest-light);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── THESIS ── */
.thesis-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--forest-tint);
  border: 1px solid hsl(150 20% 30% / 0.2);
  border-radius: 99px; padding: 0.5rem 1rem;
  font-size: 0.8rem; color: var(--forest); font-weight: 500; margin-top: 1.25rem;
}
.thesis-badge img { width: 1.2rem; height: 1.2rem; }

.thesis-section {
  padding: 7rem 0 6rem;
  background: var(--white);
}
.thesis-inner { max-width: 860px; margin: 0 auto; }
.thesis-statement {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--near-black);
  margin: 1rem 0 2.5rem;
}
.thesis-body {
  font-size: 1.08rem; color: var(--stone); line-height: 1.85; margin-bottom: 1.5rem;
}
.thesis-body strong { color: var(--near-black); }
.thesis-split {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .thesis-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.thesis-path {
  padding: 2rem; border-radius: var(--radius-xl); position: relative; overflow: hidden;
}
.thesis-path-before {
  background: hsl(0 60% 97%); border: 1px solid hsl(0 50% 88%);
}
.thesis-path-after {
  background: var(--forest-tint); border: 1px solid hsl(150 20% 30% / 0.2);
}
.thesis-path-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.thesis-path-before .thesis-path-label { color: hsl(0 50% 55%); }
.thesis-path-after  .thesis-path-label { color: var(--forest); }
.thesis-path ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.thesis-path li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--stone); line-height: 1.5;
}
.thesis-path li::before { flex-shrink: 0; font-size: 0.85rem; margin-top: 0.05rem; }
.thesis-path-before li::before { width: 1rem; height: 1rem; content: url(images/bean-red.svg); font-weight: 700; }
.thesis-path-after  li::before { width: 0.8rem; height: 0.8rem; content: url(images/bean.svg); font-weight: 700; }

/* ── ENDORSEMENTS ── */
.endorsements-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem;
}
@media (min-width: 640px)  { .endorsements-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .endorsements-grid { grid-template-columns: 1fr 1fr 1fr; } }

.endorse-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl); padding: 2rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.endorse-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px hsl(150 20% 30% / 0.1); }
.endorse-featured { background: var(--near-black); color: var(--white); }
.endorse-featured::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 200%; height: 200%;
  background: radial-gradient(circle, hsl(150 28% 42% / 0.15) 0%, transparent 60%);
  pointer-events: none;
}
@media (min-width: 1024px) { .endorse-featured { grid-row: span 2; } }
.endorse-quote-mark {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic; font-size: 5rem; line-height: 0.4;
  color: var(--forest-light);
}
.endorse-featured .endorse-quote-mark { color: hsl(150 40% 55%); }
.endorse-text { font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.5rem; flex-grow: 1; color: var(--stone); }
.endorse-featured .endorse-text { color: hsl(0 0% 100% / 0.75); }
.endorse-footer {
  display: flex; align-items: center; gap: 0.9rem;
  padding-top: 1.25rem; border-top: 1px solid var(--mist);
}
.endorse-featured .endorse-footer { border-top-color: hsl(0 0% 100% / 0.1); }
.endorse-avatar {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  border-radius: 50%; background: var(--forest-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--forest);
}
.endorse-featured .endorse-avatar { background: hsl(150 28% 42% / 0.2); color: hsl(150 40% 70%); }
.endorse-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.1rem; color: var(--near-black); }
.endorse-featured .endorse-name { color: var(--white); }
.endorse-role { font-size: 0.75rem; color: var(--stone); }
.endorse-featured .endorse-role { color: hsl(0 0% 100% / 0.45); }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 1200px; margin: 3rem auto 0;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.contact-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--forest-tint); border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.contact-info-card a,
.contact-info-card p { font-size: 0.85rem; color: var(--stone); text-decoration: none; }
.contact-info-card a:hover { color: var(--forest); }
.contact-form-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--near-black); }
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--mist); border-radius: var(--radius-lg);
  font-family: "DM Sans", sans-serif; font-size: 0.9rem;
  color: var(--near-black); background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 3px hsl(150 20% 30% / 0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 180px; }

/* Honeypot (Spam protection) */
.form-honeypot {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.success-msg {
  display: none; padding: 1.25rem;
  background: var(--forest-tint); border: 1px solid hsl(150 20% 30% / 0.2);
  border-radius: var(--radius-lg); color: var(--forest); font-weight: 500; text-align: center;
}
.success-msg.show { display: block; }

/* ── FINAL CTA ── */
.cta-section {
  background: var(--near-black); border-radius: var(--radius-xl);
  margin: 0 1.5rem 5rem; padding: 5rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, hsl(150 28% 42% / 0.2), transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  color: var(--white); line-height: 1.15; margin: 1rem 0 1.5rem; position: relative;
}
.cta-section p { font-size: 1rem; color: hsl(0 0% 100% / 0.6); max-width: 36rem; margin: 0 auto 2.5rem; line-height: 1.7; position: relative; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; }

/* Nieuwe class voor de transparante knop in de CTA */
.btn-ghost-inverse {
  background: hsl(0 0% 100% / 0.1);
  color: hsl(0 0% 100% / 0.8);
  border: 1.5px solid hsl(0 0% 100% / 0.15);
}
.btn-ghost-inverse:hover {
  background: hsl(0 0% 100% / 0.2);
  color: hsl(0 0% 100% / 1);
  border-color: hsl(0 0% 100% / 0.3);
}

/* ── FOOTER ── */
footer { padding: 3rem 0; border-top: 1px solid var(--mist); background: var(--off-white); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-brand-name { font-family: "DM Serif Display", Georgia, serif; font-style: italic; font-size: 1.4rem; color: var(--forest); }
.footer-tagline { font-size: 0.85rem; color: var(--stone); margin-top: 0.25rem; }
.footer-links { display: flex; gap: 1rem; list-style: none; align-items: center; }
.footer-links a { font-size: 0.85rem; color: var(--stone); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--forest); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; background: var(--forest-tint);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; font-size: 0.75rem; font-weight: 700; color: var(--stone); text-decoration: none;
}
.footer-social a:hover { background: var(--forest-tint); color: var(--forest); }
.footer-copy {
  width: 100%; text-align: center; font-size: 0.8rem; color: var(--stone);
  padding-top: 2rem; border-top: 1px solid var(--mist); margin-top: 1rem;
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 1; transform: none; }
.js-loaded .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s var(--ease); }
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   INDEX.HTML — Pagina-specifieke stijlen
   ============================================================ */

/* Profile card */
.profile-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: 0 24px 64px hsl(150 20% 30% / 0.1), 0 2px 8px hsl(150 5% 12% / 0.06);
  text-align: center;
}
.profile-avatar-wrap {
  width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: var(--forest-tint); border: 3px solid hsl(150 20% 30% / 0.2);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.profile-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-family: "DM Serif Display", Georgia, serif; font-size: 1.5rem; font-style: italic; color: var(--near-black); margin-bottom: 0.25rem; }
.profile-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); margin-bottom: 1.5rem; }
.profile-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--mist); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--mist);
}
.profile-stat { background: var(--white); padding: 1rem 0.75rem; }
.profile-stat-num { font-family: "DM Serif Display", Georgia, serif; font-size: 1.75rem; color: var(--forest); line-height: 1; margin-bottom: 0.2rem; }
.profile-stat-label { font-size: 0.7rem; color: var(--stone); line-height: 1.3; }

/* Help cards */
.help-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .help-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.help-card { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 2.5rem; transition: transform 0.25s var(--ease), box-shadow 0.25s ease; }
.help-card:hover { transform: translateY(-4px); }
.help-card-po { background: var(--near-black); color: var(--white); }
.help-card-po::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, hsl(150 28% 42% / 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.help-card-po:hover { box-shadow: 0 20px 60px hsl(150 5% 12% / 0.35); }
.help-card-training { background: var(--forest-tint); border: 1px solid var(--mist); }
.help-card-training:hover { box-shadow: 0 20px 60px hsl(150 20% 30% / 0.12); }
.help-card-num { font-family: "DM Serif Display", Georgia, serif; font-size: 4rem; font-style: italic; line-height: 1; margin-bottom: 1.5rem; }
.help-card-po       .help-card-num { color: hsl(0 0% 100% / 0.1); }
.help-card-training .help-card-num { color: hsl(150 20% 30% / 0.12); }
.help-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
.help-card-po       h3 { color: var(--white); }
.help-card-training h3 { color: var(--near-black); }
.help-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.help-card-po       p { color: hsl(0 0% 100% / 0.65); }
.help-card-training p { color: var(--stone); }
.help-result { padding: 1rem; border-radius: var(--radius-lg); font-size: 0.85rem; font-weight: 500; margin-bottom: 1.5rem; }
.help-card-po       .help-result { background: hsl(150 28% 42% / 0.15); color: hsl(150 40% 70%); }
.help-card-training .help-result { background: hsl(150 20% 30% / 0.1); color: var(--forest); }

.accelerator-teaser {
  margin-top: 2rem;
  background: linear-gradient(135deg, hsl(150 20% 30% / 0.07) 0%, hsl(150 22% 42% / 0.03) 100%);
  border: 1.5px solid hsl(150 20% 30% / 0.18); border-radius: var(--radius-xl); padding: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.accelerator-teaser h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--near-black); margin-bottom: 0.4rem; }
.accelerator-teaser p { font-size: 0.95rem; color: var(--stone); line-height: 1.6; }

/* About (index) */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.about-img-frame {
  background: var(--forest-tint); border-radius: var(--radius-xl); padding: 2.5rem;
  display: flex; align-items: center; justify-content: center; min-height: 300px; overflow: hidden;
}
.about-img-frame img { width: 100%; max-width: 280px; border-radius: var(--radius-xl); object-fit: cover; }
.about-img-fallback { font-family: "DM Serif Display", Georgia, serif; font-style: italic; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--forest); text-align: center; line-height: 1.2; }
.about-img-wrap { position: relative; }
.about-quote {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px hsl(150 20% 30% / 0.1); max-width: 220px;
}
.about-quote p { font-size: 0.8rem; color: var(--stone); line-height: 1.5; }
.about-quote-author { font-size: 0.7rem; color: var(--forest); font-weight: 700; margin-top: 0.4rem; }

/* Video cards */
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px hsl(150 20% 30% / 0.1); }
.video-thumb { position: relative; padding-bottom: 56.25%; height: 0; background: var(--forest-tint); }
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: hsl(150 5% 12% / 0.35); transition: background 0.2s; cursor: pointer;
}
.video-card:hover .video-play-btn { background: hsl(150 5% 12% / 0.5); }
.video-play-btn svg { width: 3rem; height: 3rem; fill: white; filter: drop-shadow(0 2px 8px hsl(0 0% 0% / 0.3)); }
.video-notice {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  font-size: 0.72rem; color: white; background: hsl(0 0% 0% / 0.6);
  padding: 5px 8px; border-radius: 6px; line-height: 1.4; pointer-events: none;
}
.video-info { padding: 1.5rem; }
.video-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.video-info p { font-size: 0.85rem; color: var(--stone); line-height: 1.55; }

/* ============================================================
   PRODUCT-OWNER-ACCELERATOR.HTML — Specifieke stijlen
   ============================================================ */

/* Hero card (pijn-kaart) */
.hero-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: 0 24px 64px hsl(150 20% 30% / 0.1), 0 2px 8px hsl(150 5% 12% / 0.06);
}
.hero-card-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-bottom: 1.5rem; }
.pain-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--mist); }
.pain-item:last-child { border-bottom: none; padding-bottom: 0; }
.pain-icon { width: 2rem; height: 2rem; flex-shrink: 0; background: hsl(0 80% 60% / 0.08); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.pain-item p { font-size: 0.9rem; color: var(--stone); line-height: 1.5; }
.pain-item strong { color: var(--near-black); }

/* Garantie badge */
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--forest-tint); border: 1px solid hsl(150 20% 30% / 0.2);
  border-radius: 99px; padding: 0.5rem 1rem;
  font-size: 0.8rem; color: var(--forest); font-weight: 500; margin-top: 1.25rem;
}
.guarantee-badge svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* Story sectie */
.story-section { background: var(--near-black); color: var(--white); padding: 6rem 0; }
.story-inner { max-width: 780px; margin: 0 auto; }
.story-inner .tag { background: hsl(150 28% 42% / 0.2); color: hsl(150 40% 70%); border-color: hsl(150 28% 42% / 0.3); }
.story-inner h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.2; letter-spacing: -0.02em; color: var(--white); margin: 1rem 0 2rem;
}
.story-inner h2 em { font-style: italic; color: hsl(150 40% 60%); }
.story-body { font-size: 1.08rem; line-height: 1.85; color: hsl(0 0% 100% / 0.72); margin-bottom: 1.5rem; }
.story-body strong { color: var(--white); }
.story-pull {
  border-left: 3px solid var(--forest-light); padding: 1.25rem 1.75rem;
  background: hsl(150 28% 42% / 0.1); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem; font-style: italic; color: hsl(0 0% 100% / 0.9); line-height: 1.55; margin: 2.5rem 0;
}

/* Probleem trio */
.cost-trio { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .cost-trio { grid-template-columns: repeat(3, 1fr); } }
.cost-box {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-xl); padding: 2rem; position: relative; overflow: hidden;
}
.cost-box-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest-dark), var(--forest-light));
}
.cost-box-num { font-family: "DM Serif Display", Georgia, serif; font-size: 3rem; color: var(--forest); line-height: 1; margin-bottom: 1rem; }
.cost-box h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--near-black); }
.cost-box p { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }

/* Resultaten grid */
.results-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .results-grid { grid-template-columns: 1fr 1fr; } }
.result-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease);
}
.result-card:hover { box-shadow: 0 8px 32px hsl(150 20% 30% / 0.1); transform: translateY(-3px); }
.result-icon { width: 2.5rem; height: 2.5rem; flex-shrink: 0; background: var(--forest-tint); border-radius: 0.625rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.result-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--near-black); }
.result-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.55; }

/* Programma weken */
.weeks-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 3rem; }
.weeks-header h2 { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; max-width: 28rem; }
.weeks-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--mist); border: 1px solid var(--mist); border-radius: var(--radius-xl); overflow: hidden;
}
@media (min-width: 768px) { .weeks-grid { grid-template-columns: repeat(4, 1fr); } }
.week-cell { background: var(--white); padding: 2rem 1.75rem; transition: background 0.25s ease; cursor: default; }
.week-cell:hover { background: var(--forest-tint); }
.week-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.75rem; }
.week-cell h3 { font-size: 1rem; font-weight: 600; line-height: 1.3; color: var(--near-black); margin-bottom: 0.6rem; }
.week-cell p { font-size: 0.85rem; color: var(--stone); line-height: 1.55; }
.week-output { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--mist); font-size: 0.78rem; font-weight: 600; color: var(--forest); }

/* Werkwijze */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }
.how-card { position: relative; overflow: hidden; background: var(--near-black); color: var(--white); border-radius: var(--radius-xl); padding: 2.5rem 2rem; }
.how-card::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, hsl(150 28% 42% / 0.15) 0%, transparent 60%); pointer-events: none;
}
.how-num { font-family: "DM Serif Display", Georgia, serif; font-size: 4rem; font-style: italic; color: hsl(0 0% 100% / 0.08); line-height: 1; margin-bottom: 1.5rem; }
.how-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.how-card p { font-size: 0.9rem; color: hsl(0 0% 100% / 0.65); line-height: 1.65; }

/* Voor wie */
.for-who-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 600px) { .for-who-grid { grid-template-columns: 1fr 1fr; } }
.for-who-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease);
}
.for-who-card:hover { box-shadow: 0 8px 32px hsl(150 20% 30% / 0.1); transform: translateY(-3px); }
/* fw-icon verwijderd (ongebruikt) */
.for-who-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.for-who-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.55; }

/* Over Marco (accelerator) */
.about-band { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-band { grid-template-columns: 1fr 1fr; } }
.about-accent { background: var(--forest-tint); border-radius: var(--radius-xl); padding: 3rem; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.about-name-big { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2rem, 5vw, 3.5rem); font-style: italic; color: var(--forest); text-align: center; line-height: 1.2; }
.about-text h2 { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-top: 0.75rem; margin-bottom: 1.25rem; }
.credentials { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.credential-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--stone); }
.credential-dot { width: 1rem; height: 1rem; content: url(images/bean.svg); font-weight: 700; }
.trainer-img-frame {
  background: var(--forest-tint); border-radius: var(--radius-xl); 
  display: flex; align-items: center; justify-content: center; min-height: 300px; overflow: hidden;
}
.trainer-img-frame img { width: 100%; max-width: 1000px; border-radius: var(--radius-xl); object-fit: cover; }

/* Pricing */
.pricing-section { padding: 6rem 0; }
.pricing-wrap { max-width: 1060px; margin: 3rem auto 0; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 860px) { .pricing-wrap { grid-template-columns: 1.1fr 1fr; gap: 2.5rem; } }
.pricing-main { background: var(--near-black); color: var(--white); border-radius: var(--radius-xl); padding: 1.75rem; position: relative; overflow: hidden; }
.pricing-main::after {
  content: ""; position: absolute; bottom: -30%; right: -10%; width: 300px; height: 300px;
  background: radial-gradient(circle, hsl(150 28% 42% / 0.25), transparent 70%); pointer-events: none;
}
.pricing-badge { text-align: center; display: block; background: hsl(150 28% 42% / 0.25); color: hsl(150 40% 70%); border-radius: 99px; padding: 0.3rem 0.9rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.75rem; }
.value-stack { width: 100%; border-collapse: collapse; margin-bottom: 1.75rem; position: relative; z-index: 1; }
/* .value-stack tr { border-bottom: 0px solid hsl(0 0% 100% / 0.07); } */
.value-stack tr:last-child { border-bottom: none; }
.value-stack td { padding: 0.65rem 0; font-size: 0.88rem; color: hsl(0 0% 100% / 0.8); }
.value-stack td.val-label { display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0 0 0;}
.value-stack td.val-sublabel { display: flex; align-items: center;padding: 0 0 0 1.5rem; }
.val-check { content: "✓"; flex-shrink: 0; color: hsl(150 40% 65%); font-weight: 700; margin-top: 1px;}
.value-total-row td { padding-top: 1rem; font-weight: 600; border-top: 1.5px solid hsl(0 0% 100% / 0.15) !important; border-bottom: none !important; }
.value-total-row .val-label-total { font-size: 0.85rem; color: hsl(0 0% 100% / 0.6); }
.value-total-row .val-total-price { text-align: right; font-size: 1.1rem; color: hsl(0 0% 100% / 0.45); text-decoration: line-through; }
.pricing-divider { border: none; height: 1px; background: hsl(0 0% 100% / 0.1); margin: 1.5rem 0; position: relative; z-index: 1; }
.pricing-actual { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.5rem; }
.pricing-amount { font-family: "DM Serif Display", Georgia, serif; font-size: 3.5rem; font-weight: 700; line-height: 1; color: var(--white); }
.pricing-period { font-size: 0.85rem; color: hsl(0 0% 100% / 0.5); }
.pricing-sub { font-size: 0.82rem; color: hsl(0 0% 100% / 0.45); margin-bottom: 1.75rem; position: relative; z-index: 1; }
.pricing-cta { display: flex; width: 100%; justify-content: center; position: relative; z-index: 1; }
.pricing-side { display: flex; flex-direction: column; gap: 1.5rem; }
.guarantee-card { background: var(--white); border: 1.5px solid hsl(150 20% 30% / 0.2); border-radius: var(--radius-xl); padding: 2rem; }
.guarantee-card-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.25rem; }
.guarantee-icon { width: 2.75rem; height: 2.75rem; flex-shrink: 0; background: var(--forest-tint); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.guarantee-card h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 1.35rem; font-weight: 700; line-height: 1.25; color: var(--near-black); }
.guarantee-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.7; }
.guarantee-card strong { color: var(--forest); }
.intake-card { background: var(--forest-tint); border: 1px solid var(--mist); border-radius: var(--radius-xl); padding: 2rem; }
.intake-card h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 1.3rem; font-weight: 700; line-height: 1.3; color: var(--near-black); margin-bottom: 1rem; }
.intake-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.7; margin-bottom: 1.25rem; }
.intake-meta { font-size: 0.78rem; color: var(--stone); line-height: 1.6; margin-top: 1.5rem;}

/* ============================================================
   PRIVACYVERKLARING.HTML — Specifieke stijlen
   ============================================================ */

.privacy-hero {
  padding: 10rem 0 5rem;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.privacy-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, hsl(150 35% 55% / 0.12) 0%, transparent 60%);
}
.privacy-hero-inner {
  position: relative; z-index: 1;
  max-width: 680px;
}
.privacy-hero-inner .tag { margin-bottom: 1.25rem; }
.privacy-hero-inner h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--near-black);
  margin-bottom: 1.25rem;
}
.privacy-hero-inner h1 em { color: var(--forest-light); }
.privacy-intro {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.75;
  max-width: 520px;
}
.privacy-body-section {
  padding: 4rem 0 7rem;
  background: var(--off-white);
}
.privacy-content-wrap { max-width: 720px; }
.privacy-article { display: flex; flex-direction: column; gap: 0; }
.privacy-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--mist);
}
.privacy-block:last-child { border-bottom: none; }
.privacy-block h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--near-black);
  margin-bottom: 1rem;
}
.privacy-block p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.privacy-block p:last-child { margin-bottom: 0; }
.privacy-block a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.privacy-block a:hover { color: var(--forest-dark); }
.privacy-block strong { color: var(--near-black); font-weight: 600; }
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.6;
}
.privacy-list li::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  margin-top: 0.55rem;
}