/* ===== Design tokens (matches React app) ===== */
:root {
  --background: oklch(0.985 0.018 85);
  --foreground: oklch(0.26 0.03 250);
  --card: oklch(1 0 0);
  --secondary: oklch(0.96 0.025 75);
  --muted-fg: oklch(0.46 0.025 250);
  --border: oklch(0.89 0.018 75);
  --brand: oklch(0.78 0.15 60);
  --brand-fg: oklch(0.22 0.03 250);
  --ink: oklch(0.30 0.05 255);
  --radius: 0.875rem;
  --shadow-soft: 0 1px 2px oklch(0.30 0.05 255 / 0.06), 0 12px 32px oklch(0.30 0.05 255 / 0.08);
  --shadow-glow: 0 24px 70px -22px oklch(0.78 0.15 60 / 0.55);
  --gradient-hero:
    radial-gradient(75% 80% at 85% -10%, oklch(0.82 0.16 55 / 0.35), transparent 60%),
    radial-gradient(60% 70% at 0% 110%, oklch(0.85 0.12 200 / 0.22), transparent 60%),
    radial-gradient(50% 50% at 50% 50%, oklch(0.92 0.06 85 / 0.4), transparent 70%),
    linear-gradient(180deg, oklch(0.99 0.02 85) 0%, oklch(0.96 0.03 75) 100%);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; font-weight: 600; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }

.muted { color: var(--muted-fg); }
.small { font-size: 0.875rem; }
.lg { font-size: 1.125rem; line-height: 1.7; }
.mt { margin-top: 1rem; }
.mt-lg { margin-top: 2.5rem; }
.center { text-align: center; }
.center-row { justify-content: center; }
.narrow { max-width: 36rem; margin: 0 auto; }
.text-white { color: #fff; }
.text-white-muted { color: rgba(255,255,255,0.75); }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid var(--border); background: var(--card);
  font-size: 0.75rem; font-weight: 500; color: var(--muted-fg);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.eyebrow .dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--brand); }
