/* -------------------------------------------
   DE DRIJFVEREN COACH - style.css
------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --sand:        #F2EDE4;
  --cream:       #FAF7F2;
  --terracotta:  #C4785A;
  --sage:        #7A9E87;
  --deep:        #2C2C2C;
  --mid:         #6B6560;
  --light-sage:  #EEF3EF;
  --dark-bg:     #1c1c1c;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* -- NAV -- */
#nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,120,90,0.12);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 2px 16px rgba(44,44,44,0.08); }
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-img { width: 38px; height: 38px; object-fit: contain; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; letter-spacing: 0.02em; color: var(--deep);
}
.nav-logo span em { color: var(--terracotta); font-style: italic; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--terracotta); color: white;
  padding: 0.6rem 1.3rem; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #b3684c; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--deep); transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--cream); z-index: 99;
  padding: 1.5rem 5%; flex-direction: column; gap: 1.2rem;
  border-bottom: 1px solid rgba(196,120,90,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--deep); text-decoration: none; padding: 0.3rem 0;
  border-bottom: 1px solid rgba(44,44,44,0.08);
}
.mobile-menu .mobile-cta {
  background: var(--terracotta); color: white !important;
  padding: 0.9rem 1.5rem; text-align: center;
  border: none !important; border-radius: 2px; margin-top: 0.5rem;
}

/* -- SHARED HELPERS -- */
.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--terracotta); flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2; font-weight: 700; margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; line-height: 1.7; color: var(--mid); }

.btn-primary {
  background: var(--terracotta); color: white;
  padding: 0.95rem 2rem; border-radius: 2px;
  text-decoration: none; font-size: 0.86rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: #b3684c; transform: translateY(-1px); }
.btn-ghost {
  color: var(--deep); text-decoration: none; font-size: 0.86rem;
  letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid var(--deep); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--terracotta); border-color: var(--terracotta); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.4); color: white;
  padding: 0.85rem 1.8rem; border-radius: 2px;
  text-decoration: none; font-size: 0.84rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.2s; display: inline-block;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* -- HERO -- */
.hero-outer { background: var(--cream); position: relative; }
.hero-outer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(196,120,90,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero {
  min-height: 100vh; padding: 8rem 5% 5rem;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 3rem; align-items: center;
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--terracotta); flex-shrink: 0;
}
.duo-badge {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: var(--sand); border: 1px solid rgba(196,120,90,0.25);
  padding: 0.8rem 1.2rem; margin-bottom: 1.4rem;
}
.duo-badge-text { font-size: 0.85rem; line-height: 1.4; color: var(--deep); }
.duo-badge-text strong { display: block; font-size: 0.88rem; }
.duo-badge-text span { color: var(--mid); font-size: 0.8rem; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1; font-weight: 700; margin-bottom: 1.2rem; color: var(--deep);
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero-sub { font-size: 1rem; line-height: 1.7; color: var(--mid); max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-photo { display: flex; align-items: center; justify-content: flex-end; }
.hero-photo-frame { width: 100%; max-width: 380px; aspect-ratio: 1; position: relative; }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.hero-photo-caption {
  position: absolute; bottom: -1rem; left: -1.2rem;
  background: var(--deep); color: white;
  padding: 0.75rem 1.1rem; font-size: 0.76rem; letter-spacing: 0.1em;
  text-transform: uppercase; max-width: 190px; line-height: 1.4;
}
.hero-photo-caption strong { color: var(--terracotta); display: block; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.hero-eyebrow  { animation-delay: 0.1s; }
.duo-badge     { animation-delay: 0.2s; }
.hero h1       { animation-delay: 0.32s; }
.hero-sub      { animation-delay: 0.44s; }
.hero-actions  { animation-delay: 0.56s; }
.hero-photo    { animation: fadeUp 0.8s 0.25s ease forwards; opacity: 0; }

/* -- STATS -- */
.stats-strip {
  background: var(--deep); padding: 2rem 5%;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--terracotta); }
.stat-label { font-size: 0.76rem; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.3rem; line-height: 1.4; }

/* -- INTRO / BEWUSTWORDING -- */
.intro-outer { background: var(--sand); }
.intro { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.intro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.intro-col p { font-size: 0.96rem; line-height: 1.75; color: var(--mid); margin-bottom: 1rem; }
.intro-col p strong { color: var(--deep); }
.intro-quote {
  margin-top: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-style: italic; line-height: 1.6;
  color: var(--deep); border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem; max-width: 700px;
}

/* -- DUO -- */
.duo-section-outer { background: var(--cream); }
.duo-section {
  padding: 5rem 5%; display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto;
}
.duo-section .section-sub { margin-bottom: 1.5rem; }
.duo-voordelen { display: flex; flex-direction: column; gap: 1rem; }
.duo-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem; background: var(--sand);
  border-left: 3px solid var(--terracotta);
}
.duo-item-icon { font-size: 1.2rem; margin-top: 0.05rem; }
.duo-item-text strong { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; }
.duo-item-text p { font-size: 0.84rem; color: var(--mid); line-height: 1.5; }
.duo-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-style: italic; line-height: 1.55;
  color: var(--deep); margin-bottom: 2rem;
}
.duo-quote::before { content: '"'; color: var(--terracotta); }
.duo-quote::after  { content: '"'; color: var(--terracotta); }
.coaches-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.coach-mini { background: var(--sand); padding: 1.5rem 1.8rem; border-top: 3px solid var(--terracotta); }
.coach-mini-role { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.4rem; }
.coach-mini-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.coach-mini-bio { font-size: 0.85rem; color: var(--mid); line-height: 1.55; }

/* -- AANPAK -- */
.approach-outer { background: var(--light-sage); }
.approach { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.approach-header { margin-bottom: 3rem; max-width: 560px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card {
  padding: 2rem; background: white;
  border-bottom: 3px solid var(--terracotta); transition: transform 0.2s;
}
.pillar-card:hover { transform: translateY(-3px); }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: rgba(196,120,90,0.2); line-height: 1; margin-bottom: 0.5rem; }
.pillar-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.pillar-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.55; }

/* -- DRIJFVEREN -- */
.drijfveren-outer { background: var(--sand); }
.drijfveren { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.drijfveren-header { margin-bottom: 3rem; }
.drijfveren-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(44,44,44,0.08);
  border: 1px solid rgba(44,44,44,0.08);
}
.drijfveer-card { background: var(--sand); padding: 1.8rem; transition: background 0.2s; }
.drijfveer-card:hover { background: white; }
.drijfveer-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: rgba(196,120,90,0.2); line-height: 1; }
.drijfveer-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin: 0.2rem 0; }
.drijfveer-tag { font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem; }
.drijfveer-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.55; }
.drijfveren-cta { text-align: center; margin-top: 3rem; }

