/* Dokter Richard global stylesheet */
/* Built by build-global-css.mjs */

/* === shared.css === */
/* ===== SHARED CSS — Dokter Richard Website ===== */
/* Nav, footer, reset, variables, animations, and other shared styles */

/* ===== FONTS ===== */
@font-face {
    font-family: 'Bosten';
    src: url('https://dokterrichard.nl/wp-content/uploads/fonts/Bosten.woff2') format('woff2'),
         url('https://dokterrichard.nl/wp-content/uploads/fonts/Bosten.woff') format('woff'),
         url('https://dokterrichard.nl/wp-content/uploads/fonts/Bosten.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Mantul';
    src: url('https://dokterrichard.nl/wp-content/uploads/fonts/Mantul.woff2') format('woff2'),
         url('https://dokterrichard.nl/wp-content/uploads/fonts/Mantul.woff') format('woff'),
         url('https://dokterrichard.nl/wp-content/uploads/fonts/Mantul.otf') format('opentype');
    font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.025em;
    line-height: 1.15;
}
h1 { font-size: clamp(30px, 3.5vw, 44px); }
h2 { font-size: clamp(24px, 2.8vw, 32px); }
h3 { font-size: clamp(18px, 2vw, 24px); letter-spacing: -0.02em; }

:root {
    --bg: #FFFAF8;
    --bg-alt: #f7f0eb;
    --green: #7A8B82;
    --green-dark: #3a3d32;
    --accent: #C1774F;
    --sage: #a0a496;
    --cream: #fffcf8;
    --white: #ffffff;
    --text: #2a2d24;
    --text-body: #3a3d32;
    --text-muted: #a0a496;
    --border: rgba(136, 140, 121, 0.15);
    --border-strong: rgba(136, 140, 121, 0.3);
    --font-heading: 'Mantul', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;
    --max-width: 1400px;
    --section-padding: 120px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    background: var(--bg);
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== SEED OF LIFE DECORATIVE BACKGROUND ===== */
.has-seed-bg {
    position: relative;
    overflow: hidden;
}
.seed-bg {
    position: absolute;
    pointer-events: none;
    opacity: 0.07;
    z-index: 0;
}
.seed-bg circle {
    fill: none;
    stroke: #fff;
    stroke-width: 0.5;
}
.seed-bg-right {
    width: 380px; height: 380px;
    top: -60px; right: -80px;
}
.seed-bg-left {
    width: 300px; height: 300px;
    bottom: -50px; left: -60px;
}
.seed-bg-center {
    width: 500px; height: 500px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.seed-bg-top-right {
    width: 220px; height: 220px;
    top: -60px; right: -50px;
}
.has-seed-bg > *:not(.seed-bg) {
    position: relative;
    z-index: 1;
}

/* ===== NAVIGATION (Serenya pill + Momentus sharp) ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: transparent;
    transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled .nav-logo { color: #5c6e62; }
.nav.scrolled .nav-center { background: rgba(240, 235, 230, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav.scrolled .nav-center a { color: var(--text-muted); }
.nav.scrolled .nav-center a:hover { color: var(--green-dark); }
.nav.scrolled .nav-center a.active { background: var(--white); color: var(--green-dark); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.nav.scrolled .hamburger svg { stroke: var(--green-dark); }
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bosten', Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    color: #5c6e62;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: absolute;
    left: 48px;
}
.nav-logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: inherit;
    transition: color 0.3s;
    filter: hue-rotate(-25deg) saturate(27%) brightness(1.15);
}
.nav-center {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 4px;
}
.nav-center a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: all 0.2s;
}
.nav-center a:hover { color: var(--green-dark); }
.nav-center a.active {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    font-weight: 600;
}
.nav-cta {
    position: absolute;
    right: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px 8px 18px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.35s ease;
    overflow: hidden;
}
.nav-cta:hover { background: #d4885e; }
.nav-cta .btn-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
    flex-shrink: 0;
}
.nav-cta:hover .btn-arrow { transform: translateX(8px); background: rgba(255,255,255,0.25); }
.nav-cta .btn-arrow svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; }

/* ===== SUBPAGE NAV OVERRIDE ===== */
/* Subpages use a sticky, light-background nav instead of the transparent hero-overlay nav */
.nav.subpage-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 48px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}
.nav.subpage-nav.scrolled {
    background: rgba(255, 250, 248, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav.subpage-nav .nav-logo { color: #5c6e62; }
.nav.subpage-nav .nav-center {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nav.subpage-nav .nav-center a { color: var(--text-muted); }
.nav.subpage-nav .nav-center a:hover { color: var(--green-dark); }
.nav.subpage-nav .nav-center a.active {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav.subpage-nav .hamburger svg { stroke: var(--green-dark); }
.nav.subpage-nav.scrolled .nav-logo { color: #5c6e62; }
.nav.subpage-nav.scrolled .nav-center {
    background: var(--bg-alt);
}
.nav.subpage-nav.scrolled .nav-center a { color: var(--text-muted); opacity: 1; }
.nav.subpage-nav.scrolled .nav-center a:hover { color: var(--green-dark); }
.nav.subpage-nav.scrolled .nav-center a.active {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ===== PAGE HERO (shared across subpages) ===== */
.page-hero {
    padding: 80px 48px 60px;
    text-align: center;
    max-width: calc(var(--max-width) + 96px);
    margin: 0 auto;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.8vw, 52px);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== BUTTONS (Slide effect with arrow) ===== */
/* ===== UNIFIED BUTTON SYSTEM ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
/* Arrow icon inside button */
.btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
    flex-shrink: 0;
}
.btn:hover .btn-arrow {
    transform: translateX(14px);
}
.btn .btn-arrow svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* --- Small button variant --- */
.btn-sm {
    padding: 7px 16px;
    font-size: 12px;
    gap: 8px;
}
.btn-sm .btn-arrow { width: 20px; height: 20px; }

/* --- White button (light bg, dark text) --- */
.btn-white {
    background: #fff;
    color: var(--green-dark);
}
.btn-white .btn-arrow { background: rgba(42,45,36,0.08); }
.btn-white .btn-arrow svg { stroke: var(--green-dark); }
.btn-white:hover { background: #eef1ec; }
.btn-white:hover .btn-arrow { background: rgba(42,45,36,0.12); }

/* --- Accent / Orange button --- */
.btn-accent {
    background: var(--accent);
    color: #fff;
}
.btn-accent .btn-arrow { background: rgba(255,255,255,0.18); }
.btn-accent:hover { background: #d4885e; }
.btn-accent:hover .btn-arrow { background: rgba(255,255,255,0.25); }

/* --- Dark button --- */
.btn-dark {
    background: var(--green-dark);
    color: #fff;
}
.btn-dark .btn-arrow { background: rgba(255,255,255,0.15); }
.btn-dark:hover { background: #4a4e40; }
.btn-dark:hover .btn-arrow { background: rgba(255,255,255,0.22); }

/* --- Green button --- */
.btn-green {
    background: var(--green);
    color: #fff;
}
.btn-green .btn-arrow { background: rgba(255,255,255,0.18); }
.btn-green:hover { background: #8a9b92; }
.btn-green:hover .btn-arrow { background: rgba(255,255,255,0.25); }

/* --- Outline button --- */
.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 1.5px solid var(--border-strong);
}
.btn-outline .btn-arrow { background: rgba(42,45,36,0.08); }
.btn-outline:hover { background: rgba(42,45,36,0.04); border-color: var(--green); }
.btn-outline:hover .btn-arrow { background: rgba(42,45,36,0.12); }

/* --- Green button --- */
.btn-green {
    background: var(--green);
    color: #fff;
    border: none;
}
.btn-green .btn-arrow { background: rgba(255,255,255,0.15); }
.btn-green .btn-arrow svg { stroke: #fff; }
.btn-green:hover { background: #6b7c73; }
.btn-green:hover .btn-arrow { background: rgba(255,255,255,0.25); }

/* --- Outline white button --- */
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-white .btn-arrow { background: rgba(255,255,255,0.1); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover .btn-arrow { background: rgba(255,255,255,0.18); }

/* --- Ghost button (text only) --- */
.btn-ghost {
    background: none;
    color: var(--accent);
    padding: 12px 0;
    overflow: visible;
}
.btn-ghost .btn-arrow { background: rgba(193,119,79,0.1); }
.btn-ghost:hover { color: #d4885e; }
.btn-ghost:hover .btn-arrow { background: rgba(193,119,79,0.15); }

/* ===== LABEL ===== */
.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.label-dot {
    width: 16px; height: 16px;
    flex-shrink: 0;
}
.label-dot svg {
    width: 100%; height: 100%;
    display: block;
}

/* ===== SECTION HEADING PATTERN ===== */
.section-head {
    margin-bottom: 48px;
}
.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.section-head p {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.7;
    max-width: 480px;
}

/* ===== UNIFIED FOOTER ===== */
.unified-footer {
    background: #5e6e66;
    border-radius: 40px 40px 0 0;
    padding: 56px 48px 32px;
    position: relative;
    overflow: hidden;
}
.footer-seed-watermark {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 500px;
    height: 500px;
    fill: none;
    stroke: rgba(255,255,255,0.06);
    stroke-width: 0.3;
    pointer-events: none;
}
.footer-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    margin-bottom: 56px;
}
.footer-newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.footer-newsletter-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}
.newsletter-inner p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    line-height: 1.65;
}
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter-form button {
    padding: 12px 24px;
    background: #fff;
    color: var(--green-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
}
.newsletter-form button:hover { background: rgba(255,255,255,0.85); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-cols-row {
    display: contents;
}
.footer-brand .footer-logo {
    font-family: 'Bosten', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    max-width: 260px;
}
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.footer-social a {
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social a svg {
    width: 14px; height: 14px;
    fill: rgba(255,255,255,0.5);
    transition: fill 0.2s;
}
.footer-social a:hover svg { fill: #fff; }
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: #fff;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-d1 { transition-delay: 0.06s; }
.fade-in-d2 { transition-delay: 0.12s; }
.fade-in-d3 { transition-delay: 0.18s; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none; border: none; cursor: pointer;
}
.mobile-nav-close svg {
    width: 28px; height: 28px;
    stroke: var(--green-dark); stroke-width: 2; fill: none;
}
.mobile-nav-cta {
    margin-top: 12px;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav { padding: 12px 32px; }
    .nav.subpage-nav { padding: 12px 32px; }
    .nav-center { display: none; }
    .nav-cta { display: none; }
    .nav-logo { position: static; }
    .hamburger { display: block; position: absolute; right: 32px; }

    .page-hero { padding: 60px 32px 48px; }

    .unified-footer { padding: 40px 32px 24px; }
    .footer-newsletter { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: 1; }
    .footer-cols-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 56px; }

    .nav { padding: 10px 20px; }
    .nav.subpage-nav { padding: 10px 20px; }
    .nav-logo { font-size: 16px; }
    .hamburger { right: 20px; }

    .page-hero { padding: 48px 20px 36px; }
    .page-hero h1 { font-size: 28px; }

    .unified-footer { padding: 32px 20px 20px; border-radius: 28px 28px 0 0; }
    .footer-newsletter { padding: 24px; border-radius: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; font-size: 13px; }
    .footer-cols-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 26px; }
}
/* ===== SPLIT PAGE HERO (matches Over mij style) ===== */
.split-hero-section {
    padding: 160px 48px 72px;
    max-width: calc(var(--max-width) + 96px);
    margin: 0 auto;
}
.split-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.split-hero-content {
    background: #f7f0eb;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.split-hero-content p,
.split-hero-content .hero-intro {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 0;
}
.split-hero-content .hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.split-hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}
.split-hero-image {
    border-radius: 24px;
    overflow: hidden;
    flex: 1;
    min-height: 300px;
}
.split-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    aspect-ratio: 3/2;
}
/* ===== REVERSED (image left, content right) ===== */
.split-hero-grid--reverse {
    direction: rtl;
}
.split-hero-grid--reverse > * {
    direction: ltr;
}
.split-hero-card {
    background: #eef0ed;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.split-hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.split-hero-card-icon svg {
    width: 18px; height: 18px;
    stroke: #fff; fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.split-hero-card-text { flex: 1; }
.split-hero-card-text strong {
    font-family: var(--font-heading);
    font-size: 14px; font-weight: 700;
    color: var(--green-dark); display: block;
}
.split-hero-card-text span {
    font-size: 12px; color: var(--text-muted);
}
@media (max-width: 1024px) {
    .split-hero-section { padding: 130px 32px 56px; }
    .split-hero-grid { grid-template-columns: 1fr; }
    .split-hero-content { padding: 40px 32px; }
    .split-hero-image { min-height: 260px; }
}
@media (max-width: 768px) {
    .split-hero-section { padding: 116px 20px 48px; }
    .split-hero-content { padding: 32px 24px; }
    .split-hero-image { min-height: 220px; }
}

/* ===== FULL-WIDTH HERO WRAP (consult, contact) ===== */
.hero-wrap {
    background: #f7f0eb;
    border-radius: 0 0 40px 40px;
    padding-top: 100px;
}
.hero-wrap-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 48px 72px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.hero-wrap-text h1 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-wrap-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 360px;
}
.hero-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 56px;
}
.hero-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.hero-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.5;
}
.hero-info-value a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.hero-info-value a:hover {
    color: var(--accent);
}
.hero-info-sub {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}
@media (max-width: 1024px) {
    .hero-wrap-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 32px 56px;
    }
    .hero-wrap-text p { max-width: 100%; }
}
@media (max-width: 768px) {
    .hero-wrap { padding-top: 80px; border-radius: 0 0 28px 28px; }
    .hero-wrap-inner { padding: 36px 20px 48px; gap: 32px; }
    .hero-info-grid { gap: 28px 32px; }
}
@media (max-width: 480px) {
    .hero-info-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== INSCHRIJF PAGES ===== */
.inschrijf-section {
    padding: 64px 48px 100px;
}
.inschrijf-container {
    max-width: 560px;
    margin: 0 auto;
}
.inschrijf-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
}
.inschrijf-back:hover { color: var(--green); }
.inschrijf-back svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none;
    stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
}
.inschrijf-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 8px;
}
.inschrijf-title {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 24px;
}
.inschrijf-summary {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}
.inschrijf-detail {
    flex: 1;
    min-width: 90px;
}
.inschrijf-detail-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.inschrijf-detail-value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.inschrijf-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.inschrijf-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
}
.inschrijf-form label span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}
.inschrijf-form input,
.inschrijf-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-body);
    outline: none;
    resize: vertical;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.inschrijf-form input:focus,
.inschrijf-form textarea:focus { border-color: var(--green); }
.inschrijf-form textarea { min-height: 90px; }
.inschrijf-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}
.inschrijf-submit:hover { background: #d4885e; }
.inschrijf-note {
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .inschrijf-section { padding: 48px 20px 80px; }
    .inschrijf-summary { flex-direction: column; gap: 12px; }
}

/* ===== ELEMENTOR COLUMN CSS COMPATIBILITY ===== */
/* HTML classes designed for CSS-grid cells (e.g. about-hero-text, stat-item) are
   applied to Elementor columns. These classes often set display:flex + justify-content:center,
   which centers the 268px widget-wrap inside a 1700px+ tall column — pushing content
   off-screen. Fix: reset justify-content on all Elementor columns so Elementor's own
   widget-wrap alignment takes over (controlled via vertical_align setting). */
.elementor-column { justify-content: flex-start !important; }



/* === per-page from behandelingen.html === */

        /* ===== TRAJECT HERO BLOCK ===== */
        .traject-hero {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            border-radius: 24px;
            overflow: hidden;
            margin: 0 48px 0;
            min-height: 420px;
        }
        .traject-hero--accent { background: var(--accent); }
        .traject-hero--green  { background: var(--green); }
        .traject-hero--reverse { direction: rtl; }
        .traject-hero--reverse > * { direction: ltr; }
        .traject-hero-text {
            padding: 64px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .traject-hero-text .th-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.6);
            margin-bottom: 14px;
        }
        .traject-hero-text h2 {
            color: #fff;
            margin-bottom: 8px;
        }
        .traject-hero-text .th-subtitle {
            font-size: 15px;
            font-style: italic;
            color: rgba(255,255,255,0.75);
            margin-bottom: 28px;
            line-height: 1.5;
        }
        .th-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }
        .th-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: rgba(255,255,255,0.9);
            line-height: 1.4;
        }
        .th-bullets li svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5;
            padding: 3px;
            margin-top: 1px;
        }
        .th-details {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .th-detail {
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 10px 16px;
        }
        .th-detail-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: rgba(255,255,255,0.55);
            margin-bottom: 2px;
        }
        .th-detail-value {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }
        .traject-hero-image {
            position: relative;
            overflow: hidden;
        }
        .traject-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        /* ===== INTRO TEXT ===== */
        .traject-intro-text {
            padding: 40px 48px 0;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .traject-intro-text p {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 12px;
            max-width: 760px;
        }
        .traject-intro-text p:last-child { margin-bottom: 0; }

        /* ===== INFO BLOCKS ===== */
        .info-blocks {
            padding: 32px 48px 80px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .iblocks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }
        .iblock {
            position: relative;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 0;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            overflow: hidden;
        }
        .iblock::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--green);
            z-index: 2;
        }
        .iblock--accent::before { background: var(--accent); }
        .iblock--green::before  { background: var(--green-dark); }
        .iblock:hover {
            box-shadow: 0 18px 50px rgba(58, 61, 50, 0.10);
            transform: translateY(-4px);
        }
        .iblock--span2  { grid-column: span 2; }
        .iblock--span3  { grid-column: span 3; }
        /* Colored header band */
        .iblock-header {
            position: relative;
            background: var(--green);
            padding: 28px 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .iblock--accent .iblock-header { background: var(--accent); }
        .iblock--green  .iblock-header { background: var(--green-dark); }
        .iblock-header::after {
            content: '';
            position: absolute;
            left: 28px;
            right: 28px;
            bottom: 0;
            height: 1px;
            background: rgba(255,255,255,0.18);
        }
        .iblock-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            flex-shrink: 0;
        }
        .iblock-icon svg {
            width: 20px;
            height: 20px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .iblock-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.65);
            margin-bottom: 4px;
        }
        .iblock h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            line-height: 1.25;
            margin: 0;
        }
        /* Body padding */
        .iblock-body {
            padding: 24px 28px 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            flex: 1;
        }
        .iblock p {
            font-size: 14.5px;
            color: var(--text-body);
            line-height: 1.75;
            margin: 0;
        }
        .iblock ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            flex: 1;
        }
        .iblock ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 13.5px;
            color: var(--text-body);
            line-height: 1.55;
            padding: 11px 0;
            border-bottom: 1px dashed rgba(136, 140, 121, 0.18);
        }
        .iblock ul li:first-child { padding-top: 4px; }
        .iblock ul li:last-child { border-bottom: none; padding-bottom: 2px; }
        .iblock ul li strong {
            color: var(--green-dark);
            font-weight: 700;
            display: block;
            margin-bottom: 2px;
        }
        .iblock ul li .li-text {
            flex: 1;
        }
        .iblock ul li svg {
            width: 18px; height: 18px;
            stroke: #fff;
            fill: none;
            stroke-width: 3;
            flex-shrink: 0;
            margin-top: 2px;
            background: var(--green);
            border-radius: 50%;
            padding: 3px;
            box-sizing: border-box;
        }
        .iblock--accent ul li svg { background: var(--accent); }
        .iblock--green  ul li svg { background: var(--green-dark); }
        .iblock ul li::before { display: none; }
        .iblock .iblock-quote {
            font-family: var(--font-heading);
            font-size: 14px;
            font-style: italic;
            color: var(--text-body);
            background: #f7f0eb;
            border-left: 3px solid var(--green);
            padding: 14px 16px;
            border-radius: 0 8px 8px 0;
            margin-top: auto;
            line-height: 1.5;
        }
        .iblock--accent .iblock-quote { border-left-color: var(--accent); }
        .iblock--green  .iblock-quote { border-left-color: var(--green-dark); }
        .iblock .timeline-list {
            list-style: none;
            padding: 0;
            margin: 6px 0 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .iblock .timeline-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
        }
        .iblock .timeline-list li::before { content: none; display: none; }
        .iblock .tl-num {
            width: 22px; height: 22px;
            border-radius: 50%;
            background: rgba(58,61,50,0.1);
            color: var(--green-dark);
            font-size: 11px; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .iblock .iblock-cta {
            margin-top: 12px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        @media (max-width: 1024px) {
            .info-blocks { padding: 24px 32px 64px; }
            .iblocks-grid { grid-template-columns: repeat(2, 1fr); }
            .iblock--span2, .iblock--span3 { grid-column: span 2; }
        }
        @media (max-width: 768px) {
            .info-blocks { padding: 20px 20px 48px; }
            .iblocks-grid { grid-template-columns: 1fr; }
            .iblock--span2, .iblock--span3 { grid-column: span 1; }
        }

        /* ===== RESPONSIVE TRAJECT HERO ===== */
        @media (max-width: 1024px) {
            .traject-hero { margin: 0 32px; grid-template-columns: 1fr; }
            .traject-hero-image { min-height: 300px; }
            .traject-intro-text { padding: 32px 32px 0; }
        }
        @media (max-width: 768px) {
            .traject-hero { margin: 0 20px; }
            .traject-hero-text { padding: 40px 28px; }
            .traject-intro-text { padding: 24px 20px 0; }
        }

        .split-hero-content { background: #f7f0eb; }
        .split-hero-card {
            background: var(--green-dark);
            border-color: var(--green-dark);
        }
        .split-hero-card-icon { background: rgba(255,255,255,0.15); }
        .split-hero-card-text strong { color: #fff; }
        .split-hero-card-text span { color: rgba(255,255,255,0.7); }
    
/* === per-page from blog.html === */

        .blog-hero {
            background: var(--green-dark);
            padding: 160px 48px 80px;
            text-align: center;
        }
        .blog-hero-inner {
            max-width: 640px;
            margin: 0 auto;
        }
        .blog-hero h1 {
            color: #fff;
            margin-bottom: 16px;
        }
        .blog-hero p {
            font-size: 16px;
            color: rgba(255,255,255,0.72);
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .blog-hero { padding: 120px 24px 60px; }
        }
    
/* === per-page from boeken.html === */

        /* ============================================
           BOOK PAGE — Novik-style in huisstijl
           ============================================ */

        /* ============================================
           HERO — split panel with burst background
           ============================================ */
        .bk-wrap {
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
            padding: 0 48px;
        }

        .bk-hero {
            padding: 130px 48px 60px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .bk-hero-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 28px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: 0 30px 80px -30px rgba(58,61,50,0.15);
        }

        /* LEFT: panel with burst + cover */
        .bk-hero-left {
            position: relative;
            background: var(--accent);
            padding: 72px 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 620px;
            overflow: hidden;
        }
        .bk-hero-burst {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }
        .bk-hero-burst svg {
            width: 600px;
            height: 600px;
            position: absolute;
            top: -220px;
            left: -220px;
            opacity: 0.12;
        }
        .bk-hero-cover {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 320px;
            aspect-ratio: 2/3;
            border-radius: 8px;
            overflow: hidden;
            box-shadow:
                0 40px 80px -24px rgba(58,61,50,0.35),
                0 14px 32px -12px rgba(58,61,50,0.18);
            transform: rotate(-2deg);
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .bk-hero-cover:hover { transform: rotate(-1deg) translateY(-6px); }
        .bk-hero-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Floating badges */
        .bk-badge {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 22px 12px 12px;
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255,255,255,0.8);
            border-radius: 999px;
            box-shadow: 0 10px 30px -8px rgba(58,61,50,0.15);
            z-index: 3;
        }
        .bk-badge-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .bk-badge-icon svg {
            width: 18px; height: 18px;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .bk-badge-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }
        .bk-badge-text strong {
            font-size: 14px;
            font-weight: 700;
            color: var(--green-dark);
        }
        .bk-badge-text span {
            font-size: 12px;
            color: var(--text-body);
            font-weight: 500;
        }
        .bk-badge--top {
            top: 48px;
            right: 48px;
        }
        .bk-badge--top .bk-badge-icon {
            background: rgba(193,119,79,0.18);
        }
        .bk-badge--top .bk-badge-icon svg { stroke: var(--accent); }
        .bk-badge--bottom {
            bottom: 48px;
            left: 48px;
        }
        .bk-badge--bottom .bk-badge-text strong { text-transform: uppercase; font-size: 10px; letter-spacing: 0.08em; color: var(--text-muted); }
        .bk-badge--bottom .bk-badge-text span { font-size: 14px; color: var(--green-dark); font-weight: 700; }
        .bk-badge--bottom .bk-badge-icon {
            background: rgba(122,139,130,0.22);
        }
        .bk-badge--bottom .bk-badge-icon svg { stroke: var(--green); }

        /* RIGHT: content */
        .bk-hero-right {
            padding: 72px 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #fff;
        }
        .bk-pill {
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 28px;
            box-shadow: 0 6px 20px -10px rgba(58,61,50,0.12);
        }
        .bk-pill-emoji {
            width: 16px; height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .bk-pill-emoji svg {
            width: 16px; height: 16px;
            fill: var(--accent);
        }
        .bk-hero-right h1 {
            font-family: var(--font-heading);
            font-size: clamp(30px, 3.5vw, 44px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--green-dark);
            margin: 0 0 22px;
        }
        .bk-hero-right h1 .soft {
            color: var(--green);
        }
        .bk-hero-right > p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-body);
            margin: 0 0 24px;
            max-width: 460px;
        }
        .bk-hero-price {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 0 0 28px;
        }
        .bk-hero-price-item {
            display: flex;
            flex-direction: column;
        }
        .bk-hero-price-type {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .bk-hero-price-val {
            font-family: var(--font-heading);
            font-size: 30px;
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .bk-hero-price-divider {
            width: 1px;
            height: 40px;
            background: var(--border);
        }
        .bk-hero-cta {
            display: flex;
            gap: 12px;
            margin-bottom: 44px;
            flex-wrap: wrap;
        }
        .bk-stats {
            display: flex;
            gap: 36px;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
        }
        .bk-stat {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .bk-stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .bk-stat-icon svg {
            width: 22px; height: 22px;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .bk-stat:nth-child(1) .bk-stat-icon {
            background: rgba(122,139,130,0.15);
        }
        .bk-stat:nth-child(1) .bk-stat-icon svg { stroke: var(--green); }
        .bk-stat:nth-child(2) .bk-stat-icon {
            background: rgba(193,119,79,0.15);
        }
        .bk-stat:nth-child(2) .bk-stat-icon svg { stroke: var(--accent); }
        .bk-stat-text strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.2;
        }
        .bk-stat-text span {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ============================================
           REVIEWS ROW
           ============================================ */
        .bk-reviews {
            padding: 72px 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .bk-reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .bk-review {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 30px 28px;
            transition: box-shadow 0.3s, transform 0.3s;
        }
        .bk-review:hover {
            box-shadow: 0 18px 40px -18px rgba(58,61,50,0.15);
            transform: translateY(-3px);
        }
        .bk-review-stars {
            display: flex;
            align-items: center;
            gap: 3px;
            margin-bottom: 16px;
        }
        .bk-review-stars svg {
            width: 16px; height: 16px;
            fill: var(--accent);
        }
        .bk-review-rating {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-left: 6px;
        }
        .bk-review p {
            font-size: 15px;
            line-height: 1.6;
            color: var(--green-dark);
            font-weight: 500;
            margin: 0 0 22px;
        }
        .bk-review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .bk-review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #eef0ed;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: var(--green);
            flex-shrink: 0;
        }
        .bk-review-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--green-dark);
        }

        /* ============================================
           ABOUT THE BOOK
           ============================================ */
        .bk-about {
            padding: 72px 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
            background: #eef0ed;
            border-radius: 28px;
        }
        .bk-about-wrap {
            padding: 64px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }
        .bk-about-left .bk-kicker {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--text-muted);
            margin-bottom: 10px;
            display: block;
        }
        .bk-about-left h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.6vw, 48px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.1;
            margin: 0 0 20px;
            letter-spacing: -0.02em;
        }
        .bk-about-left h2 .soft { color: var(--green); }
        .bk-about-left > p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-body);
            margin: 0 0 14px;
            max-width: 520px;
        }
        .bk-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px 24px;
            margin: 28px 0 32px;
        }
        .bk-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .bk-feature-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .bk-feature-icon svg {
            width: 18px; height: 18px;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .bk-feature:nth-child(1) .bk-feature-icon { background: rgba(193,119,79,0.18); }
        .bk-feature:nth-child(1) .bk-feature-icon svg { stroke: var(--accent); }
        .bk-feature:nth-child(2) .bk-feature-icon { background: rgba(122,139,130,0.22); }
        .bk-feature:nth-child(2) .bk-feature-icon svg { stroke: var(--green); }
        .bk-feature:nth-child(3) .bk-feature-icon { background: rgba(58,61,50,0.12); }
        .bk-feature:nth-child(3) .bk-feature-icon svg { stroke: var(--green-dark); }
        .bk-feature:nth-child(4) .bk-feature-icon { background: rgba(193,119,79,0.18); }
        .bk-feature:nth-child(4) .bk-feature-icon svg { stroke: var(--accent); }
        .bk-feature-text strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 2px;
        }
        .bk-feature-text span {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* right: image + seal */
        .bk-about-right {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bk-about-img {
            width: 100%;
            max-width: 340px;
            aspect-ratio: 3/4;
            border-radius: var(--radius-lg);
            object-fit: cover;
            box-shadow: 0 30px 60px -20px rgba(58,61,50,0.25);
            transform: rotate(-1.5deg);
        }
        .bk-shop-seal {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.1;
            text-align: center;
            transform: rotate(8deg);
            box-shadow: 0 14px 32px -8px rgba(193,119,79,0.45);
            text-decoration: none;
            transition: transform 0.35s ease;
            z-index: 2;
        }
        .bk-shop-seal:hover { transform: rotate(8deg) scale(1.05); }
        .bk-shop-seal strong {
            font-size: 16px;
            display: block;
            margin-top: 2px;
        }

        /* ============================================
           INSIDE THE BOOK — feature cards
           ============================================ */
        .bk-inside {
            padding: 96px 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
            text-align: center;
        }
        .bk-inside h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.6vw, 48px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.1;
            margin: 0 0 12px;
            letter-spacing: -0.02em;
        }
        .bk-inside > p {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0 auto 60px;
            max-width: 500px;
        }
        .bk-inside-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: center;
        }
        .bk-inside-card {
            padding: 20px;
        }
        .bk-inside-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
        }
        .bk-inside-icon svg {
            width: 32px; height: 32px;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .bk-inside-card:nth-child(1) .bk-inside-icon {
            background: rgba(193,119,79,0.18);
        }
        .bk-inside-card:nth-child(1) .bk-inside-icon svg { stroke: var(--accent); }
        .bk-inside-card:nth-child(2) .bk-inside-icon {
            background: rgba(122,139,130,0.2);
        }
        .bk-inside-card:nth-child(2) .bk-inside-icon svg { stroke: var(--green); }
        .bk-inside-card:nth-child(3) .bk-inside-icon {
            background: rgba(58,61,50,0.12);
        }
        .bk-inside-card:nth-child(3) .bk-inside-icon svg { stroke: var(--green-dark); }
        .bk-inside-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--green-dark);
            margin: 0 0 10px;
        }
        .bk-inside-card p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--text-body);
            max-width: 260px;
            margin: 0 auto;
        }

        /* ============================================
           EDITIONS — pricing cards
           ============================================ */
        .bk-editions {
            padding: 64px 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
            background: var(--green-dark);
            border-radius: 28px;
            text-align: center;
        }
        .bk-editions h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 2.8vw, 36px);
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin: 0 0 40px;
            letter-spacing: -0.02em;
        }
        .bk-editions > p {
            font-size: 15px;
            color: rgba(255,255,255,0.65);
            margin: 0 auto 56px;
            max-width: 520px;
        }
        .bk-editions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 680px;
            margin: 0 auto;
            text-align: left;
        }
        .bk-edition-inner {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 36px;
            align-items: center;
        }
        .bk-edition-book-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.18);
        }
        .bk-edition-book-img img {
            width: 100%;
            display: block;
            aspect-ratio: 3/4;
            object-fit: cover;
        }
        .bk-edition {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 34px;
            position: relative;
            transition: box-shadow 0.3s, transform 0.3s;
        }
        .bk-edition:hover {
            box-shadow: 0 20px 50px -20px rgba(58,61,50,0.18);
            transform: translateY(-3px);
        }
        .bk-edition--featured {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .bk-edition-badge {
            position: absolute;
            top: 18px;
            right: 18px;
            padding: 6px 14px;
            border-radius: 999px;
            background: var(--accent);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .bk-edition-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #eef0ed;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .bk-edition--featured .bk-edition-icon {
            background: rgba(255,255,255,0.18);
        }
        .bk-edition-icon svg {
            width: 22px; height: 22px;
            fill: none;
            stroke: var(--green-dark);
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .bk-edition--featured .bk-edition-icon svg { stroke: #fff; }
        .bk-edition h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            margin: 0 0 6px;
            color: inherit;
        }
        .bk-edition-sub {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 22px;
        }
        .bk-edition--featured .bk-edition-sub {
            color: rgba(255,255,255,0.6);
        }
        .bk-edition-price {
            display: flex;
            align-items: baseline;
            gap: 6px;
            font-family: var(--font-heading);
            margin-bottom: 26px;
        }
        .bk-edition-currency {
            font-size: 22px;
            font-weight: 700;
        }
        .bk-edition-amount {
            font-size: 52px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
        }
        .bk-edition-unit {
            font-size: 13px;
            color: var(--text-muted);
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }
        .bk-edition--featured .bk-edition-unit { color: rgba(255,255,255,0.6); }
        .bk-edition-list {
            list-style: none;
            padding: 0 0 24px;
            margin: 0 0 24px;
            border-bottom: 1px solid var(--border);
        }
        .bk-edition--featured .bk-edition-list {
            border-bottom-color: rgba(255,255,255,0.15);
        }
        .bk-edition-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 13px;
            color: var(--text-body);
        }
        .bk-edition--featured .bk-edition-list li {
            color: rgba(255,255,255,0.85);
        }
        .bk-edition-list li svg {
            width: 16px; height: 16px;
            stroke: var(--green);
            fill: none;
            stroke-width: 2.5;
            flex-shrink: 0;
        }
        .bk-edition--featured .bk-edition-list li svg { stroke: var(--accent); }
        .bk-edition-cta {
            display: block;
            text-align: center;
            padding: 14px 24px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--green-dark);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s;
        }
        .bk-edition-cta:hover {
            background: var(--green-dark);
            color: #fff;
            border-color: var(--green-dark);
        }
        .bk-edition--featured .bk-edition-cta {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .bk-edition--featured .bk-edition-cta:hover {
            background: #d4885e;
            border-color: #d4885e;
        }

        /* ============================================
           EDITIONS — two-col layout
           ============================================ */
        .bk-editions h2 .soft { color: var(--accent); }
        .bk-editions-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            max-width: 900px;
            margin: 0 auto;
            align-items: center;
            text-align: left;
        }
        .bk-editions-photo {
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
        }
        .bk-editions-photo img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }
        .bk-editions-body .bk-editions-grid {
            max-width: 100%;
            margin: 0;
        }

        /* ============================================
           FAQ
           ============================================ */
        .bk-faq {
            padding: 96px 48px;
            max-width: 840px;
            margin: 0 auto;
            text-align: center;
        }
        .bk-faq h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.6vw, 48px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.1;
            margin: 0 0 12px;
            letter-spacing: -0.02em;
        }
        .bk-faq > p {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0 auto 48px;
        }
        .bk-faq-list {
            text-align: left;
        }
        .bk-faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
        }
        .bk-faq-item summary {
            padding: 20px 26px;
            font-size: 15px;
            font-weight: 600;
            color: var(--green-dark);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transition: color 0.2s;
        }
        .bk-faq-item summary::-webkit-details-marker { display: none; }
        .bk-faq-item summary::after {
            content: '+';
            font-size: 24px;
            color: var(--accent);
            font-weight: 400;
            line-height: 1;
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        .bk-faq-item[open] summary::after {
            transform: rotate(45deg);
        }
        .bk-faq-item[open] summary { color: var(--accent); }
        .bk-faq-item p {
            padding: 0 26px 22px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-body);
            margin: 0;
        }

        /* ============================================
           FINAL CTA
           ============================================ */
        .bk-final {
            padding: 72px 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .bk-final-card {
            background: #eef0ed;
            border-radius: 28px;
            padding: 64px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 56px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .bk-final-burst {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.35;
        }
        .bk-final-burst svg { width: 100%; height: 100%; }
        .bk-final-img {
            position: relative;
            z-index: 1;
            aspect-ratio: 4/3;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 30px 60px -20px rgba(58,61,50,0.25);
        }
        .bk-final-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .bk-final-content {
            position: relative;
            z-index: 1;
        }
        .bk-final-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.8vw, 52px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.1;
            margin: 0 0 16px;
            letter-spacing: -0.02em;
        }
        .bk-final-content h2 .soft { color: var(--accent); }
        .bk-final-content p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-body);
            margin: 0 0 28px;
            max-width: 440px;
        }
        .bk-final-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ============================================
           LIBRARY — other books (compact)
           ============================================ */
        .bk-library {
            padding: 72px 48px 120px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .bk-library-head {
            text-align: center;
            margin-bottom: 48px;
        }
        .bk-library-head h2 {
            font-family: var(--font-heading);
            font-size: clamp(30px, 3.4vw, 42px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.1;
            margin: 0 0 10px;
            letter-spacing: -0.02em;
        }
        .bk-library-head p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }
        .bk-library-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .bk-library-card {
            display: grid;
            grid-template-columns: 130px 1fr;
            gap: 26px;
            padding: 26px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            text-decoration: none;
            transition: all 0.3s;
        }
        .bk-library-card:hover {
            background: #eef0ed;
            transform: translateY(-3px);
            box-shadow: 0 18px 40px -18px rgba(58,61,50,0.14);
        }
        .bk-library-card img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            border-radius: 6px;
            box-shadow: 0 14px 32px -14px rgba(58,61,50,0.22);
        }
        .bk-library-card-type {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--accent);
            display: block;
            margin-bottom: 8px;
        }
        .bk-library-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--green-dark);
            margin: 0 0 10px;
            line-height: 1.2;
        }
        .bk-library-card p {
            font-size: 13px;
            line-height: 1.55;
            color: var(--text-body);
            margin: 0 0 14px;
        }
        .bk-library-card-price {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--green-dark);
        }
        .bk-library-card-price s {
            font-size: 12px;
            color: var(--text-muted);
            margin-left: 6px;
            font-weight: 400;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1100px) {
            .bk-hero { padding: 130px 32px 56px; }
            .bk-hero-card { grid-template-columns: 1fr; }
            .bk-hero-left { padding: 64px 40px 100px; min-height: 520px; }
            .bk-hero-right { padding: 56px 40px; }
            .bk-badge--top { top: 32px; right: 32px; }
            .bk-badge--bottom { bottom: 32px; left: 32px; }

            .bk-reviews { padding: 56px 32px; }
            .bk-reviews-grid { grid-template-columns: 1fr; }

            .bk-about { padding: 48px 32px; }
            .bk-about-wrap { padding: 48px 40px; grid-template-columns: 1fr; gap: 48px; }
            .bk-shop-seal { top: 16px; right: 16px; width: 78px; height: 78px; font-size: 11px; }
            .bk-shop-seal strong { font-size: 14px; }

            .bk-inside { padding: 72px 32px; }
            .bk-inside-grid { grid-template-columns: 1fr; gap: 40px; }

            .bk-editions { padding: 72px 32px; }
            .bk-editions-grid { grid-template-columns: 1fr; }
            .bk-editions-body { grid-template-columns: 1fr; }

            .bk-faq { padding: 72px 32px; }

            .bk-final { padding: 56px 32px; }
            .bk-final-card { padding: 48px 40px; grid-template-columns: 1fr; gap: 40px; }

            .bk-library { padding: 56px 32px 96px; }
            .bk-library-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 640px) {
            .bk-hero { padding: 110px 20px 48px; }
            .bk-hero-left { padding: 48px 24px 90px; min-height: 460px; }
            .bk-hero-right { padding: 44px 24px; }
            .bk-hero-cover { max-width: 240px; }
            .bk-badge { padding: 10px 18px 10px 10px; }
            .bk-badge-icon { width: 34px; height: 34px; }
            .bk-badge--top { top: 20px; right: 20px; }
            .bk-badge--bottom { bottom: 20px; left: 20px; }
            .bk-stats { gap: 20px; flex-direction: column; }

            .bk-reviews { padding: 48px 20px; }

            .bk-about { padding: 40px 20px; }
            .bk-about-wrap { padding: 36px 24px; }
            .bk-features { grid-template-columns: 1fr; }
            .bk-about-right { padding: 0; min-height: 0; }

            .bk-inside { padding: 60px 20px; }
            .bk-editions { padding: 60px 24px; }
            .bk-editions-grid { grid-template-columns: 1fr; }
            .bk-edition { padding: 28px 24px; }

            .bk-faq { padding: 60px 20px; }
            .bk-faq-item summary { padding: 16px 20px; font-size: 14px; }
            .bk-faq-item p { padding: 0 20px 18px; }

            .bk-final { padding: 48px 20px; }
            .bk-final-card { padding: 36px 24px; }

            .bk-library { padding: 48px 20px 80px; }
            .bk-library-card { grid-template-columns: 100px 1fr; gap: 18px; padding: 18px; }
            .bk-library-card h3 { font-size: 18px; }
        }

        /* ===== BESTEL MODAL ===== */
        .bestel-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(42,45,36,0.55);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            padding: 20px;
        }
        .bestel-modal-overlay.active { display: flex; }
        .bestel-modal {
            background: #fff;
            border-radius: 24px;
            padding: 44px 40px 40px;
            max-width: 460px;
            width: 100%;
            position: relative;
            box-shadow: 0 32px 80px rgba(42,45,36,0.18);
            animation: modalIn 0.22s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: translateY(14px) scale(0.97); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }
        .bestel-modal-close {
            position: absolute;
            top: 14px; right: 14px;
            width: 32px; height: 32px;
            border-radius: 50%;
            background: #eef0ed;
            border: none;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: var(--green-dark);
            font-size: 16px;
            line-height: 1;
        }
        .bestel-modal-close:hover { background: #dfe7e0; }
        .bestel-modal h3 {
            font-family: var(--font-heading);
            font-size: 21px;
            color: var(--green-dark);
            margin-bottom: 6px;
        }
        .bestel-modal-sub {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 28px;
        }
        .bestel-modal-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .bestel-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            border-radius: 14px;
            padding: 18px 20px;
            text-decoration: none;
            transition: opacity 0.18s, transform 0.18s;
            cursor: pointer;
        }
        .bestel-option:hover { opacity: 0.88; transform: translateY(-1px); }
        .bestel-option--primary { background: var(--accent); }
        .bestel-option--secondary { background: #f5f0eb; border: 1.5px solid var(--border); }
        .bestel-option-left {}
        .bestel-option-type {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: rgba(255,255,255,0.65);
            margin-bottom: 3px;
        }
        .bestel-option--secondary .bestel-option-type { color: var(--text-muted); }
        .bestel-option-name {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }
        .bestel-option--secondary .bestel-option-name { color: var(--green-dark); }
        .bestel-option-detail {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            margin-top: 2px;
        }
        .bestel-option--secondary .bestel-option-detail { color: var(--text-muted); }
        .bestel-option-price {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            flex-shrink: 0;
        }
        .bestel-option--secondary .bestel-option-price { color: var(--green-dark); }
        @media (max-width: 480px) {
            .bestel-modal { padding: 36px 24px 28px; }
        }
    
/* === per-page from cafe-noir.html === */

        /* ===== HERO ===== */
        .bk-hero {
            padding: 100px 48px 0;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .bk-hero-card {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            border-radius: 28px;
            overflow: hidden;
            min-height: 520px;
        }
        .bk-hero-left {
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 56px 40px;
            position: relative;
        }
        .bk-hero-cover {
            position: relative;
            z-index: 1;
            max-width: 220px;
            width: 100%;
        }
        .bk-hero-cover img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 32px 64px rgba(0,0,0,0.3);
        }
        .bk-hero-right {
            background: #f7f0eb;
            padding: 56px 52px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .bk-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(58,61,50,0.08);
            border-radius: 999px;
            padding: 6px 14px 6px 10px;
            font-size: 12px;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 20px;
            width: fit-content;
        }
        .bk-hero-right h1 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 700;
            line-height: 1.1;
            color: var(--green-dark);
            letter-spacing: -0.02em;
            margin: 0 0 12px;
        }
        .bk-hero-right .book-sub {
            font-style: italic;
            font-size: 15px;
            color: var(--text-muted);
            margin: 0 0 28px;
            line-height: 1.5;
        }
        .bk-hero-price {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 0 0 28px;
        }
        .bk-hero-price-main {
            font-family: var(--font-heading);
            font-size: 34px;
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .bk-hero-price-old {
            font-size: 16px;
            color: var(--text-muted);
            text-decoration: line-through;
            font-weight: 400;
        }
        .bk-hero-cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .bk-meta-pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }
        .bk-meta-pill {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 500;
        }

        /* ===== SYNOPSIS ===== */
        .book-body {
            padding: 72px 48px 0;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .book-body-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
        .book-synopsis h2 {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.4vw, 28px);
            color: var(--green-dark);
            margin-bottom: 20px;
        }
        .book-synopsis p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .book-highlights {
            background: var(--accent);
            border-radius: 20px;
            padding: 36px;
            color: #fff;
        }
        .book-highlights h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            color: #fff;
            margin-bottom: 20px;
        }
        .book-highlights ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .book-highlights ul li {
            display: flex;
            gap: 12px;
            font-size: 14px;
            color: rgba(255,255,255,0.9);
            line-height: 1.5;
        }
        .book-highlights ul li svg {
            width: 18px; height: 18px;
            stroke: #fff; fill: none;
            stroke-width: 2.5; flex-shrink: 0;
            margin-top: 2px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%; padding: 3px;
            box-sizing: border-box;
        }
        .author-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-top: 32px;
            text-decoration: none;
            transition: box-shadow 0.2s;
        }
        .author-card:hover { box-shadow: 0 4px 16px rgba(58,61,50,0.08); }
        .author-card img {
            width: 52px; height: 52px;
            border-radius: 50%; object-fit: cover;
        }
        .author-card-text { flex: 1; }
        .author-card-name {
            font-family: var(--font-heading);
            font-size: 15px; font-weight: 700;
            color: var(--green-dark);
        }
        .author-card-role { font-size: 13px; color: var(--text-muted); }
        .author-card-link {
            font-size: 13px; font-weight: 600;
            color: var(--accent); text-decoration: none;
        }

        /* ===== QUOTE ===== */
        .book-quote {
            background: var(--green-dark);
            padding: 72px 48px;
            border-radius: 24px;
            margin: 64px 48px;
            text-align: center;
        }
        .book-quote blockquote {
            font-family: var(--font-heading);
            font-size: clamp(20px, 2.4vw, 28px);
            font-weight: 700;
            color: #fff;
            line-height: 1.45;
            letter-spacing: -0.02em;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== ZIE OOK ===== */
        .zie-ook {
            padding: 64px 48px 100px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .zie-ook-label {
            font-size: 11px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.1em;
            color: var(--accent); margin-bottom: 8px;
        }
        .zie-ook h2 { margin-bottom: 32px; }
        .zie-ook-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .zie-ook-card {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 20px;
            align-items: start;
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            text-decoration: none;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .zie-ook-card:hover {
            box-shadow: 0 8px 32px rgba(58,61,50,0.1);
            transform: translateY(-2px);
        }
        .zie-ook-card img {
            width: 100px; aspect-ratio: 2/3;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(58,61,50,0.14);
        }
        .zie-ook-type {
            font-size: 11px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            color: var(--text-muted); margin-bottom: 6px;
        }
        .zie-ook-card h3 {
            font-family: var(--font-heading);
            font-size: 16px; font-weight: 700;
            color: var(--green-dark); margin-bottom: 8px; line-height: 1.3;
        }
        .zie-ook-card p {
            font-size: 13px; color: var(--text-muted);
            line-height: 1.6; margin-bottom: 12px;
        }
        .zie-ook-price {
            font-family: var(--font-heading);
            font-size: 17px; font-weight: 700;
            color: var(--green-dark);
        }
        .zie-ook-price-old {
            font-size: 12px; color: var(--text-muted);
            text-decoration: line-through; margin-left: 6px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .bk-hero { padding: 110px 32px 0; }
            .bk-hero-card { grid-template-columns: 1fr; }
            .bk-hero-left { min-height: 360px; }
            .book-body { padding: 56px 32px 0; }
            .book-body-grid { grid-template-columns: 1fr; gap: 40px; }
            .book-quote { margin: 48px 32px; }
            .zie-ook { padding: 48px 32px 80px; }
        }
        @media (max-width: 768px) {
            .bk-hero { padding: 90px 20px 0; }
            .bk-hero-right { padding: 40px 28px; }
            .book-body { padding: 48px 20px 0; }
            .book-quote { padding: 48px 24px; margin: 40px 20px; }
            .zie-ook { padding: 40px 20px 64px; }
            .zie-ook-grid { grid-template-columns: 1fr; }
            .zie-ook-card { grid-template-columns: 80px 1fr; gap: 16px; padding: 18px; }
            .zie-ook-card img { width: 80px; }
        }
    
/* === per-page from coaching.html === */

        /* ===== PAGE HERO ===== */
        .coaching-hero {
            background: linear-gradient(180deg, #eef0ed 0%, #dfe7e0 60%, var(--bg) 100%);
            padding: 180px 48px 160px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .coaching-hero::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: -5%;
            right: -5%;
            height: 80px;
            background: var(--bg);
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }
        .coaching-hero-inner {
            max-width: 720px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .coaching-hero h1 {
            margin-bottom: 8px;
        }
        .coaching-hero .subtitle {
            font-family: var(--font-heading);
            font-size: clamp(18px, 2vw, 24px);
            color: var(--accent);
            font-style: italic;
            margin-bottom: 28px;
        }
        .coaching-hero .hero-intro {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.8;
            max-width: 680px;
            margin: 0 auto 32px;
        }
        .coaching-hero .hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== TWO-COL SECTION ===== */
        .two-col {
            padding: 0 48px 100px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .two-col-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }
        .two-col-grid.reversed .two-col-image { order: -1; }
        .two-col-image {
            padding-top: 0;
        }
        .two-col-image img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 50px rgba(58, 61, 50, 0.1);
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        .two-col-content h2 {
            margin-bottom: 20px;
        }
        .two-col-content p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        /* ===== DETAIL CARDS ===== */
        .details-row {
            display: flex;
            gap: 16px;
            margin-top: 28px;
            flex-wrap: wrap;
        }
        .detail-item {
            border-radius: var(--radius-lg);
            padding: 18px 24px;
            min-width: 140px;
        }
        .detail-item.green {
            background: var(--green);
        }
        .detail-item.accent {
            background: var(--accent);
        }
        .detail-item .detail-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.65);
            margin-bottom: 4px;
        }
        .detail-item .detail-value {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }
        .detail-item .detail-sub {
            font-size: 12px;
            font-weight: 400;
            color: rgba(255,255,255,0.55);
        }

        /* ===== CTA BUTTON ===== */
        .section-cta {
            margin-top: 32px;
        }

        /* ===== CONTACT LINE ===== */
        .contact-line {
            margin-top: 20px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .contact-line a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .contact-line a:hover {
            color: var(--green-dark);
        }

        /* ===== DIVIDER ===== */
        .section-divider {
            max-width: var(--max-width);
            margin: 0 auto 100px;
            padding: 0 48px;
        }
        .section-divider hr {
            border: none;
            border-top: 1px solid var(--border);
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: var(--green);
            padding: 60px 48px;
            text-align: center;
            margin-top: 20px;
        }
        .cta-banner-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .cta-banner h3 {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.5vw, 28px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-banner p {
            font-size: 15px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 24px;
        }

        /* ===== SKILL CARDS ===== */
        .skill-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 20px 0 24px;
        }
        .skill-card {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: #eef0ed;
            border-radius: 16px;
            padding: 20px 22px;
        }
        .skill-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .skill-icon.accent { background: rgba(193, 119, 79, 0.12); }
        .skill-icon.green { background: rgba(76, 100, 67, 0.12); }
        .skill-icon svg {
            width: 20px;
            height: 20px;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }
        .skill-icon.accent svg { stroke: var(--accent); }
        .skill-icon.green svg { stroke: var(--green); }
        .skill-card-text strong {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 700;
            color: var(--green-dark);
            display: block;
            margin-bottom: 4px;
        }
        .skill-card-text span {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.6;
        }

        /* ===== ICON LIST ===== */
        .icon-list {
            list-style: none;
            padding: 0;
            margin: 12px 0 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .icon-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.6;
        }
        .icon-list li::before {
            content: '';
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            margin-top: 1px;
            background: var(--accent);
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
            mask-size: contain;
            -webkit-mask-size: contain;
        }

        /* ===== TRAINING TIMELINE ===== */
        .training-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 16px 0 24px;
            position: relative;
            padding-left: 28px;
        }
        .training-timeline::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 12px;
            bottom: 12px;
            width: 2px;
            background: var(--border);
        }
        .timeline-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 8px 0;
            position: relative;
        }
        .timeline-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: absolute;
            left: -28px;
            z-index: 1;
        }
        .timeline-dot.final {
            background: var(--green);
            width: 24px;
            height: 24px;
        }
        .timeline-dot.final svg {
            width: 14px;
            height: 14px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .timeline-label {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.5;
        }
        .timeline-label strong {
            color: var(--green-dark);
        }

        /* ===== QUOTE BLOCK ===== */
        .traject-quote {
            border-left: 3px solid var(--accent);
            padding: 14px 20px;
            margin: 20px 0 24px;
            background: rgba(193, 119, 79, 0.04);
            border-radius: 0 12px 12px 0;
            font-size: 14px;
            font-style: italic;
            color: var(--text-body);
            line-height: 1.7;
        }

        /* ===== TRAJECT HERO BLOCK ===== */
        .traject-hero {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            border-radius: 24px;
            overflow: hidden;
            margin: 0 48px 0;
            min-height: 420px;
        }
        .traject-hero--accent { background: var(--accent); }
        .traject-hero--green  { background: var(--green); }
        .traject-hero--reverse { direction: rtl; }
        .traject-hero--reverse > * { direction: ltr; }
        .traject-hero--centered {
            grid-template-columns: 1fr;
        }
        .traject-hero--centered .traject-hero-text {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
            align-items: center;
        }
        .traject-hero--centered .th-bullets { text-align: left; }
        /* Right panel (details side) */
        .traject-hero-side {
            padding: 64px 52px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 24px;
            background: rgba(0,0,0,0.18);
        }
        .traject-hero-side .th-details {
            flex-direction: column;
            gap: 12px;
            margin-bottom: 0;
        }
        .traject-hero-side .th-detail {
            background: rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 14px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .traject-hero-side .th-detail-label { margin-bottom: 0; }
        .traject-hero-side .th-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin: 0;
        }
        .traject-hero-side .th-side-note {
            font-size: 13px;
            color: rgba(255,255,255,0.65);
            line-height: 1.6;
        }
        .traject-hero--light {
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: 0 4px 24px rgba(58,61,50,0.07);
        }
        .traject-hero--light .traject-hero-text .th-label { color: var(--accent) !important; }
        .traject-hero--light .traject-hero-text h2 { color: var(--green-dark) !important; }
        .traject-hero--light .th-detail-value { color: var(--green-dark) !important; }
        .traject-hero--light .traject-hero-text .th-subtitle { color: var(--text-muted) !important; }
        .traject-hero--light .th-bullets li { color: var(--text-body) !important; }
        .traject-hero--light .th-bullets li svg {
            background: rgba(193,119,79,0.12) !important;
            stroke: var(--accent) !important;
        }
        .traject-hero--light .th-detail-label { color: var(--text-muted) !important; }
        .traject-hero--light .th-detail {
            background: var(--cream);
            border: 1px solid var(--border);
        }

        .traject-intro-text {
            padding: 40px 48px 0;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .traject-intro-text p {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 12px;
            max-width: 760px;
        }
        .traject-intro-text p:last-child { margin-bottom: 0; }
        
        /* ===== INFO BLOCKS ===== */
        .info-blocks {
            padding: 32px 48px 0;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .iblocks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }
        .iblock {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 0;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            gap: 10px;
            transition: all 0.25s;
        }
        .iblock:hover {
            box-shadow: 0 12px 40px rgba(58, 61, 50, 0.08);
            transform: translateY(-3px);
        }
        .iblock--accent { background: #fff; border-color: var(--border); }
        .iblock--green  { background: #fff; border-color: var(--border); }
        .iblock--span2  { grid-column: span 2; }
        .iblock--span3  { grid-column: span 3; }
        /* Colored header band */
        .iblock-header {
            background: var(--green);
            padding: 20px 24px 18px;
        }
        .iblock-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.7);
            margin-bottom: 4px;
        }
        .iblock--green .iblock-label { color: rgba(255,255,255,0.7); }
        .iblock h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin: 0;
        }
        /* Body of the card (below the header) */
        .iblock > *:not(.iblock-header) {
            padding-left: 24px;
            padding-right: 24px;
        }
        .iblock > *:not(.iblock-header):first-of-type { padding-top: 20px; }
        .iblock > *:not(.iblock-header):last-child { padding-bottom: 24px; }
        .iblock p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin: 0;
        }
        .iblock ul {
            list-style: none;
            padding: 0;
            margin: 4px 0 0;
            display: flex;
            flex-direction: column;
            gap: 9px;
            flex: 1;
        }
        .iblock ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: var(--text-body);
            line-height: 1.6;
        }
        .iblock ul li svg {
            width: 16px; height: 16px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 2.5;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .iblock ul li strong {
            display: inline-block;
            min-width: 110px;
            flex-shrink: 0;
            color: var(--text-heading);
        }
        .iblock--green ul li svg { stroke: var(--green); }
        .iblock ul li::before { display: none; }
        .iblock .iblock-quote {
            font-family: var(--font-heading);
            font-size: 13px;
            font-style: italic;
            color: var(--text-muted);
            border-left: 3px solid var(--accent);
            padding-left: 12px;
            margin-top: 4px;
        }
        .iblock--green .iblock-quote { border-left-color: var(--green); }
        .iblock .timeline-list {
            list-style: none;
            padding: 0;
            margin: 6px 0 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .iblock .timeline-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
        }
        .iblock .timeline-list li::before { content: none; display: none; }
        .iblock .tl-num {
            width: 22px; height: 22px;
            border-radius: 50%;
            background: rgba(58,61,50,0.1);
            color: var(--green-dark);
            font-size: 11px; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .iblock .iblock-cta {
            margin-top: 12px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        @media (max-width: 1024px) {
            .info-blocks { padding: 28px 32px 0; }
            .iblocks-grid { grid-template-columns: repeat(2, 1fr); }
            .iblock--span2, .iblock--span3 { grid-column: span 2; }
        }
        @media (max-width: 768px) {
            .info-blocks { padding: 20px 20px 0; }
            .iblocks-grid { grid-template-columns: 1fr; }
            .iblock--span2, .iblock--span3 { grid-column: span 1; }
        }

        .traject-hero-text {
            padding: 64px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .traject-hero-text .btn {
            align-self: flex-start;
            width: fit-content;
        }
        .traject-hero--centered .traject-hero-text .btn {
            align-self: center;
        }
        .traject-hero-text .th-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.6);
            margin-bottom: 14px;
        }
        .traject-hero-text h2 {
            color: #fff;
            margin-bottom: 8px;
        }
        .traject-hero-text .th-subtitle {
            font-size: 15px;
            font-style: italic;
            color: rgba(255,255,255,0.75);
            margin-bottom: 28px;
            line-height: 1.5;
        }
        .th-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
        }
        .th-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: rgba(255,255,255,0.9);
            line-height: 1.4;
        }
        .th-bullets li svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5;
            padding: 3px;
            margin-top: 1px;
        }
        .th-details {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .th-detail {
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 10px 16px;
        }
        .th-detail-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: rgba(255,255,255,0.55);
            margin-bottom: 2px;
        }
        .th-detail-value {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }
        .traject-hero-image {
            position: relative;
            overflow: hidden;
            min-height: 0;
        }
        .traject-hero-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }
        #van-vast-naar-stroming .traject-hero-image img {
            object-position: center 40%;
        }

        /* Detail content below hero */
        .traject-body {
            padding: 64px 48px 80px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }

        @media (max-width: 1024px) {
            .traject-hero { margin: 0 32px; }
        }
        @media (max-width: 768px) {
            .traject-hero { grid-template-columns: 1fr; margin: 0 20px; }
            .traject-hero-image { height: 260px; }
            .traject-hero-text { padding: 40px 28px; }
            .traject-hero-side { padding: 36px 28px; }
            .traject-body { padding: 40px 20px 60px; }
        }

        /* ===== DARK SECTION ===== */
        .two-col--dark {
            background: var(--green);
            border-radius: 24px;
            margin: 0 48px 40px;
            padding-top: 80px;
            padding-bottom: 80px;
        }
        .two-col--dark h2,
        .two-col--dark .skill-card-text strong,
        .two-col--dark p strong { color: #fff; }
        .two-col--dark p,
        .two-col--dark .icon-list li,
        .two-col--dark .traject-quote { color: rgba(255,255,255,0.8); }
        .two-col--dark .traject-quote {
            background: rgba(255,255,255,0.08);
            border-left-color: rgba(255,255,255,0.4);
        }
        .two-col--dark .skill-card {
            background: rgba(255,255,255,0.1);
        }
        .two-col--dark .skill-card-text span { color: rgba(255,255,255,0.7); }
        .two-col--dark .skill-icon.accent { background: rgba(255,255,255,0.12); }
        .two-col--dark .skill-icon.green { background: rgba(255,255,255,0.12); }
        .two-col--dark .skill-icon.accent svg,
        .two-col--dark .skill-icon.green svg { stroke: rgba(255,255,255,0.85); }
        .two-col--dark .icon-list li::before { background: rgba(255,255,255,0.7); }
        .two-col--dark .detail-item.green { background: rgba(255,255,255,0.15); }
        .two-col--dark .detail-item.accent { background: rgba(193,119,79,0.5); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .coaching-hero { padding: 120px 24px 80px; }
            .two-col { padding: 0 24px 60px; }
            .two-col-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .two-col-grid.reversed .two-col-image { order: -1; }
            .two-col-image img { aspect-ratio: 3/2; }
            .section-divider { padding: 0 24px; margin-bottom: 60px; }
            .details-row { gap: 10px; }
            .detail-item { padding: 14px 18px; min-width: 120px; }
            .cta-banner { padding: 48px 24px; }
        }
    
        .split-hero-content { background: #f7f0eb; }

        /* ===== GEKLEURDE LABEL + TITEL, WIT VLAK ===== */
        .iblock--color-accent,
        .iblock--color-green,
        .iblock--color-dark {
            background: #fff;
            border-color: var(--border);
        }
        .iblock--color-accent .iblock-header,
        .iblock--color-green .iblock-header,
        .iblock--color-dark .iblock-header {
            background: transparent;
        }
        .iblock--color-accent .iblock-label { color: var(--accent); }
        .iblock--color-accent h3 { color: var(--accent); }

        .iblock--color-green .iblock-label { color: var(--green); }
        .iblock--color-green h3 { color: var(--green); }

        .iblock--color-dark .iblock-label { color: var(--green-dark); }
        .iblock--color-dark h3 { color: var(--green-dark); }

        /* Body tekst uitlijning */
        .iblock--color-accent p, .iblock--color-accent ul li,
        .iblock--color-green p, .iblock--color-green ul li,
        .iblock--color-dark p, .iblock--color-dark ul li {
            color: var(--text-body);
        }
        .iblock--color-accent ul li svg { stroke: var(--accent); }
        .iblock--color-green ul li svg { stroke: var(--green); }
        .iblock--color-dark ul li svg { stroke: var(--green-dark); }
        .iblock--color-accent .iblock-quote { border-left-color: var(--accent); }
        .iblock--color-green .iblock-quote { border-left-color: var(--green); }
        .iblock--color-dark .iblock-quote { border-left-color: var(--green-dark); }

        /* ===== GROEPSTRAINING REDESIGN ===== */
        .gt-blocks {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .gt-card-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .gt-check {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .gt-check li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.6;
        }
        .gt-check li svg {
            width: 16px; height: 16px;
            stroke: var(--accent); fill: none;
            stroke-width: 2.5; flex-shrink: 0;
            margin-top: 2px;
        }
        .gt-check li::before { display: none; }

        /* Herken + Ervaringsgericht 2-col warm callout */
        .gt-herken {
            background: rgba(193,119,79,0.06);
            border: 1px solid rgba(193,119,79,0.18);
            border-radius: 20px;
            padding: 40px 44px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .gt-herken h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--green-dark);
            margin: 8px 0 18px;
            line-height: 1.3;
        }
        .gt-herken p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.75;
            margin-bottom: 12px;
        }
        .gt-herken p:last-child { margin-bottom: 0; }
        .gt-divider-line {
            width: 1px;
            background: rgba(193,119,79,0.2);
            align-self: stretch;
        }

        /* Wat je leert + Werkwijze */
        .gt-two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .gt-clean-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px;
        }
        .gt-clean-card h3 {
            font-family: var(--font-heading);
            font-size: 19px;
            color: var(--green-dark);
            margin: 10px 0 18px;
            line-height: 1.3;
        }
        .gt-icon-box {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(76,100,67,0.1);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .gt-icon-box svg {
            width: 22px; height: 22px;
            stroke: var(--green); fill: none;
            stroke-width: 1.8;
            stroke-linecap: round; stroke-linejoin: round;
        }
        .gt-icon-box.accent-icon { background: rgba(193,119,79,0.1); }
        .gt-icon-box.accent-icon svg { stroke: var(--accent); }

        /* Programma steps */
        .gt-program {
            background: var(--green);
            border-radius: 20px;
            padding: 40px 44px;
        }
        .gt-program .gt-card-label { color: rgba(255,255,255,0.55); }
        .gt-program h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            color: #fff;
            margin: 8px 0 28px;
        }
        .gt-steps {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }
        .gt-step {
            background: rgba(255,255,255,0.09);
            border-radius: 14px;
            padding: 18px 10px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .gt-step-num {
            width: 30px; height: 30px;
            border-radius: 50%;
            background: rgba(255,255,255,0.18);
            color: #fff;
            font-size: 12px; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .gt-step-num.final {
            background: var(--accent);
        }
        .gt-step-num.final svg {
            width: 14px; height: 14px;
            stroke: #fff; fill: none;
            stroke-width: 2.5;
            stroke-linecap: round; stroke-linejoin: round;
        }
        .gt-step-text {
            font-size: 12px;
            color: rgba(255,255,255,0.72);
            line-height: 1.4;
        }

        /* Voor wie + CTA */
        .gt-voor-wie {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px 44px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 48px;
            align-items: center;
        }
        .gt-voor-wie h3 {
            font-family: var(--font-heading);
            font-size: 19px;
            color: var(--green-dark);
            margin: 8px 0 12px;
        }
        .gt-voor-wie p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .gt-quote {
            font-family: var(--font-heading);
            font-size: 15px;
            font-style: italic;
            color: var(--green-dark);
            border-left: 3px solid var(--accent);
            padding-left: 16px;
            line-height: 1.6;
            margin: 0;
        }
        .gt-cta { flex-shrink: 0; }

        @media (max-width: 1024px) {
            .gt-steps { grid-template-columns: repeat(4, 1fr); }
        }
        @media (max-width: 768px) {
            .gt-herken { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
            .gt-two-col { grid-template-columns: 1fr; }
            .gt-clean-card { padding: 28px 24px; }
            .gt-program { padding: 32px 24px; }
            .gt-steps { grid-template-columns: repeat(4, 1fr); }
            .gt-voor-wie { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
        }
    
/* === per-page from consult.html === */

        /* ===== CONSULT FORM ===== */
        .consult-section {
            padding: 72px 48px var(--section-padding);
        }
        .consult-container {
            max-width: 600px;
            margin: 0 auto;
        }
        .consult-section-title {
            text-align: center;
            margin-bottom: 8px;
        }
        .consult-section-sub {
            font-size: 15px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 40px;
        }
        .consult-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 6px;
        }
        .form-group label span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
        }
        .form-group textarea,
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--cream);
            font-size: 14px;
            font-family: var(--font-body);
            color: var(--text-body);
            outline: none;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .form-group textarea:focus,
        .form-group input:focus,
        .form-group select:focus { border-color: var(--green); }
        .form-group textarea { min-height: 90px; }
        .form-sub { margin-top: -12px; }
        .form-sub label { font-size: 13px; font-weight: 400; color: var(--text-muted); }
        .consult-submit {
            display: block;
            width: 100%;
            padding: 14px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 4px;
        }
        .consult-submit:hover { background: #d4885e; }

        @media (max-width: 768px) {
            .consult-section { padding: 48px 20px 80px; }
        }
    
/* === per-page from contact.html === */

        /* ===== CONTACT FORM ===== */
        .contact-form-section {
            padding: 72px 48px var(--section-padding);
        }
        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form-title {
            text-align: center;
            margin-bottom: 8px;
        }
        .contact-form-sub {
            font-size: 15px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 40px;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 6px;
        }
        .form-group label span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
        }
        .form-group textarea,
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--cream);
            font-size: 14px;
            font-family: var(--font-body);
            color: var(--text-body);
            outline: none;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .form-group textarea:focus,
        .form-group input:focus,
        .form-group select:focus { border-color: var(--green); }
        .form-group textarea { min-height: 120px; }
        .contact-submit {
            display: block;
            width: 100%;
            padding: 14px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 4px;
        }
        .contact-submit:hover { background: #d4885e; }

        /* ===== MAP ===== */
        .map-section {
            padding: 0 48px 100px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .map-wrapper {
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
        }
        .map-info {
            padding: 32px 36px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .map-info-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(193, 119, 79, 0.1);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .map-info-icon svg {
            width: 22px; height: 22px;
            stroke: var(--accent); fill: none;
            stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
        }
        .map-info h3 {
            font-family: var(--font-heading);
            font-size: 16px; font-weight: 700;
            color: var(--green-dark); margin-bottom: 2px;
        }
        .map-info p {
            font-size: 13px; color: var(--text-muted); line-height: 1.5;
        }
        .map-embed {
            width: 100%;
            height: 380px;
            border: none;
            display: block;
        }

        /* ===== HERO TALLER ===== */
        .hero-wrap { padding-bottom: 200px; }

        /* ===== CONTACT SPLIT ===== */
        .contact-split {
            padding: 0 48px 100px;
            max-width: calc(var(--max-width) + 96px);
            margin: -160px auto 0;
            position: relative;
            z-index: 2;
        }
        .contact-split-grid {
            display: grid;
            grid-template-columns: 0.55fr 1fr;
            gap: 32px;
            align-items: start;
        }
        .contact-split-photo {
            position: relative;
        }
        .contact-split-photo img {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
            aspect-ratio: 3/4;
            display: block;
            box-shadow: 0 28px 64px rgba(58,61,50,0.16);
        }
        .contact-split-form {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 52px rgba(58,61,50,0.08);
        }
        .contact-split-form h2 {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.5vw, 28px);
            color: var(--green-dark);
            margin-bottom: 8px;
        }
        .contact-split-form .form-sub {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .contact-location {
            padding: 0 48px 100px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .contact-location-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .contact-location-header h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            color: var(--green-dark);
            margin-bottom: 10px;
        }
        .contact-location-header p {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 520px;
            margin: 0 auto;
        }
        .contact-location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .contact-location-map,
        .contact-location-photo {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 52px rgba(58,61,50,0.1);
            aspect-ratio: 4/3;
            background: #f2f2ef;
        }
        .contact-location-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }
        .contact-location-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 1024px) {
            .hero-wrap { padding-bottom: 160px; }
            .contact-split { margin-top: -120px; padding: 0 32px 80px; }
            .contact-location { padding: 0 32px 80px; }
        }
        @media (max-width: 768px) {
            .hero-wrap { padding-bottom: 120px; }
            .contact-split { margin-top: -80px; padding: 0 20px 60px; }
            .contact-split-grid { grid-template-columns: 1fr; gap: 24px; }
            .contact-split-photo { position: static; }
            .contact-split-photo img { aspect-ratio: 4/3; }
            .contact-split-form { padding: 28px; }
            .contact-location { padding: 0 20px 60px; }
            .contact-location-grid { grid-template-columns: 1fr; gap: 20px; }
        }
    
/* === per-page from index.html === */

        /* ===== HERO ===== */
        .hero {
            position: relative;
            overflow: visible;
            margin-bottom: 80px;
            padding: 120px 48px 0;
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 32px;
            align-items: stretch;
        }
        .hero-text-wrap {
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 64px 112px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .hero-text-wrap .seed-watermark {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            opacity: 0.02;
            color: var(--green-dark);
        }
        .hero-text {
            max-width: 100%;
        }
        .hero .label {
            color: var(--text-muted);
        }
        .hero-text h1 {
            color: var(--green-dark);
            margin-bottom: 20px;
        }
        .hero-desc {
            font-size: 17px;
            color: var(--text-body);
            line-height: 1.7;
            max-width: 100%;
            margin-bottom: 36px;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .hero-image {
            position: relative;
        }
        .hero-image img {
            width: 100%;
            height: 100%;
            border-radius: 24px;
            object-fit: cover;
            object-position: center center;
        }

        /* ===== HERO MENU BAR ===== */
        .hero-menu {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            max-width: var(--max-width);
            margin: 0 auto;
            border-top: 1px solid var(--border);
        }
        .hero-menu-item {
            padding: 22px 16px;
            border-right: 1px solid var(--border);
            transition: background 0.2s;
        }
        .hero-menu-item:last-child { border-right: none; }
        .hero-menu-item:hover { background: var(--bg-alt); }
        .hero-menu-item h4 {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 3px;
            letter-spacing: -0.01em;
        }
        .hero-menu-item p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ===== ZELFSCAN BANNER ===== */
        .zelfscan-banner {
            max-width: var(--max-width);
            margin: 140px auto;
            padding: 0 48px;
        }
        .zelfscan-banner-bottom {
            max-width: 900px;
            margin: 80px auto;
            padding: 0 48px;
        }
        .zelfscan-banner-bottom .zelfscan-inner {
            background: var(--accent);
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            padding: 32px 40px;
        }
        .zelfscan-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 48px 32px;
            background: var(--accent);
            border-radius: 24px;
            gap: 20px;
        }
        .zelfscan-inner h3 {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.5vw, 28px);
            font-weight: 700;
            color: #fff;
            margin-bottom: 3px;
            letter-spacing: -0.02em;
        }
        .zelfscan-inner p {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            line-height: 1.5;
            max-width: 460px;
        }

        /* ===== DUO PHOTOS ===== */
        .duo-photos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 0 120px;
            margin: -80px auto 80px;
            max-width: var(--max-width);
        }
        .duo-photos img {
            width: 100%;
            border-radius: 24px;
            aspect-ratio: 4/5;
            object-fit: cover;
        }

        /* ===== BALANS QUOTE ===== */
        .balans-quote {
            max-width: var(--max-width);
            margin: 0 auto 60px;
            padding: 0 48px;
            text-align: center;
        }
        .balans-quote blockquote {
            margin: 0;
        }
        .balans-quote blockquote p {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.8vw, 32px);
            font-weight: 500;
            color: var(--green-dark);
            line-height: 1.5;
            letter-spacing: -0.015em;
            font-style: italic;
        }
        .balans-quote .balans-quote-sub {
            margin-top: 12px;
            font-size: clamp(18px, 2.2vw, 24px);
            color: var(--accent);
            font-style: italic;
        }
        .balans-quote cite {
            display: block;
            margin-top: 20px;
            font-family: var(--font-body);
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            color: var(--text-muted);
        }

        /* ===== VISIE BANNER ===== */
        .visie-banner {
            background: var(--green);
            padding: 100px 48px;
            position: relative;
            overflow: hidden;
            margin: 40px 48px;
            border-radius: 24px;
        }
        .visie-seed-bg {
            position: absolute;
            bottom: -180px;
            right: -120px;
            width: 500px;
            height: 500px;
            color: rgba(255,255,255,0.06);
        }
        .visie-seed-bg circle {
            stroke-width: 1;
        }
        .visie-banner-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .visie-quote-mark {
            font-family: Georgia, serif;
            font-size: 80px;
            line-height: 1;
            color: rgba(255,255,255,0.3);
            display: block;
            margin-bottom: 16px;
        }
        .visie-quote-mark-close {
            margin-top: 16px;
            margin-bottom: 0;
        }
        .visie-banner blockquote {
            font-family: var(--font-heading);
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 400;
            color: #fff;
            line-height: 1.6;
            font-style: italic;
        }
        .visie-banner--split .visie-banner-inner {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 64px;
            align-items: start;
            max-width: var(--max-width);
            text-align: left;
        }
        .visie-banner--split .visie-photo {
            border-radius: 18px;
            overflow: hidden;
            aspect-ratio: 3/4;
            max-width: 260px;
            justify-self: center;
        }
        .visie-banner--split .visie-photo img {
            width: 100%; height: 100%; object-fit: cover; display: block;
        }
        .visie-banner--split .visie-quote-mark,
        .visie-banner--split .visie-quote-mark-close { text-align: left; }
        .visie-banner--split .visie-cite {
            display: block;
            margin-top: 20px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-style: normal;
        }
        @media (max-width: 768px) {
            .visie-banner--split .visie-banner-inner { grid-template-columns: 1fr; }
            .visie-banner--split .visie-photo { aspect-ratio: 16/9; max-height: 300px; }
        }

        /* ===== ABOUT + QUOTE ===== */
        .about-section {
            padding: var(--section-padding) 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .about-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
        }
        .about-content p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.75;
        }
        .quote-card {
            background: var(--green);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
        }
        .quote-pill {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255,255,255,0.12);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
        }
        .quote-card blockquote {
            font-size: 15px;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .quote-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .quote-avatar {
            width: 36px; height: 36px;
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: #fff;
        }
        .quote-author-name { font-size: 13px; font-weight: 600; color: #fff; }
        .quote-author-role { font-size: 12px; color: rgba(255,255,255,0.5); }

        /* ===== STATS CARDS (overlapping hero) ===== */
        .stats-cards {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            gap: 12px;
        }
        .stat-card {
            background: rgba(122, 139, 130, 0.85);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            min-width: 140px;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
            cursor: default;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(42, 45, 36, 0.2);
        }
        .stat-number {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.75);
            line-height: 1.4;
        }

        /* ===== JOURNEY ===== */
        .journey-section {
            padding: var(--section-padding) 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .journey-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 56px;
            align-items: center;
        }
        .journey-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .journey-image img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        .journey-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
        }
        .journey-content > p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.75;
            margin-bottom: 28px;
        }
        .journey-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }
        .journey-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .journey-feature-icon {
            width: 40px; height: 40px;
            border-radius: var(--radius-sm);
            background: rgba(193, 119, 79, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .journey-feature-icon svg {
            width: 20px; height: 20px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .journey-feature h4 {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 2px;
        }
        .journey-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

        /* ===== FOUR PILLARS (Momentus card grid) ===== */

        /* ===== BOOK ===== */
        .book-section {
            padding: var(--section-padding) 48px;
            background: var(--cream);
        }
        .book-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 56px;
            align-items: center;
        }
        .book-image { text-align: center; }
        .book-image img {
            max-width: 340px;
            border-radius: var(--radius-lg);
            box-shadow: 0 16px 40px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        .book-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
        }
        .book-content p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.75;
            margin-bottom: 12px;
        }
        .book-content p:last-of-type { margin-bottom: 24px; }

        /* ===== IN DE MEDIA (foto + artikel-cards) ===== */
        .media-photo-section {
            padding: var(--section-padding) 48px;
        }
        .media-photo-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .media-photo-grid {
            display: grid;
            grid-template-columns: 44% 1fr;
            gap: 64px;
            margin-top: 48px;
            align-items: start;
        }
        .media-photo-col img {
            width: 100%;
            height: 580px;
            object-fit: cover;
            object-position: center 5%;
            border-radius: var(--radius-lg);
        }
        .media-articles-col {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .media-article-card {
            display: block;
            padding: 22px 26px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            background: #fff;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .media-article-card:hover {
            border-color: var(--accent);
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
            transform: translateY(-2px);
        }
        .mac-publication {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 7px;
        }
        .media-article-card h3 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
            line-height: 1.35;
        }
        .media-article-card p {
            font-size: 13px;
            color: var(--sage);
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .media-article-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
        }

        /* ===== ERVARINGEN (testimonials) ===== */
        .testimonials-section {
            padding: var(--section-padding) 48px;
            background: var(--bg-alt);
            margin: 0 48px;
            border-radius: 24px;
        }
        .testimonials-container {
            max-width: 780px;
            margin: 0 auto;
        }
        .reviews-carousel {
            position: relative;
            margin-top: 40px;
        }
        .review-card {
            display: none;
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 36px 40px;
        }
        .review-card.active { display: block; }
        .review-card blockquote {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 16px;
        }
        .review-stars {
            color: var(--accent);
            font-size: 14px;
            margin-bottom: 14px;
        }
        .review-author {
            font-size: 13px;
            color: var(--accent);
            font-weight: 600;
        }
        .reviews-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 24px;
        }
        .reviews-dots {
            display: flex;
            gap: 6px;
        }
        .review-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            border: none;
            background: var(--border-strong);
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }
        .review-dot.active { background: var(--accent); }
        .review-nav-btn {
            width: 32px; height: 32px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        .review-nav-btn:hover {
            border-color: var(--accent);
            background: var(--accent);
            color: #fff;
        }
        .review-nav-btn svg {
            width: 14px; height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ===== PUBLICATIES ===== */
        .publicaties-section {
            padding: var(--section-padding) 48px;
            background: var(--bg-alt);
        }
        .publicaties-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .publicaties-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .publicatie-card {
            padding: 24px 28px;
            background: var(--cream);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: all 0.2s;
        }
        .publicatie-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.04);
            transform: translateY(-2px);
        }
        .publicatie-card h4 {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }
        .publicatie-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .publicatie-source {
            font-size: 12px;
            color: var(--accent);
            margin-top: 8px;
            font-weight: 600;
        }

        /* ===== AGENDA ===== */
        .agenda-section {
            padding: var(--section-padding) 48px;
        }
        .agenda-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .agenda-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .agenda-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: var(--cream);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            transition: all 0.2s;
            text-decoration: none;
        }
        .agenda-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.03); border-color: var(--border-strong); }
        .agenda-item-cta {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            margin-left: 12px;
            white-space: nowrap;
        }
        .agenda-item-date {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            min-width: 110px;
        }
        .agenda-item-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--green-dark);
            flex: 1;
            margin: 0 20px;
        }
        .agenda-item-location {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== BEHANDELINGEN ===== */
        .behandelingen-section {
            padding: var(--section-padding) 48px;
        }
        .behandelingen-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .behandelingen-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 0;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        .behandeling-card {
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
        }
        .behandeling-icon {
            width: 40px;
            height: 40px;
            color: var(--accent);
            margin-bottom: 16px;
        }
        .behandeling-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .behandeling-card h3 {
            font-family: var(--font-heading);
            font-size: clamp(18px, 1.8vw, 22px);
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 4px;
        }
        .behandeling-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 14px;
        }
        .behandeling-desc {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .behandeling-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 24px;
        }
        .behandeling-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-body);
        }
        .behandeling-features li svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            stroke: var(--accent);
            fill: none;
            stroke-width: 2.5;
        }
        .behandeling-price-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 20px;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .behandeling-price {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--green-dark);
        }
        .behandeling-duration {
            font-size: 13px;
            color: var(--text-muted);
        }
        .behandeling-card--dark {
            background: var(--green);
            border-color: var(--green);
        }
        .behandeling-card--dark h3,
        .behandeling-card--dark .behandeling-price {
            color: #fff;
        }
        .behandeling-card--dark .behandeling-label,
        .behandeling-card--dark .behandeling-subtitle,
        .behandeling-card--dark .behandeling-desc,
        .behandeling-card--dark .behandeling-duration,
        .behandeling-card--dark .behandeling-features li {
            color: rgba(255,255,255,0.75);
        }
        .behandeling-card--dark .behandeling-features li svg {
            stroke: rgba(255,255,255,0.9);
        }
        .behandeling-card--dark .behandeling-price-row {
            border-top-color: rgba(255,255,255,0.2);
        }
        .behandeling-card--dark .pricing-btn-outline {
            color: #fff;
            border-color: rgba(255,255,255,0.35);
        }
        .behandeling-card--dark .pricing-btn-outline:hover {
            background: rgba(255,255,255,0.1);
        }
        .behandeling-card--dark .pricing-btn-outline .btn-arrow {
            background: rgba(255,255,255,0.15);
        }
        @media (max-width: 768px) {
            .behandelingen-section { padding: 60px 20px; }
            .behandelingen-grid { grid-template-columns: 1fr; }
        }

        /* ===== PRICING (Momentus 3-tier) ===== */
        .pricing-section {
            padding: var(--section-padding) 48px;
            background: var(--bg-alt);
            margin: 0 48px;
            border-radius: 24px;
        }
        .pricing-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .pricing-header h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 10px;
        }
        .pricing-header p {
            font-size: 15px;
            color: var(--text-muted);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
            padding-top: 20px;
        }
        .pricing-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 0;
            border: 1px solid var(--border);
            transition: all 0.25s;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: visible;
            height: 100%;
        }
        .pricing-card:hover {
            box-shadow: 0 12px 40px rgba(58, 61, 50, 0.08);
            transform: translateY(-3px);
        }
        .pricing-card.featured {
            background: #fff;
            border-color: var(--border);
            margin-top: 0;
            z-index: 2;
            box-shadow: 0 16px 48px rgba(58, 61, 50, 0.10);
        }
        .pricing-card .pricing-top {
            background: var(--green);
            padding: 34px 28px 26px;
            position: relative;
            margin: 0;
            height: 190px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            overflow: hidden;
        }
        .pricing-card--accent .pricing-top { background: var(--accent); }
        .pricing-card--green-dark .pricing-top { background: var(--green-dark); }
        .pricing-card .pricing-top::after {
            content: '';
            position: absolute;
            left: 28px; right: 28px; bottom: 0;
            height: 1px;
            background: rgba(255,255,255,0.18);
        }
        .pricing-card .pricing-top .pricing-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 6px; font-family: var(--font-body); }
        .pricing-card .pricing-top h3 { color: #fff; margin-bottom: 8px; }
        .pricing-card .pricing-top .pricing-desc { color: rgba(255,255,255,0.85); margin-bottom: 0; }
        .pricing-card .pricing-top .pricing-subtitle { color: rgba(255,255,255,0.75) !important; }
        .pricing-card .pricing-body {
            padding: 28px 28px 32px;
            display: flex;
            flex-direction: column;
            flex: 1;
            justify-content: flex-start;
        }
        .pricing-card .pricing-price {
            font-family: var(--font-heading);
            font-size: 30px;
            font-weight: 800;
            color: var(--green-dark);
            margin-bottom: 4px;
            letter-spacing: -0.03em;
            margin-top: 0;
        }
        .pricing-card-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(255,255,255,0.18);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.35);
            border-radius: 999px;
            padding: 5px 14px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            z-index: 3;
        }
        .pricing-popular {
            position: absolute;
            top: -16px; left: 50%;
            transform: translateX(-50%);
            padding: 6px 18px;
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(193,119,79,0.3);
        }
        .pricing-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }
        .pricing-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .pricing-price {
            font-family: var(--font-heading);
            font-size: 30px;
            font-weight: 800;
            color: var(--green-dark);
            margin-bottom: 4px;
            letter-spacing: -0.03em;
        }
        .pricing-price span {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
        }
        .pricing-duration {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }
        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px;
            flex: 1;
        }
        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-body);
        }
        .pricing-features li svg {
            width: 16px; height: 16px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 2.5;
            flex-shrink: 0;
        }
        .pricing-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 10px 24px;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
            cursor: pointer;
            text-decoration: none;
        }
        .pricing-btn .btn-arrow {
            display: inline-flex; align-items: center; justify-content: center;
            width: 24px; height: 24px; border-radius: 50%;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
            flex-shrink: 0;
        }
        .pricing-btn:hover .btn-arrow { transform: translateX(14px); }
        .pricing-btn .btn-arrow svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
        .pricing-btn-outline {
            border: 1.5px solid var(--border-strong);
            color: var(--green-dark);
            background: transparent;
        }
        .pricing-btn-outline .btn-arrow { background: rgba(42,45,36,0.08); }
        .pricing-btn-outline:hover { background: rgba(42,45,36,0.04); border-color: var(--green); }
        .pricing-btn-outline:hover .btn-arrow { background: rgba(42,45,36,0.12); }
        .pricing-card.featured .pricing-btn-white { border-color: rgba(255,255,255,0.3); }
        .pricing-btn-white {
            border: 1.5px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .pricing-btn-white .btn-arrow { background: rgba(255,255,255,0.15); }
        .pricing-btn-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
        .pricing-btn-white:hover .btn-arrow { background: rgba(255,255,255,0.25); }
        .pricing-btn-green {
            border: 1.5px solid var(--green);
            background: var(--green);
            color: #fff;
        }
        .pricing-btn-green .btn-arrow { background: rgba(255,255,255,0.2); }
        .pricing-btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
        .pricing-btn-green:hover .btn-arrow { background: rgba(255,255,255,0.3); }
        .pricing-btn-accent-solid {
            border: 1.5px solid var(--accent);
            background: var(--accent);
            color: #fff;
        }
        .pricing-btn-accent-solid .btn-arrow { background: rgba(255,255,255,0.2); }
        .pricing-btn-accent-solid:hover { background: #a8623d; border-color: #a8623d; }
        .pricing-btn-accent-solid:hover .btn-arrow { background: rgba(255,255,255,0.3); }

        .pricing-top {
            min-height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .pricing-top .pricing-desc { margin-bottom: 0; }

                /* ===== CTA ===== */
        .cta-section {
            padding: 0 48px var(--section-padding);
            background: var(--bg-alt);
        }
        .cta-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            background: var(--green);
            border-radius: var(--radius-lg);
            padding: 56px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            top: -60px; right: -40px;
            width: 200px; height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
        }
        .cta-content { position: relative; z-index: 1; }
        .cta-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.5vw, 32px);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }
        .cta-content p {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            max-width: 420px;
            line-height: 1.65;
        }
        .cta-buttons {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        /* ===== CONSULT FORM ===== */
        .consult-section {
            padding: var(--section-padding) 48px;
        }
        .consult-container {
            max-width: 600px;
            margin: 0 auto;
        }
        .consult-container h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 10px;
            text-align: center;
        }
        .consult-container > p {
            font-size: 14px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 36px;
            line-height: 1.65;
        }
        .consult-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group label {
            display: block;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 6px;
        }
        .form-group label span {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 400;
        }
        .form-group textarea,
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--cream);
            font-size: 14px;
            font-family: var(--font-body);
            color: var(--text-body);
            outline: none;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .form-group textarea:focus,
        .form-group input:focus,
        .form-group select:focus { border-color: var(--green); }
        .form-group textarea { min-height: 90px; }
        .form-sub { margin-top: -12px; }
        .form-sub label { font-size: 13px; font-weight: 400; color: var(--text-muted); }
        .consult-submit {
            display: block;
            width: 100%;
            padding: 14px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 4px;
        }
        .consult-submit:hover { background: #a8623d; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero { margin-bottom: 40px; padding: 100px 24px 0; }
            .hero-inner { grid-template-columns: 1fr; gap: 20px; }
            .hero-text-wrap { padding: 40px 28px; }
            .hero-text { max-width: 100%; }
            .hero-image img { aspect-ratio: 4/3; }
            .stats-cards { position: relative; left: 0; right: 0; bottom: 0; padding: 0 32px; margin-top: -30px; margin-bottom: 24px; flex-wrap: wrap; z-index: 1; }
            .stat-card { min-width: 0; flex: 1; }

            .about-section { padding: 80px 32px; }
            .about-grid { grid-template-columns: 1fr; }
            .journey-section { padding: 80px 32px; }
            .journey-grid { grid-template-columns: 1fr; gap: 32px; }
            .book-section { padding: 80px 32px; }
            .book-grid { grid-template-columns: 1fr; gap: 32px; }
            .media-photo-grid { grid-template-columns: 1fr; gap: 32px; }
            .media-photo-col img { height: 360px; object-position: center 20%; }
            .publicaties-section { padding: 80px 32px; }
            .agenda-section { padding: 80px 32px; }
            .pricing-section { padding: 80px 32px; }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-section { padding: 0 32px 80px; }
            .cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
            .cta-content p { max-width: 100%; }
            .consult-section { padding: 80px 32px; }
            .newsletter-section { padding: 56px 32px; }
            .zelfscan-banner { padding: 0 32px; }
        }

        @media (max-width: 768px) {
            .hero-inner { padding: 100px 20px 50px; }
            .hero-image img { aspect-ratio: 4/3; }
            .hero-text h1 { font-size: 28px; }
            .hero-text p { font-size: 14px; }

            .zelfscan-banner { padding: 0 20px; margin-top: 24px; }
            .zelfscan-inner { flex-direction: column; text-align: center; padding: 28px 20px; }

            .about-section, .journey-section, .book-section,
            .publicaties-section, .agenda-section, .pricing-section,
            .cta-section, .consult-section { padding-left: 20px; padding-right: 20px; }
            .media-photo-section, .newsletter-section { padding-left: 20px; padding-right: 20px; }
            .testimonials-section, .pricing-section, .visie-banner { margin-left: 16px; margin-right: 16px; border-radius: 20px; }
            .media-photo-col img { height: 280px; }
            .media-article-card { padding: 18px 20px; }
            .stats-cards { position: relative; left: 0; right: 0; bottom: 0; flex-direction: row; flex-wrap: wrap; gap: 8px; padding: 0 20px; margin-top: -40px; margin-bottom: 20px; }
            .stat-card { padding: 16px 18px; min-width: 0; flex: 1; }
            .stat-number { font-size: 22px; }
            .stat-label { font-size: 11px; }
            .publicaties-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }

            .agenda-item { flex-direction: column; align-items: flex-start; gap: 4px; }
            .agenda-item-title { margin: 0; }

            .cta-inner { padding: 32px 20px; }
            .cta-buttons { flex-direction: column; width: 100%; }
            .cta-buttons a { text-align: center; justify-content: center; }

            .book-image img { max-width: 200px; }
        }

        @media (max-width: 480px) {
            .hero-text h1 { font-size: 24px; }
            .hero-text p { font-size: 13px; }
            .stats-cards { flex-direction: column; }
            .stat-card { min-width: auto; }
        }

        /* ===== COMPACT CONSULTEN & TRAJECTEN ===== */
        .compact-section {
            padding: var(--section-padding) 48px;
            background: var(--bg-alt);
            margin: 40px 48px 0;
            border-radius: 24px;
        }
        .compact-section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .compact-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            padding-top: 20px;
        }
        .compact-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 0 0 18px;
            display: flex;
            flex-direction: column;
            text-align: left;
            transition: all 0.25s;
            overflow: hidden;
        }
        .compact-card .compact-image {
            width: 100%;
            aspect-ratio: 5 / 4;
            overflow: hidden;
            background: #f2f2ef;
        }
        .compact-card .compact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .compact-card:hover .compact-image img { transform: scale(1.05); }
        .compact-card .compact-body {
            padding: 18px 18px 0;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .compact-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 32px rgba(58,61,50,0.08);
            border-color: transparent;
        }
        .compact-card .compact-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .compact-card h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            line-height: 1.25;
            color: var(--green-dark);
            margin: 0 0 8px;
            min-height: 60px;
        }
        .compact-card .compact-desc {
            font-size: 12px;
            line-height: 1.5;
            color: var(--text-body);
            margin: 0 0 10px;
            min-height: 72px;
        }
        .compact-card .compact-bullets {
            list-style: none;
            padding: 0;
            margin: 0 0 14px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-height: 66px;
        }
        .compact-card .compact-bullets li {
            font-size: 11px;
            color: var(--text-body);
            line-height: 1.4;
            padding-left: 14px;
            position: relative;
        }
        .compact-card .compact-bullets li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--accent);
        }
        .compact-card .compact-price-row {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            padding-top: 10px;
            border-top: 1px solid var(--border);
            margin-top: auto;
            margin-bottom: 14px;
        }
        .compact-card .compact-price {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--green-dark);
        }
        .compact-card .compact-duration {
            font-size: 11px;
            color: var(--text-muted);
        }
        .compact-card .compact-btn {
            margin: 0 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 12px;
            border-radius: 999px;
            background: var(--green-dark);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
            min-height: 56px;
            box-sizing: border-box;
        }
        .compact-card .compact-btn:hover { background: #2a2d1e; }
        .compact-card--dark .compact-btn { background: var(--accent); }
        .compact-card--dark .compact-btn:hover { background: #a8623d; }
        .compact-card .compact-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
        @media (max-width: 1200px) {
            .compact-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 820px) {
            .compact-grid { grid-template-columns: repeat(2, 1fr); }
            .compact-section { padding: 60px 20px 80px; }
        }
        @media (max-width: 480px) {
            .compact-grid { grid-template-columns: 1fr; }
        }
    
/* === per-page from nieuwe-geneeskunde.html === */

        /* ===== HERO ===== */
        .bk-hero {
            padding: 100px 48px 0;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .bk-hero-card {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            border-radius: 28px;
            overflow: hidden;
            min-height: 520px;
        }
        .bk-hero-left {
            background: var(--green-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 56px 40px;
            position: relative;
        }
        .bk-hero-cover {
            position: relative;
            z-index: 1;
            max-width: 220px;
            width: 100%;
        }
        .bk-hero-cover img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 32px 64px rgba(0,0,0,0.35);
        }
        .bk-hero-right {
            background: #f7f0eb;
            padding: 56px 52px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .bk-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(58,61,50,0.08);
            border-radius: 999px;
            padding: 6px 14px 6px 10px;
            font-size: 12px;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 20px;
            width: fit-content;
        }
        .bk-hero-right h1 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 700;
            line-height: 1.1;
            color: var(--green-dark);
            letter-spacing: -0.02em;
            margin: 0 0 12px;
        }
        .bk-hero-right .book-sub {
            font-style: italic;
            font-size: 15px;
            color: var(--text-muted);
            margin: 0 0 28px;
            line-height: 1.5;
        }
        .bk-hero-price {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 0 0 28px;
        }
        .bk-hero-price-main {
            font-family: var(--font-heading);
            font-size: 34px;
            font-weight: 700;
            color: var(--green-dark);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .bk-hero-price-old {
            font-size: 16px;
            color: var(--text-muted);
            text-decoration: line-through;
            font-weight: 400;
        }
        .bk-hero-cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .bk-meta-pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }
        .bk-meta-pill {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 12px;
            color: var(--text-body);
            font-weight: 500;
        }

        /* ===== SYNOPSIS ===== */
        .book-body {
            padding: 72px 48px 0;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .book-body-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
        .book-synopsis h2 {
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.4vw, 28px);
            color: var(--green-dark);
            margin-bottom: 20px;
        }
        .book-synopsis p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .book-highlights {
            background: var(--green-dark);
            border-radius: 20px;
            padding: 36px;
            color: #fff;
        }
        .book-highlights h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            color: #fff;
            margin-bottom: 20px;
        }
        .book-highlights ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .book-highlights ul li {
            display: flex;
            gap: 12px;
            font-size: 14px;
            color: rgba(255,255,255,0.88);
            line-height: 1.5;
        }
        .book-highlights ul li svg {
            width: 18px; height: 18px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5;
            flex-shrink: 0;
            margin-top: 2px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            padding: 3px;
            box-sizing: border-box;
        }
        .author-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-top: 32px;
            text-decoration: none;
            transition: box-shadow 0.2s;
        }
        .author-card:hover { box-shadow: 0 4px 16px rgba(58,61,50,0.08); }
        .author-card img {
            width: 52px; height: 52px;
            border-radius: 50%; object-fit: cover;
        }
        .author-card-text { flex: 1; }
        .author-card-name {
            font-family: var(--font-heading);
            font-size: 15px; font-weight: 700;
            color: var(--green-dark);
        }
        .author-card-role { font-size: 13px; color: var(--text-muted); }
        .author-card-link {
            font-size: 13px; font-weight: 600;
            color: var(--accent); text-decoration: none;
        }

        /* ===== QUOTE ===== */
        .book-quote {
            background: var(--green);
            padding: 72px 48px;
            border-radius: 24px;
            margin: 64px 48px;
            text-align: center;
        }
        .book-quote blockquote {
            font-family: var(--font-heading);
            font-size: clamp(20px, 2.4vw, 28px);
            font-weight: 700;
            color: #fff;
            line-height: 1.45;
            letter-spacing: -0.02em;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== ZIE OOK ===== */
        .zie-ook {
            padding: 64px 48px 100px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .zie-ook-label {
            font-size: 11px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.1em;
            color: var(--accent); margin-bottom: 8px;
        }
        .zie-ook h2 { margin-bottom: 32px; }
        .zie-ook-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .zie-ook-card {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 20px;
            align-items: start;
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            text-decoration: none;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .zie-ook-card:hover {
            box-shadow: 0 8px 32px rgba(58,61,50,0.1);
            transform: translateY(-2px);
        }
        .zie-ook-card img {
            width: 100px; aspect-ratio: 2/3;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(58,61,50,0.14);
        }
        .zie-ook-type {
            font-size: 11px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            color: var(--text-muted); margin-bottom: 6px;
        }
        .zie-ook-card h3 {
            font-family: var(--font-heading);
            font-size: 16px; font-weight: 700;
            color: var(--green-dark); margin-bottom: 8px; line-height: 1.3;
        }
        .zie-ook-card p {
            font-size: 13px; color: var(--text-muted);
            line-height: 1.6; margin-bottom: 12px;
        }
        .zie-ook-price {
            font-family: var(--font-heading);
            font-size: 17px; font-weight: 700;
            color: var(--green-dark);
        }
        .zie-ook-price-old {
            font-size: 12px; color: var(--text-muted);
            text-decoration: line-through; margin-left: 6px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .bk-hero { padding: 110px 32px 0; }
            .bk-hero-card { grid-template-columns: 1fr; }
            .bk-hero-left { min-height: 360px; }
            .book-body { padding: 56px 32px 0; }
            .book-body-grid { grid-template-columns: 1fr; gap: 40px; }
            .book-quote { margin: 48px 32px; }
            .zie-ook { padding: 48px 32px 80px; }
        }
        @media (max-width: 768px) {
            .bk-hero { padding: 90px 20px 0; }
            .bk-hero-right { padding: 40px 28px; }
            .book-body { padding: 48px 20px 0; }
            .book-quote { padding: 48px 24px; margin: 40px 20px; }
            .zie-ook { padding: 40px 20px 64px; }
            .zie-ook-grid { grid-template-columns: 1fr; }
            .zie-ook-card { grid-template-columns: 80px 1fr; gap: 16px; padding: 18px; }
            .zie-ook-card img { width: 80px; }
        }
    
/* === per-page from over.html === */

        /* ===== HERO ===== */
        .about-hero {
            padding: 130px 48px 80px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .about-hero-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 24px;
            align-items: stretch;
        }
        .about-hero-text {
            background: #f7f0eb;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .about-hero-text h1 { color: var(--green-dark); }
        .about-hero-text p {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.8;
            margin-top: 20px;
            max-width: 480px;
        }
        .about-hero-text .hero-actions {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }
        .about-hero-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
            height: 100%;
        }
        .about-hero-image {
            border-radius: 24px;
            overflow: hidden;
            flex: 1;
            min-height: 0;
        }
        .about-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 38%;
            display: block;
            aspect-ratio: 3/2;
        }
        .about-hero-card {
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .about-hero-card-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }
        .about-hero-card-info {
            flex: 1;
        }
        .about-hero-card-name {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: var(--green-dark);
        }
        .about-hero-card-role {
            font-size: 13px;
            color: var(--text-muted);
        }
        .about-hero-card-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .about-hero-card-arrow svg {
            width: 16px;
            height: 16px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ===== STATS ===== */
        .stats-row {
            padding: 0 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .stat-item {
            padding: 32px 24px;
            border-right: 1px solid var(--border);
        }
        .stat-item:last-child { border-right: none; }
        .stat-item .stat-number {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-item .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ===== VISIE ===== */
        .visie-section {
            padding: 140px 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .visie-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: start;
        }
        .visie-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .visie-content p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        /* ===== PHOTO TRIO ===== */
        .photo-trio {
            padding: 0 48px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .photo-trio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
        }
        .photo-trio-grid .photo-large {
            grid-row: 1 / 3;
        }
        .photo-trio-grid img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
            display: block;
        }
        .photo-trio-grid .photo-small-top {
            aspect-ratio: 3/2;
        }
        .photo-trio-grid .photo-small-bottom {
            aspect-ratio: 3/2;
            object-position: center top;
        }

        /* ===== BIO ===== */
        .bio-section {
            padding: 80px 48px;
            margin: 0 48px 80px;
            background: var(--green-dark);
            border-radius: 28px;
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
        }
        .bio-seed-watermark {
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 380px;
            height: 380px;
            fill: none;
            stroke: rgba(255,255,255,0.035);
            stroke-width: 0.5;
            pointer-events: none;
        }
        .bio-grid {
            display: grid;
            grid-template-columns: 0.5fr 0.8fr;
            gap: 80px;
            align-items: center;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .bio-image img {
            width: 100%;
            border-radius: 24px;
            aspect-ratio: 3/4;
            object-fit: cover;
            object-position: center center;
            box-shadow: 0 20px 50px rgba(58, 61, 50, 0.1);
        }
        .bio-section h2 { color: #fff; }
        .bio-content p {
            font-size: 15px;
            color: rgba(255,255,255,0.82);
            line-height: 1.75;
            margin-bottom: 16px;
        }
        .bio-content p:last-of-type {
            margin-bottom: 28px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .about-hero { padding: 120px 32px 60px; }
            .about-hero-grid { grid-template-columns: 1fr; gap: 20px; }
            .about-hero-text { padding: 40px 28px; min-height: auto; }
            .about-hero-image img { aspect-ratio: 4/3; }
            .stats-row { padding: 0 32px; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .visie-section { padding: 80px 32px; }
            .visie-grid { grid-template-columns: 1fr; }
            .visie-content { grid-template-columns: 1fr; gap: 24px; }
            .photo-trio { padding: 0 32px; }
            .photo-trio-grid { grid-template-rows: 200px 200px; }
            .bio-section { padding: 80px 32px; }
            .bio-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .about-hero { padding: 110px 20px 40px; }
            .stats-row { padding: 0 20px; }
            .stats-inner { grid-template-columns: 1fr 1fr; }
            .visie-section { padding: 60px 20px; }
            .photo-trio { padding: 0 20px; }
            .photo-trio-grid { grid-template-rows: 180px 180px; gap: 10px; }
            .bio-section { padding: 60px 20px; }
        }
        @media (max-width: 480px) {
            .stats-inner { grid-template-columns: 1fr; }
            .photo-trio-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .photo-trio-grid .photo-large { grid-row: auto; }
            .photo-trio-grid img { aspect-ratio: 4/3; height: auto; }
        }

        /* ===== MAP ===== */
        .map-section {
            padding: 0 48px 100px;
            max-width: calc(var(--max-width) + 96px);
            margin: 0 auto;
        }
        .map-wrapper {
            background: #eef0ed;
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
        }
        .map-info {
            padding: 32px 36px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .map-info-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(193, 119, 79, 0.1);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .map-info-icon svg {
            width: 22px; height: 22px;
            stroke: var(--accent); fill: none;
            stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
        }
        .map-info h3 {
            font-family: var(--font-heading);
            font-size: 16px; font-weight: 700;
            color: var(--green-dark); margin-bottom: 2px;
        }
        .map-info p {
            font-size: 13px; color: var(--text-muted); line-height: 1.5;
        }
        .map-embed {
            width: 100%;
            height: 380px;
            border: none;
            display: block;
        }
        @media (max-width: 1024px) {
            .map-section { padding: 0 32px 80px; }
        }
        @media (max-width: 768px) {
            .map-section { padding: 0 20px 60px; }
            .map-info { padding: 24px 20px; }
            .map-embed { height: 300px; }
        }
    
/* === per-page from zelfscan.html === */

        /* ===== ZELFSCAN PAGE STYLES ===== */

        .zelfscan-container {
            max-width: 760px;
            margin: 0 auto;
            padding: 0 24px 80px;
        }

        /* Donkergroene styling voor het infokaartje in de hero */
        .split-hero-section .split-hero-card {
            background: var(--green-dark);
            border-color: var(--green-dark);
            box-shadow: 0 10px 26px rgba(22, 48, 41, 0.35);
        }
        .split-hero-section .split-hero-card-icon {
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
        }
        .split-hero-section .split-hero-card-text strong,
        .split-hero-section .split-hero-card-text span {
            color: #fff;
        }

        /* ===== PROGRESS BAR ===== */
        .progress-section {
            padding: 32px 24px 0;
            max-width: 760px;
            margin: 0 auto;
        }
        .progress-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 16px;
        }
        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            flex: 1;
            max-width: 120px;
        }
        .progress-step-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-alt);
            border: 2px solid var(--border-strong);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        .progress-step.active .progress-step-dot {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .progress-step.completed .progress-step-dot {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
            cursor: pointer;
        }
        .progress-step.completed .progress-step-dot:hover {
            transform: scale(1.15);
            box-shadow: 0 2px 8px rgba(122,139,130,0.3);
        }
        .progress-step.completed .progress-step-label {
            cursor: pointer;
        }
        .progress-step-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 8px;
            text-align: center;
            white-space: nowrap;
            transition: color 0.3s;
        }
        .progress-step.active .progress-step-label {
            color: var(--accent);
        }
        .progress-step.completed .progress-step-label {
            color: var(--green);
        }
        .progress-line {
            flex: 1;
            height: 2px;
            background: var(--border-strong);
            margin: 0 -4px;
            position: relative;
            top: -14px;
            z-index: 1;
            max-width: 60px;
        }
        .progress-line.filled {
            background: var(--green);
        }
        .progress-bar-track {
            width: 100%;
            height: 4px;
            background: var(--bg-alt);
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 8px;
        }
        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--green), var(--accent));
            border-radius: 2px;
            transition: width 0.4s ease;
            width: 0%;
        }
        .progress-text {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }

        /* ===== STEP CONTAINER ===== */
        .step {
            display: none;
            animation: fadeInStep 0.35s ease;
        }
        .step.active {
            display: block;
        }
        @keyframes fadeInStep {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== STEP 1: PERSONAL INFO ===== */
        .form-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            margin-top: 32px;
        }
        .form-card h2 {
            font-family: var(--font-heading);
            font-size: clamp(24px, 3vw, 32px);
            color: var(--green-dark);
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .form-card .form-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }
        .form-group {
            margin-bottom: 24px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 8px;
        }
        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="number"] {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border-strong);
            border-radius: var(--radius-sm);
            background: var(--bg);
            color: var(--text-body);
            font-size: 15px;
            font-family: var(--font-body);
            outline: none;
            transition: border-color 0.2s;
        }
        .form-group input:focus {
            border-color: var(--accent);
        }
        .form-group input.error {
            border-color: #d9534f;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Radio group */
        .radio-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .radio-option {
            position: relative;
        }
        .radio-option input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        .radio-option label {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            border: 1.5px solid var(--border-strong);
            border-radius: var(--radius-full);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            transition: all 0.2s;
            margin-bottom: 0;
        }
        .radio-option input:checked + label {
            border-color: var(--accent);
            background: rgba(193,119,79,0.08);
            color: var(--accent);
        }

        /* Checkbox */
        .scan-privacy {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
            text-align: center;
            max-width: 480px;
            margin: 0 auto 8px;
        }

        /* ===== QUESTION STEP ===== */
        .question-step-header {
            text-align: center;
            margin-bottom: 8px;
            margin-top: 32px;
        }
        .question-step-header h2 {
            font-family: var(--font-heading);
            font-size: clamp(24px, 3vw, 32px);
            color: var(--green-dark);
            margin-bottom: 4px;
            line-height: 1.2;
        }
        .question-step-header p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .question-counter {
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 24px;
        }

        /* Subcategory label */
        .subcategory-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            margin-top: 8px;
        }
        .subcategory-label::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.4;
        }

        /* Question card */
        .question-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            border: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            margin-bottom: 16px;
            transition: border-color 0.2s;
        }
        .question-card.answered {
            border-color: rgba(122, 139, 130, 0.3);
        }
        .question-text {
            font-size: 15px;
            color: var(--green-dark);
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 500;
        }
        .question-number {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        /* Score selector */
        .score-selector {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .score-labels {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .score-buttons {
            display: flex;
            gap: 8px;
            justify-content: space-between;
        }
        .score-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--border-strong);
            background: var(--bg);
            color: var(--text-body);
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .score-btn:hover {
            border-color: var(--accent);
            background: rgba(193,119,79,0.06);
            color: var(--accent);
        }
        .score-btn.selected {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 2px 8px rgba(193,119,79,0.3);
        }

        /* ===== NAVIGATION BUTTONS ===== */
        .step-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }
        .step-nav .btn {
            min-width: 140px;
            justify-content: center;
        }
        .btn-prev {
            background: var(--bg-alt);
            color: var(--text-body);
            border: 1px solid var(--border-strong);
        }
        .btn-prev:hover {
            background: var(--border-strong);
        }
        .btn-next {
            background: var(--accent);
            color: #fff;
        }
        .btn-next:hover:not(:disabled) {
            background: #d4885e;
        }
        .btn-next:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .btn-start {
            width: 100%;
            justify-content: center;
            padding: 14px 24px;
            font-size: 15px;
            background: var(--accent);
            color: #fff;
        }
        .btn-start:hover {
            background: #d4885e;
        }

        /* ===== RESULTS ===== */
        .results-section {
            margin-top: 32px;
        }
        .results-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .results-header h2 {
            font-family: var(--font-heading);
            font-size: clamp(26px, 3.5vw, 38px);
            color: var(--green-dark);
            margin-bottom: 8px;
        }
        .results-header p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Radar chart */
        .radar-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 48px;
        }
        .radar-chart {
            width: 340px;
            height: 340px;
        }
        .radar-chart text {
            font-family: var(--font-body);
        }

        /* Category result cards */
        .category-results {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 48px;
        }
        .category-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }
        .category-card-header {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.2s;
        }
        .category-card-header:hover {
            background: var(--bg-alt);
        }
        .category-card-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .category-score-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }
        .score-low { background: #d9734e; }
        .score-mid { background: #d4a843; }
        .score-high { background: var(--green); }
        .category-card-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--green-dark);
        }
        .category-card-subtitle {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .category-toggle {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }
        .category-card.open .category-toggle {
            transform: rotate(180deg);
        }
        .category-card-body {
            display: none;
            padding: 0 24px 20px;
            border-top: 1px solid var(--border);
        }
        .category-card.open .category-card-body {
            display: block;
        }
        .subcategory-result {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .subcategory-result:last-child {
            border-bottom: none;
        }
        .subcategory-result-name {
            font-size: 14px;
            color: var(--text-body);
        }
        .subcategory-result-score {
            font-size: 14px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }
        .score-badge-low {
            background: rgba(217,115,78,0.12);
            color: #d9734e;
        }
        .score-badge-mid {
            background: rgba(212,168,67,0.12);
            color: #b8922e;
        }
        .score-badge-high {
            background: rgba(122,139,130,0.15);
            color: var(--green);
        }

        /* CTA section */
        .results-cta {
            background: var(--green-dark);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .results-cta h3 {
            font-family: var(--font-heading);
            font-size: clamp(20px, 2.5vw, 26px);
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .results-cta p {
            font-size: 15px;
            color: rgba(255,255,255,0.65);
            line-height: 1.7;
            max-width: 520px;
            margin: 0 auto 28px;
        }
        .results-cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .zelfscan-container {
                padding: 0 16px 60px;
            }
            .progress-section {
                padding: 24px 16px 0;
            }
            .progress-step-label {
                font-size: 9px;
            }
            .progress-step-dot {
                width: 30px;
                height: 30px;
                font-size: 11px;
            }
            .progress-line {
                top: -12px;
            }
            .form-card {
                padding: 24px 20px;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .question-card {
                padding: 20px;
            }
            .score-buttons {
                gap: 4px;
            }
            .score-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            .category-results {
                grid-template-columns: 1fr;
            }
            .results-cta {
                padding: 32px 24px;
            }
            .radar-chart {
                width: 280px;
                height: 280px;
            }
        }
        @media (max-width: 480px) {
            .score-btn {
                width: 28px;
                height: 28px;
                font-size: 11px;
                border-width: 1.5px;
            }
            .score-buttons {
                gap: 3px;
            }
        }
    
/* ============================================================
   ELEMENTOR TYPOGRAPHY OVERRIDES
   Elementors
/* ============================================================
   ELEMENTOR TYPOGRAPHY OVERRIDES
   ============================================================ */
:root {
  --e-global-typography-primary-font-family: "Mantul";
  --e-global-typography-primary-font-weight: 700;
  --e-global-typography-secondary-font-family: "Mantul";
  --e-global-typography-secondary-font-weight: 600;
  --e-global-typography-text-font-family: "Inter";
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-accent-font-family: "Inter";
  --e-global-typography-accent-font-weight: 500;
}
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-heading);
}
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-widget-text-editor li {
  font-family: var(--font-body);
}
.elementor-widget-button .elementor-button {
  font-family: var(--font-body);
}
.elementor-widget-icon-list .elementor-icon-list-text {
  font-family: var(--font-body);
}

/* Fix images inside Elementor inner-sections: override height:100% which
   breaks due to intermediate wrapper divs without explicit heights.
   The original aspect-ratio CSS on individual images still applies. */
.elementor-inner-section .elementor-widget-image img {
  height: auto;
}
/* Ensure inner-section containers don't add a max-width constraint */
.elementor-inner-section > .elementor-container {
  max-width: none;
}
/* Columns in inner-sections should not add extra spacing */
.elementor-inner-section .elementor-column-wrap,
.elementor-inner-section .elementor-widget-wrap {
  padding: 0 !important;
}

/* Neutralize layout-conflicting CSS properties on inner-sections.
   Original classes like .about-hero-image set flex/overflow/height
   which break Elementor's wrapper structure. Keep decorative props
   (border-radius, background, box-shadow) but reset layout ones. */
section.elementor-inner-section {
  flex: none !important;
  overflow: visible !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
}
/* Restore overflow:hidden as border-radius clip on the inner column wrapper */
section.elementor-inner-section > .elementor-container > .elementor-column > .elementor-widget-wrap {
  border-radius: inherit;
  overflow: hidden;
}
