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

:root {
  --rose:       #B5626E;
  --rose-dark:  #954f5a;
  --rose-light: #e8a0a9;
  --cream:      #FDF7F4;
  --blush:      #F9EDE8;
  --blush-deep: #f0d8d0;
  --bark:       #3D2020;
  --bark-light: #5c3535;
  --text:       #2C1A1A;
  --text-muted: #7a5a5a;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(60,20,20,.10);
  --shadow-lg:  0 8px 40px rgba(60,20,20,.14);
  --radius:     16px;
  --radius-sm:  10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, blockquote { font-family: 'Playfair Display', serif; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-outline-rose {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline-rose:hover { background: var(--rose); color: var(--white); }
.btn-bark { background: var(--bark); color: var(--white); }
.btn-bark:hover { background: var(--bark-light); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: .1s; }
.fade-in.delay-2 { transition-delay: .2s; }
.fade-in.delay-3 { transition-delay: .3s; }
.fade-in.delay-4 { transition-delay: .4s; }

/* ── Section labels ── */
.label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  display: block;
}
.label-light { color: var(--rose-light); }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,247,244,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,98,110,.1);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bark);
}
.nav-logo span { color: var(--rose); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose); }
@media (max-width: 640px) {
  .nav-links { display: none; }
}
.nav-cta { font-size: .88rem; padding: 11px 22px; }

/* ── Hero (homepage) ── */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a0a0a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1490474418585-ba9bad8fd0ea?w=1800&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  opacity: .38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(61,32,32,.60) 0%, rgba(181,98,110,.28) 50%, rgba(61,32,32,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 22px;
  padding: 6px 18px;
  border: 1px solid rgba(228,160,169,.4);
  border-radius: 50px;
  background: rgba(228,160,169,.1);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; color: var(--rose-light); }
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,.88);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badge {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.hero-badge::before, .hero-badge::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.28);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--blush);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero .label { display: block; margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--bark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* ── Doelen (waarbij ik help) ── */
.doelen {
  padding: 88px 0;
  background: var(--cream);
}
.doelen-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--bark);
  margin-bottom: 56px;
}
.doelen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .doelen-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .doelen-grid { grid-template-columns: 1fr !important; }
}
.doel-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.doel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
}
.doel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.doel-emoji { font-size: 2.4rem; margin-bottom: 18px; }
.doel-card h3 {
  font-size: 1.1rem;
  color: var(--bark);
  margin-bottom: 12px;
  word-break: break-word;
  hyphens: auto;
}
.doel-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Wat je krijgt ── */
.krijgt {
  padding: 88px 0;
  background: var(--blush);
}
.krijgt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 768px) {
  .krijgt-inner { grid-template-columns: 1fr; gap: 40px; }
}
.krijgt h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--bark);
  margin-bottom: 24px;
}
.krijgt-intro {
  font-size: .96rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.krijgt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.krijgt-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .93rem;
  color: var(--text);
}
.krijgt-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.krijgt-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  aspect-ratio: 4/5;
}
.krijgt-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Pricing ── */
.pricing {
  padding: 96px 0;
  background: var(--cream);
}
.pricing-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--bark);
  margin-bottom: 12px;
}
.pricing-sub {
  text-align: center;
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--bark);
  color: var(--white);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pricing-card-top {
  height: 5px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
}
.pricing-card.featured .pricing-card-top {
  background: linear-gradient(90deg, var(--rose-light), #fff);
}
.pricing-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pricing-duration {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-duration { color: var(--white); }
.pricing-type {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-type { color: rgba(255,255,255,.6); }
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.pricing-amount .euro {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bark);
}
.pricing-card.featured .pricing-amount .euro { color: var(--white); }
.pricing-amount .period {
  font-size: .88rem;
  color: var(--text-muted);
}
.pricing-card.featured .pricing-amount .period { color: rgba(255,255,255,.6); }
.pricing-total {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-total { color: rgba(255,255,255,.55); }
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(181,98,110,.08);
  color: var(--text);
}
.pricing-card.featured .pricing-features li {
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
}
.pricing-features li:last-child { border: none; }
.pricing-features li::before {
  content: '✔';
  font-size: .75rem;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-card.featured .pricing-features li::before { color: var(--rose-light); }
.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card.featured .btn-primary {
  background: var(--rose-light);
  color: var(--bark);
}
.pricing-card.featured .btn-primary:hover { background: var(--white); }
.pricing-note {
  text-align: center;
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: 32px;
}
.pricing-note a { color: var(--rose); text-decoration: underline; }

/* ── Hoe werkt het ── */
.hoe {
  padding: 88px 0;
  background: var(--blush);
}
.hoe-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--bark);
  margin-bottom: 56px;
}
.hoe-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hoe-step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
}
.hoe-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 26px;
  font-size: 1.5rem;
  color: var(--rose-light);
}
@media (max-width: 800px) {
  .hoe-steps { flex-direction: column; align-items: center; }
  .hoe-step { width: 100%; max-width: 360px; padding: 20px 16px; }
  .hoe-arrow { padding-top: 0; font-size: 1.4rem; transform: rotate(90deg); }
}
.hoe-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.hoe-step h3 {
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: 8px;
}
.hoe-step p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Over Philine ── */
.about {
  padding: 96px 0;
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}
.about-quote {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-style: italic;
  color: var(--bark);
  line-height: 1.4;
  margin-bottom: 28px;
  position: relative;
  padding-left: 24px;
}
.about-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -8px;
  font-size: 4rem;
  color: var(--rose-light);
  line-height: 1;
}
.about-bio {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-sig {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  margin-top: 24px;
}
.about-sig small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── CTA sectie (homepage) ── */
.cta-section {
  background: var(--bark);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(181,98,110,.1);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-section h2 em { font-style: italic; color: var(--rose-light); }
.cta-section p {
  font-size: .96rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
}
.cta-section .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Aanmeldformulier ── */
.aanmeld {
  padding: 96px 0;
  background: var(--bark);
  position: relative;
  overflow: hidden;
}
.aanmeld::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(181,98,110,.1);
  pointer-events: none;
}

/* ── Multi-step form ── */
.msf-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.msf-intro {
  text-align: center;
  margin-bottom: 40px;
}
.msf-intro h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.msf-intro h2 em { font-style: italic; color: var(--rose-light); }
.msf-intro p {
  font-size: .94rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 16px;
}
.msf-call-link {
  font-size: .84rem;
  color: var(--rose-light);
  text-decoration: underline;
  cursor: pointer;
}
.msf-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.msf-progress { padding: 24px 32px 0; }
.msf-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.msf-step-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose);
}
.msf-step-count {
  font-size: .78rem;
  color: var(--text-muted);
}
.msf-bar-bg {
  height: 5px;
  background: var(--blush-deep);
  border-radius: 50px;
  overflow: hidden;
}
.msf-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  border-radius: 50px;
  transition: width .4s ease;
}
.msf-steps-container { padding: 28px 32px 32px; overflow: hidden; }
@media (max-width: 500px) {
  .msf-steps-container { padding: 20px 18px 24px; }
  .msf-progress { padding: 20px 18px 0; }
}
.msf-step { display: none; }
.msf-step.active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.msf-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--bark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--blush-deep);
}
.msf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 580px) { .msf-grid { grid-template-columns: 1fr; } }
.msf-group { margin-bottom: 14px; }
.msf-group > label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 6px;
}
.msf-group .hint {
  font-size: .76rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.msf-group input,
.msf-group select,
.msf-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.msf-group input:focus,
.msf-group select:focus,
.msf-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(181,98,110,.1);
}
.msf-group input::placeholder,
.msf-group textarea::placeholder { color: var(--text-muted); opacity: .6; }
.msf-group textarea { resize: vertical; min-height: 90px; }
.msf-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.msf-checkboxes label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text);
  padding: 7px 13px;
  border: 1.5px solid var(--blush-deep);
  border-radius: 50px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-bottom: 0;
}
.msf-checkboxes input[type=checkbox] { accent-color: var(--rose); width:15px; height:15px; cursor:pointer; flex-shrink:0; }
.msf-checkboxes label:has(input:checked) {
  border-color: var(--rose);
  background: var(--blush);
  color: var(--rose);
}
.msf-radios { display: flex; flex-direction: column; gap: 8px; }
.msf-radios label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  font-weight: 400;
  color: var(--text);
  padding: 10px 14px;
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  line-height: 1.5;
  margin-bottom: 0;
}
.msf-radios input[type=radio] { accent-color: var(--rose); margin-top: 3px; flex-shrink:0; width:16px; height:16px; cursor:pointer; }
.msf-radios label:has(input:checked) {
  border-color: var(--rose);
  background: var(--blush);
}
.msf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1.5px solid var(--blush-deep);
  margin-top: 20px;
}
.msf-btn-back {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.msf-btn-back:hover { color: var(--bark); }
.msf-btn-next {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  padding: 13px 28px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.msf-btn-next:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.msf-disclaimer {
  background: var(--blush);
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.msf-disclaimer-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--bark);
  cursor: pointer;
  line-height: 1.5;
}
.msf-disclaimer-check input { accent-color: var(--rose); margin-top:3px; flex-shrink:0; }
.msf-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.msf-success-icon { font-size: 3rem; margin-bottom: 16px; }
.msf-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--bark);
  margin-bottom: 12px;
}
.msf-success p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; }
.msf-privacy {
  text-align: center;
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-top: 14px;
}

/* ── Footer ── */
.footer {
  background: var(--bark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 40px 24px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--rose-light); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.social-btn:hover { background: var(--rose); transform: translateY(-2px); }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: .77rem;
  color: rgba(255,255,255,.28);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 16px;
}

/* ── FAQ ── */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: .97rem;
  color: var(--bark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--rose); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Aanpak grid responsive ── */
@media (max-width: 640px) {
  .aanpak-grid { grid-template-columns: 1fr !important; }
}