/* -- TRAJECTEN -- */
.journey-outer { background: var(--deep); }
.journey { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.journey .section-title { color: white; }
.journey .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 0; }
.journey-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.journey-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--terracotta); flex-shrink: 0; }
.journey-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3rem; position: relative;
}
.journey-steps::before {
  content: ''; position: absolute; top: 21px; left: calc(12.5% + 22px); right: calc(12.5% + 22px);
  height: 1px; background: rgba(196,120,90,0.3);
}
.journey-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.journey-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--deep); border: 1px solid var(--terracotta);
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--terracotta);
}
.journey-step h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: white; margin-bottom: 0.5rem; }
.journey-step p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.journey-step-text { flex: 1; }

/* -- TESTIMONIALS -- */
.testi-outer { background: var(--cream); }
.testi { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: var(--sand); padding: 2rem; position: relative; }
.testi-card::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1;
  color: var(--terracotta); opacity: 0.2; position: absolute; top: 0.3rem; left: 1rem;
}
.testi-text { font-size: 0.9rem; line-height: 1.65; color: var(--deep); padding-top: 1rem; }
.testi-author { margin-top: 1rem; font-size: 0.78rem; font-weight: 500; color: var(--terracotta); }

/* -- CONTACT -- */
.contact-outer { background: var(--sand); }
.contact {
  padding: 5rem 5%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-info .section-sub { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.8rem; }
.contact-detail { display: flex; gap: 1rem; align-items: center; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--terracotta); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.1rem; }
.contact-detail-text a { font-size: 0.95rem; color: var(--deep); text-decoration: none; }
.contact-detail-text a:hover { color: var(--terracotta); }
.contact-note { font-size: 0.87rem; line-height: 1.6; color: var(--mid); background: white; padding: 1.2rem 1.5rem; border-left: 3px solid var(--sage); }
.contact-downloads { margin-top: 0.5rem; }
.download-links { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.8rem; }
.download-link {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.87rem; color: var(--deep); text-decoration: none;
  padding: 0.6rem 0.8rem; background: white;
  border: 1px solid rgba(44,44,44,0.1); transition: border-color 0.2s;
}
.download-link:hover { border-color: var(--terracotta); color: var(--terracotta); }
.dl-icon { color: var(--terracotta); font-size: 0.9rem; }

.download-ebook-block { display: flex; flex-direction: column; gap: 0; }
.download-email-nudge {
  background: rgba(196,120,90,0.07);
  border: 1px solid rgba(196,120,90,0.2);
  border-top: none;
  padding: 0.9rem 1rem;
}
.download-email-nudge p {
  font-size: 0.83rem; color: var(--mid); line-height: 1.5; margin-bottom: 0.7rem;
}
.download-email-form { display: flex; gap: 0; }
.download-email-form input {
  flex: 1; padding: 0.7rem 0.9rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  border: 1px solid rgba(44,44,44,0.15); border-right: none;
  background: white; color: var(--deep); outline: none;
  border-radius: 0;
}
.download-email-form input:focus { border-color: var(--terracotta); }
.download-email-form button {
  background: var(--terracotta); color: white; border: none;
  padding: 0.7rem 1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.download-email-form button:hover { background: #b3684c; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  border: 1px solid rgba(44,44,44,0.15); background: white; color: var(--deep);
  outline: none; border-radius: 0; transition: border-color 0.2s; width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  background: var(--terracotta); color: white; border: none;
  padding: 1rem 2rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.form-submit:hover { background: #b3684c; }
.form-success { background: #e8f0eb; border: 1px solid var(--sage); padding: 1rem 1.2rem; font-size: 0.9rem; color: #2d5a3d; display: none; }

/* -- EBOOK -- */
.ebook-outer { background: var(--terracotta); }
.ebook {
  padding: 4rem 5%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.ebook h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: white; line-height: 1.2; }
.ebook p { color: rgba(255,255,255,0.75); margin-top: 0.6rem; font-size: 0.93rem; }
.ebook-form { display: flex; }
.ebook-input { padding: 1rem 1.3rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; border: none; outline: none; background: rgba(255,255,255,0.9); width: 230px; }
.ebook-btn { background: var(--deep); color: white; padding: 1rem 1.3rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s; white-space: nowrap; }
.ebook-btn:hover { background: #111; }

/* -- FOOTER -- */
footer { background: var(--dark-bg); padding: 3rem 5%; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.footer-logo-img { width: 24px; height: 24px; object-fit: contain; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: white; }
.footer-brand-tag { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1px; }
.footer-social a:hover { color: var(--terracotta); border-color: var(--terracotta); }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; color: rgba(255,255,255,0.45); font-size: 0.86rem; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { background: #141414; padding: 1.2rem 5%; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* -- TARIEVEN PAGE -- */
.page-hero { background: var(--deep); padding: 8rem 5% 4rem; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); color: white; font-weight: 700; margin-bottom: 0.8rem; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }

.tarieven-outer { background: var(--cream); }
.tarieven { padding: 5rem 5%; max-width: 1100px; margin: 0 auto; }
.tarieven-intro { max-width: 660px; margin: 0 auto 3.5rem; text-align: center; }
.tarieven-intro p { font-size: 1rem; line-height: 1.7; color: var(--mid); }

.tarieven-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.tarief-card { background: var(--sand); padding: 2rem; border-top: 3px solid var(--terracotta); position: relative; }
.tarief-card.featured { background: var(--deep); border-top-color: var(--terracotta); }
.tarief-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--terracotta); color: white;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.tarief-type { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.5rem; }
.tarief-card.featured .tarief-type { color: rgba(255,255,255,0.6); }
.tarief-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.tarief-card.featured .tarief-name { color: white; }
.tarief-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--terracotta); margin: 0.8rem 0; }
.tarief-card.featured .tarief-price { color: var(--terracotta); }
.tarief-price-note { font-size: 0.78rem; color: var(--mid); margin-bottom: 1.2rem; }
.tarief-card.featured .tarief-price-note { color: rgba(255,255,255,0.4); }
.tarief-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.tarief-features li { font-size: 0.88rem; color: var(--mid); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.tarief-card.featured .tarief-features li { color: rgba(255,255,255,0.65); }
.tarief-features li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-size: 0.8rem; }
.tarief-cta { display: inline-block; padding: 0.85rem 1.5rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; background: var(--terracotta); color: white; border-radius: 2px; }
.tarief-cta:hover { background: #b3684c; }
.tarief-card.featured .tarief-cta { background: white; color: var(--deep); }
.tarief-card.featured .tarief-cta:hover { background: var(--sand); }

.tarieven-note { background: var(--light-sage); border-left: 3px solid var(--sage); padding: 1.5rem 2rem; margin-bottom: 3rem; }
.tarieven-note h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.6rem; }
.tarieven-note p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

.verloting-box { background: var(--sand); border: 2px dashed rgba(196,120,90,0.3); padding: 2rem; text-align: center; }
.verloting-box h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.6rem; }
.verloting-box p { font-size: 0.9rem; color: var(--mid); line-height: 1.6; max-width: 500px; margin: 0 auto; }

/* -- QUIZ PAGE -- */
.quiz-page-outer { background: var(--sand); min-height: calc(100vh - 70px); padding: 7rem 5% 5rem; }
.quiz-page-inner { max-width: 680px; margin: 0 auto; }
.quiz-page-header { text-align: center; margin-bottom: 2.5rem; }
.quiz-page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); margin-bottom: 0.5rem; }
.quiz-page-header p { font-size: 0.95rem; color: var(--mid); }

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 7rem 5% 4rem; min-height: unset; gap: 2.5rem; }
  .hero-photo { justify-content: center; }
  .hero-photo-frame { max-width: 320px; }
  .hero-photo-caption { left: 0; bottom: -0.8rem; }
  .hero-sub { max-width: 100%; }
  .stats-strip { grid-template-columns: repeat(3,1fr); padding: 1.5rem 5%; }
  .intro-cols { grid-template-columns: 1fr; gap: 0; }
  .duo-section { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1rem; }
  .drijfveren-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .journey-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  .ebook { grid-template-columns: 1fr; gap: 1.5rem; }
  .ebook-form { flex-direction: column; max-width: 320px; }
  .ebook-input { width: 100%; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tarieven-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 3rem; }
}

@media (max-width: 580px) {
  #nav { padding: 1rem 4%; }
  .hero { padding: 6.5rem 4% 3.5rem; gap: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-photo-frame { max-width: 260px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .stats-strip { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; padding: 2rem 4%; }
  .duo-section, .approach, .drijfveren, .journey, .testi, .intro { padding: 3.5rem 4%; }
  .contact { padding: 3.5rem 4%; gap: 2.5rem; }
  .drijfveren-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .journey-step { text-align: left; display: flex; gap: 1.2rem; align-items: flex-start; }
  .journey-dot { margin: 0; flex-shrink: 0; width: 38px; height: 38px; font-size: 1rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ebook { padding: 3rem 4%; }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 4%; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; padding: 1rem 4%; }
  .tarieven { padding: 3rem 4%; }
  .quiz-page-outer { padding: 6rem 4% 4rem; }
}


/* ------------------------------------------
   INTRO + WETENSCHAP - opnieuw, rustiger
------------------------------------------ */
.intro-outer { background: var(--cream); }
.intro { padding: 5rem 5%; max-width: 1100px; margin: 0 auto; }

.intro-lead { margin-bottom: 0; }
.intro-lead .section-title { max-width: 680px; }
.intro-lead-text {
  font-size: 1rem; line-height: 1.8; color: var(--mid);
  max-width: 720px; margin-bottom: 1.1rem;
}
.intro-lead-text strong { color: var(--deep); font-weight: 500; }

/* Divider between why + science */
.intro-divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 3rem 0;
}
.intro-divider-line { flex: 1; height: 1px; background: rgba(196,120,90,0.2); }
.intro-divider-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); white-space: nowrap;
}

.intro-science-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700; line-height: 1.25;
  margin-bottom: 0.5rem; color: var(--deep);
}
.intro-science-sub {
  font-size: 0.96rem; color: var(--mid); line-height: 1.65;
  max-width: 560px; margin-bottom: 2.5rem;
}

/* Pillar cards ON CREAM background - use sand cards */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pillar-card {
  padding: 1.8rem; background: var(--sand);
  border-bottom: 3px solid var(--terracotta); transition: transform 0.2s;
}
.pillar-card:hover { transform: translateY(-3px); }
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: rgba(196,120,90,0.25); line-height: 1; margin-bottom: 0.5rem;
}
.pillar-card h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--deep); }
.pillar-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.6; }

/* ------------------------------------------
   DRIJFVEER UITKLAP - met casussen
------------------------------------------ */
.drijfveer-card { cursor: pointer; position: relative; }
.drijfveer-card:hover { background: white; }

.drijfveer-lees-meer {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terracotta); border: none; background: none;
  cursor: pointer; padding: 0; font-family: 'DM Sans', sans-serif;
  transition: gap 0.2s;
}
.drijfveer-lees-meer:hover { gap: 0.6rem; }
.drijfveer-lees-meer .arrow { transition: transform 0.3s; display: inline-block; }
.drijfveer-lees-meer.open .arrow { transform: rotate(90deg); }

/* Uitklap panel - spans full grid width */
.drijfveer-panel {
  display: none !important;
  grid-column: 1 / -1;
  background: white;
  border-top: 1px solid rgba(44,44,44,0.08);
  padding: 2.5rem;
  position: relative;
}
.drijfveer-panel.open { display: grid !important; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.drijfveer-panel-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--mid); line-height: 1;
  transition: color 0.2s;
}
.drijfveer-panel-close:hover { color: var(--deep); }

.drijfveer-panel-content {}
.drijfveer-panel-strategy {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.4rem;
}
.drijfveer-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem;
}
.drijfveer-panel-drijfveer {
  font-size: 0.85rem; color: var(--mid); margin-bottom: 1.5rem; font-style: italic;
}
.drijfveer-panel-text { font-size: 0.9rem; line-height: 1.75; color: var(--mid); }
.drijfveer-panel-text p { margin-bottom: 1rem; }
.drijfveer-panel-text p:last-child { margin-bottom: 0; }

.drijfveer-panel-side {}
.drijfveer-quote-balloon {
  background: var(--deep); color: white;
  padding: 1.5rem 1.8rem;
  position: relative;
  margin-bottom: 1.2rem;
}
.drijfveer-quote-balloon::after {
  content: '';
  position: absolute; bottom: -10px; left: 2rem;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--deep);
}
.drijfveer-quote-balloon-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.5rem;
}
.drijfveer-quote-balloon-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: white;
}
.drijfveer-quote-balloon-text {
  font-size: 0.85rem; font-style: italic; line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.drijfveer-strategie-box {
  background: var(--sand); padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--terracotta);
  margin-top: 1.2rem;
}
.drijfveer-strategie-label {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.4rem;
}
.drijfveer-strategie-text {
  font-size: 0.85rem; color: var(--mid); line-height: 1.6; font-style: italic;
}

/* ------------------------------------------
   EBOOK SUCCESS PAGE
------------------------------------------ */
.ebook-success {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  background: var(--cream); padding: 8rem 5% 5rem;
}
.ebook-success-inner { max-width: 520px; text-align: center; }
.ebook-success-icon {
  width: 64px; height: 64px; background: var(--light-sage);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.5rem;
}
.ebook-success-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; margin-bottom: 0.8rem;
}
.ebook-success-inner p { font-size: 1rem; color: var(--mid); line-height: 1.7; margin-bottom: 2rem; }

@media (max-width: 900px) {
  .drijfveer-panel.open { grid-template-columns: 1fr; }
  .drijfveer-quote-balloon::after { display: none; }
}
@media (max-width: 580px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .drijfveer-panel { padding: 1.8rem; }
}

/* -- OUTLINE BUTTON VARIANT -- */
.btn-primary--outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}
.btn-primary--outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
/* On light backgrounds (drijfveren section uses --sand) */
.drijfveren-cta .btn-primary--outline {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.drijfveren-cta .btn-primary--outline:hover {
  background: rgba(196,120,90,0.08);
}
.drijfveren-cta {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-top: 3rem;
}

/* -- COACH PHOTO ROW -- */
.coach-mini-photo-row {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem;
}
.coach-mini-photo {
  width: 64px; height: 64px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
}

/* -- HERO ACTIONS - gelijke knoppen op mobiel -- */
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.hero-actions .btn-primary--outline {
  border-color: var(--deep);
  color: var(--deep);
}
.hero-actions .btn-primary--outline:hover {
  background: rgba(44,44,44,0.07);
}

@media (max-width: 580px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; }
  .drijfveren-cta { flex-direction: column; align-items: center; }
}

/* -- COACH PILL - compact met hover-bio -- */
.coach-pill {
  display: flex; align-items: flex-start; gap: 1rem;
  background: white; padding: 1rem 1.2rem;
  border-top: 3px solid var(--terracotta);
  position: relative;
}

.coach-pill-avatar {
  flex-shrink: 0; position: relative;
}
.coach-pill-avatar img {
  width: 52px !important; height: 52px !important;
  min-width: 52px; min-height: 52px;
  max-width: 52px; max-height: 52px;
  border-radius: 50%; object-fit: cover;
  display: block;
  transition: box-shadow 0.2s;
}
.coach-pill:hover .coach-pill-avatar img {
  box-shadow: 0 0 0 3px var(--terracotta);
}

.coach-pill-info { flex: 1; min-width: 0; }

.coach-pill-bio {
  font-size: 0.85rem; color: var(--mid); line-height: 1.6;
  margin-top: 0.5rem;
}