.eyebrow-dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 2.5rem; padding: 0 1rem; border-radius: 9999px;
  font-weight: 500; font-size: 0.875rem; cursor: pointer;
  border: 1px solid transparent; transition: all 0.2s ease;
  font-family: inherit;
}
.btn-sm { height: 2.5rem; padding: 0 1rem; font-size: 0.875rem; }
.btn-lg { height: 3.5rem; padding: 0 2rem; font-size: 1rem; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { opacity: 0.9; }
.btn-brand { background: var(--brand); color: var(--brand-fg); }
.btn-brand:hover { opacity: 0.9; }
.btn-outline { background: var(--card); color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-glow { box-shadow: var(--shadow-glow); }
.btn-glow:hover { transform: scale(1.02); }
.btn-block { width: 100%; }
.arrow { display: inline-block; transition: transform 0.2s; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(252, 248, 238, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(0.89 0.018 75 / 0.6);
}
.nav-row { height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; }
.logo-mark { width: 1.75rem; height: 1.75rem; border-radius: 0.5rem; background: var(--ink); display: inline-flex; align-items: center; justify-content: center; color: var(--brand); }
.logo-mark svg { width: 1rem; height: 1rem; }
.nav-desktop { display: none; gap: 2rem; font-size: 0.875rem; color: var(--muted-fg); }
.nav-desktop a { transition: color 0.2s; }
.nav-desktop a:hover { color: var(--foreground); }
.nav-cta { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: var(--card); border: 1px solid var(--border); color: var(--ink);
  cursor: pointer;
}
.menu-toggle svg { width: 1.25rem; height: 1.25rem; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid oklch(0.89 0.018 75 / 0.6);
  background: rgba(252, 248, 238, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.5rem 1.25rem; }
.mobile-menu a { padding: 0.75rem; border-radius: 0.875rem; font-size: 1rem; font-weight: 500; color: var(--foreground); transition: background 0.2s; }
.mobile-menu a:hover { background: oklch(0.96 0.025 75 / 0.6); }
.mobile-cta { margin-top: 0.75rem; height: 3rem; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 4rem 1.25rem 6rem;
  background: var(--gradient-hero);
}
@media (min-width: 640px) { .hero { padding: 6rem 2rem 6rem; } }
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 0.95;
}
.hero h1 em { font-style: normal; color: var(--brand); }
.lead { margin-top: 2rem; max-width: 36rem; font-size: 1.125rem; color: var(--muted-fg); line-height: 1.7; }
@media (min-width: 640px) { .lead { font-size: 1.25rem; } }
.cta-row { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .cta-row { flex-direction: row; gap: 1rem; } }

.stats { margin-top: 5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat { padding: 1.25rem; border-radius: 1rem; background: oklch(1 0 0 / 0.6); backdrop-filter: blur(8px); border: 1px solid var(--border); }
.stat-k { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
@media (min-width: 640px) { .stat-k { font-size: 1.875rem; } }
.stat-v { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-fg); }
@media (min-width: 640px) { .stat-v { font-size: 0.875rem; } }

/* ===== Sections ===== */
.section { padding: 5rem 1.25rem; }
@media (min-width: 640px) { .section { padding: 7rem 2rem; } }
.bg-secondary { background: oklch(0.96 0.025 75 / 0.4); }
.bg-ink { background: var(--ink); color: #fff; }

.h-section { margin-top: 1.5rem; font-size: clamp(1.875rem, 5vw, 3rem); line-height: 1.1; max-width: 48rem; }
.h-section-sm { margin-top: 1.5rem; font-size: clamp(1.875rem, 4vw, 2.25rem); line-height: 1.2; }

.two-col { display: grid; gap: 2rem; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

.two-col-aligned { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .two-col-aligned { grid-template-columns: 1fr 1fr; } }

/* Pakketten */
.pkg-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.pkg {
  position: relative; padding: 2rem; border-radius: 1.5rem;
  background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.pkg-popular {
  background: var(--ink); color: #fff; border: 1px solid oklch(0.78 0.15 60 / 0.3);
  box-shadow: var(--shadow-glow);
}
@media (min-width: 1024px) { .pkg-popular { transform: translateY(-1rem); } }
.pkg-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: var(--brand); color: var(--brand-fg);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}
.pkg-name { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-fg); }
.pkg-popular .pkg-name { color: var(--brand); }
.pkg-price { margin-top: 0.75rem; font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--ink); }
.pkg-popular .pkg-price { color: #fff; }
.pkg-tagline { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-fg); }
.pkg-popular .pkg-tagline { color: rgba(255,255,255,0.8); }
.pkg-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pkg-features li { position: relative; padding-left: 1.5rem; font-size: 0.875rem; }
.pkg-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 700; }
.pkg-popular .pkg-features li { color: rgba(255,255,255,0.95); }
.pkg-desc { margin-top: 2rem; font-size: 0.875rem; font-style: italic; color: var(--muted-fg); }
.pkg-popular .pkg-desc { color: rgba(255,255,255,0.7); }
.pkg .btn { margin-top: 2rem; height: 3rem; padding: 0 1.5rem; }

/* Waarom */
.why-grid { margin-top: 3rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); transition: box-shadow 0.2s; }
.why-card:hover { box-shadow: var(--shadow-soft); }
.icon-box { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.why-card h3 { margin-top: 1.25rem; font-size: 1.125rem; }
.why-card p { margin-top: 0.5rem; }

/* Voor wie */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags span { padding: 0.5rem 1rem; border-radius: 9999px; background: var(--card); border: 1px solid var(--border); font-size: 0.875rem; }

/* Reviews */
.reviews-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review { margin: 0; padding: 1.75rem; border-radius: 1rem; background: var(--card); border: 1px solid var(--border); display: flex; flex-direction: column; }
.stars { color: var(--brand); letter-spacing: 0.1em; }
.review blockquote { margin: 1.25rem 0 0; line-height: 1.7; flex: 1; }
.review figcaption { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.r-name { font-weight: 600; color: var(--ink); }
.r-role { font-size: 0.875rem; color: var(--muted-fg); }

/* Proces */
.proces-grid { margin-top: 3.5rem; display: grid; gap: 2rem; }
@media (min-width: 768px) { .proces-grid { grid-template-columns: repeat(3, 1fr); } }
.proc-n { font-family: var(--font-display); font-size: 3.75rem; color: var(--brand); line-height: 1; }
.proces-grid h3 { margin-top: 1rem; font-size: 1.5rem; }
.proces-grid p { margin-top: 0.75rem; line-height: 1.7; }

/* Service */
.service-card {
  display: grid; gap: 2.5rem; align-items: center;
  padding: 2rem; border-radius: 1.5rem;
  background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .service-card { padding: 3.5rem; } }
@media (min-width: 1024px) { .service-card { grid-template-columns: 1fr 1fr; } }
.service-list { display: flex; flex-direction: column; gap: 0.75rem; }
.service-list li { padding: 1rem; border-radius: 0.75rem; background: oklch(0.96 0.025 75 / 0.6); font-weight: 500; }

/* FAQ */
.faq-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; } }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; font-size: 1.125rem; font-weight: 500; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .chev { color: var(--muted-fg); transition: transform 0.2s; }
.faq-list details[open] .chev { transform: rotate(180deg); }
.faq-list details p { padding-bottom: 1.5rem; color: var(--muted-fg); line-height: 1.7; }

/* CTA card */
.cta-card { padding: 2.5rem; border-radius: 2rem; text-align: center; background: var(--gradient-hero); }
@media (min-width: 640px) { .cta-card { padding: 4rem; } }
.cta-card .h-section { margin-left: auto; margin-right: auto; }

/* Contact */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-ic { width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--secondary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; transition: all 0.2s; }
.contact-item:hover .contact-ic { background: var(--ink); color: var(--brand); }
.ci-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); }
.ci-value { font-weight: 500; color: var(--ink); }
.wa-btn { height: 3rem; padding: 0 1.5rem; align-self: flex-start; }
.contact-form {
  padding: 1.75rem; border-radius: 1.5rem;
  background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 640px) { .contact-form { padding: 2.25rem; } }
.contact-form label { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0 1rem; height: 3rem;
  border-radius: 0.75rem; background: oklch(0.96 0.025 75 / 0.6);
  border: 1px solid var(--border); font-family: inherit; font-size: 1rem;
  color: var(--foreground); transition: all 0.2s;
}
.contact-form textarea { padding: 0.75rem 1rem; height: auto; resize: none; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--ink); background: var(--card); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--background); }
.footer-row { padding: 3.5rem 1.25rem; display: grid; gap: 2rem; align-items: start; }
@media (min-width: 640px) { .footer-row { grid-template-columns: 1fr 1fr; padding: 3.5rem 2rem; } }
.footer-right { text-align: left; }
@media (min-width: 640px) { .footer-right { text-align: right; } }
.footer-right a:hover { color: var(--ink); }
.footer-spacer { height: 6rem; }
@media (min-width: 768px) { .footer-spacer { display: none; } }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 50;
  display: flex; gap: 0.5rem; padding: 0.5rem;
  border-radius: 9999px; background: var(--ink);
  box-shadow: var(--shadow-glow); backdrop-filter: blur(8px);
}
.sticky-cta-main { flex: 1; height: 3rem; font-size: 0.875rem; }
.sticky-cta-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 1.25rem;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }
