:root {
  --teal: #1E575E;
  --teal-dark: #153F45;
  --teal-light: #2a6f77;
  --accent: #E2FF00;
  --ink: #1A1A1A;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f5f7f7;
  --border: #e5e7eb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
p { color: var(--ink); }

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(226,255,0,0.25); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--teal); }

/* HEADER */
header {
  position: sticky;
  top: 0;
  background: var(--teal);
  z-index: 100;
  padding: 14px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 48px; width: auto; display: block; }
nav ul { display: flex; gap: 32px; list-style: none; }
nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .15s ease;
}
nav a:hover { color: var(--accent); }
.menu-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  position: relative;
  color: #fff;
  padding: 100px 0 80px;
  background: linear-gradient(rgba(21,63,69,0.85), rgba(21,63,69,0.75)), url('/assets/hero.jpg') center/cover no-repeat;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  max-width: 900px;
}
.hero .subhead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.92);
}
.hero ul.checklist {
  list-style: none;
  margin-bottom: 40px;
  font-size: 1rem;
}
.hero ul.checklist li { margin-bottom: 8px; }
.hero ul.checklist li::before { content: "✅  "; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* SECTIONS */
section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-teal { background: var(--teal); color: #fff; }
.section-teal h2, .section-teal h3 { color: #fff; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 12px; }
.section-head .sub { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.section-teal .section-head .sub { color: rgba(255,255,255,0.85); }

/* PROBLEEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.problem-card .icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.problem-card .icon svg { width: 28px; height: 28px; fill: var(--accent); }
.problem-card h3 { margin-bottom: 12px; }
.problem-card p { color: var(--muted); }

/* VOOR WIE */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.fit-col {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--border);
}
.fit-col.yes { border-top: 4px solid var(--teal); }
.fit-col.no { border-top: 4px solid #d1d5db; background: var(--bg-alt); }
.fit-col h3 { margin-bottom: 20px; font-size: 1.2rem; }
.fit-col ul { list-style: none; }
.fit-col ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.fit-col ul li:last-child { border-bottom: 0; }
.fit-col.yes ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.1rem;
}
.fit-col.no ul li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 12px;
  color: #9ca3af;
  font-weight: 600;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* COACH */
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.coach-portrait {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.coach-portrait img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  display: block;
}
.coach-text h3 { color: #fff; font-size: 1.4rem; margin-bottom: 16px; }
.coach-text p { color: rgba(255,255,255,0.92); margin-bottom: 14px; line-height: 1.65; }
.coach-text p strong { color: var(--accent); }
.coach-text .lead { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.coach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.coach-stats .stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.coach-stats .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 6px; }

.video-wrap {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--accent); }
.play-btn::after {
  content: "";
  display: block;
  width: 0; height: 0;
  border-left: 22px solid var(--teal);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

/* OPLOSSING */
.oplossing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.oplossing-text { padding: 8px; }
.oplossing-text h3 { font-size: 1.5rem; margin-bottom: 16px; }
.oplossing-text .lead { color: var(--muted); margin-bottom: 20px; }
.check-list { list-style: none; }
.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 19px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.oplossing-card {
  background: var(--teal);
  color: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.oplossing-card .big-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.oplossing-card h3 { color: #fff; margin-bottom: 20px; }
.oplossing-card p { color: rgba(255,255,255,0.9); }

/* TRAJECTEN */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--teal);
  border-width: 2px;
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(30,87,94,0.12);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 20px;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.price-card .freq { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.price-card .price {
  color: var(--teal);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.price-card .price-total {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.price-features { list-style: none; margin-bottom: 24px; flex: 1; }
.price-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--teal);
  font-weight: 700;
}
.price-for {
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.price-for strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 6px;
}

.kennismaking {
  background: #fff;
  border: 2px dashed var(--teal);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.kennismaking .km-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.kennismaking h3 { font-size: 1.35rem; margin-bottom: 6px; }
.kennismaking .km-sub { color: var(--muted); font-size: 0.95rem; }
.kennismaking .km-bullets {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}
.kennismaking .km-bullets li {
  padding: 4px 0 4px 22px;
  position: relative;
}
.kennismaking .km-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.kennismaking .km-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.kennismaking .km-price-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
@media (max-width: 900px) {
  .kennismaking { grid-template-columns: 1fr; text-align: left; gap: 20px; }
}

/* WERKWIJZE */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 8px;
}
.step .step-icon {
  width: 80px; height: 80px;
  background: var(--teal);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step .step-icon svg { width: 36px; height: 36px; fill: var(--accent); }
.step .step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--teal);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.testimonial-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--teal);
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}
.testimonial-metrics .m-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.testimonial-metrics .m-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonial-stars { color: #fbbf24; margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-quote {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.testimonial-person .t-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-person .t-role { font-size: 0.85rem; color: var(--muted); }

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

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* INTAKE FORM */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.form-intro h2 { margin-bottom: 16px; }
.form-intro p { color: var(--muted); margin-bottom: 24px; font-size: 1.1rem; }
.form-intro .guarantees {
  list-style: none;
  margin-top: 32px;
}
.form-intro .guarantees li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-weight: 500;
}
.form-intro .guarantees li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.2rem;
}

form { display: flex; flex-direction: column; gap: 16px; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,87,94,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

/* CTA */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 16px; color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); }
.cta-final p { color: rgba(255,255,255,0.9); margin-bottom: 32px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.8);
  padding: 40px 0;
  text-align: center;
}
footer img { height: 56px; margin-bottom: 16px; }
footer .contact a { color: #fff; font-weight: 500; }
footer .social { margin-top: 20px; }
footer .social a {
  display: inline-block;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: background .15s ease;
}
footer .social a:hover { background: var(--accent); color: var(--teal); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav ul { display: none; }
  nav.mobile-open ul {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--teal);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .menu-toggle { display: block; }
  .header-cta-desktop { display: none; }
  .stats-row, .coach-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .coach-grid, .oplossing-grid, .problem-grid, .pricing-grid, .steps-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .price-card.featured { transform: none; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
}

/* Legal pages (Privacy, AV) */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 64px;
}
.legal-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}
.legal-page .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
}
.legal-page p { margin-bottom: 14px; }
.legal-page ul, .legal-page ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a {
  color: var(--teal);
  text-decoration: underline;
}
.legal-page .toc {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0 40px;
}
.legal-page .toc ol {
  margin-bottom: 0;
  padding-left: 20px;
}
.legal-page .toc li { margin-bottom: 4px; font-size: 0.92rem; }
.legal-page .back-home {
  display: inline-block;
  margin-top: 48px;
  font-weight: 600;
  color: var(--teal);
}
footer .legal-links {
  margin-top: 20px;
  font-size: 0.85rem;
}
footer .legal-links a {
  color: rgba(255,255,255,0.85);
  margin: 0 12px;
  text-decoration: underline;
}

/* Landing-page specific (Raaks) */
.location-banner {
  background: var(--accent);
  color: var(--ink);
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.location-banner strong { font-weight: 700; }
.differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.differentiator {
  text-align: center;
  padding: 24px;
}
.differentiator .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.differentiator h3 { margin-bottom: 8px; }
.differentiator p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) {
  .differentiators { grid-template-columns: 1fr; }
}
