/* Reset & basics */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0f2a3f;
    --navy-deep: #091e2e;
    --teal: #155e75;
    --accent: #ef4444;
    --accent-soft: #fca5a5;
    --green: #059669;
    --green-soft: #d1fae5;
    --text: #0f172a;
    --text-soft: #64748b;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cards .card.reveal:nth-child(1) { --reveal-delay: 0.05s; }
.cards .card.reveal:nth-child(2) { --reveal-delay: 0.18s; }
.cards .card.reveal:nth-child(3) { --reveal-delay: 0.30s; }
.footer-grid > .reveal:nth-child(1) { --reveal-delay: 0.0s; }
.footer-grid > .reveal:nth-child(2) { --reveal-delay: 0.10s; }
.footer-grid > .reveal:nth-child(3) { --reveal-delay: 0.20s; }
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

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

/* HEADER */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    padding: 20px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-img {
    height: 44px;
    width: auto;
    display: block;
}
.nav-cta {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.nav-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
.nav-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* HERO */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 720px;
    display: flex;
    align-items: center;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-sub strong {
    color: var(--white);
    font-weight: 700;
}
.hero-sub-line { display: block; }
.hero-sub-line + .hero-sub-line { margin-top: 4px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.arrow {
    font-size: 22px;
    line-height: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
}
.hero-badge strong {
    color: var(--white);
    font-weight: 700;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse-dot-green 2s ease-in-out infinite;
}
@keyframes pulse-dot-green {
    0%, 100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Video shield */
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-shield {
    width: 420px;
    height: 520px;
    max-width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-radius: 40px;
    position: relative;
}
.video-shield video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
}
.video-shield::after {
    content: "Plaats hier video.mp4";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    pointer-events: none;
    z-index: -1;
}

/* Play/pause/replay knop — geen achtergrond, alleen icoon */
.playpause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 4;
    transition: transform 0.25s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.playpause-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.pp-icon {
    pointer-events: none;
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.pp-icon-play, .pp-icon-pause, .pp-icon-replay {
    display: none;
}
/* Paused state → toon play */
.playpause-btn[data-state="paused"] .pp-icon-play { display: block; }
/* Playing state → toon pause, fade out tenzij hover */
.playpause-btn[data-state="playing"] {
    opacity: 0;
    pointer-events: none;
}
.playpause-btn[data-state="playing"] .pp-icon-pause { display: block; }
.video-shield:hover .playpause-btn[data-state="playing"] {
    opacity: 1;
    pointer-events: auto;
}
/* Ended state → toon replay */
.playpause-btn[data-state="ended"] .pp-icon-replay { display: block; }

/* Progress bar onderaan video */
.video-progress {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 4px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    z-index: 3;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.25s ease, height 0.2s ease;
}
.video-shield:hover .video-progress,
.playpause-btn[data-state="paused"] ~ .video-progress,
.playpause-btn[data-state="ended"] ~ .video-progress {
    opacity: 1;
}
.video-progress:hover {
    height: 6px;
}
.video-progress-fill {
    height: 100%;
    background: var(--white);
    width: 0%;
    border-radius: 2px;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* TIMELINE SECTION */
.timeline-section {
    background: var(--white);
    padding: 100px 0 30px;
    text-align: center;
}
.timeline-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.subtitle {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 60px;
}
.timeline {
    max-width: 980px;
    margin: 0 auto;
    padding: 30px 20px;
}
.t-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    align-items: center;
    justify-items: center;
}
.t-years { margin-bottom: 18px; }
.t-amounts { margin-top: 18px; }

.t-track {
    position: relative;
    height: 32px;
}
.t-line {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg,
        #fca5a5 0%,
        #f87171 25%,
        #ef4444 50%,
        #b91c1c 75%,
        #7f1d1d 100%);
    transform: translateY(-50%);
    z-index: 1;
}
.t-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--white);
    transition: transform 0.25s ease;
    position: relative;
    z-index: 2;
}

.ty {
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.ta {
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.01em;
}

/* Progressive darkening — krachtigere rood-progressie */
.td-1 { background: #fca5a5; box-shadow: 0 0 0 2px #fca5a5; }
.ta-1 { color: #fca5a5; }

.td-2 { background: #f87171; box-shadow: 0 0 0 2px #f87171; transform: scale(1.05); }
.ta-2 { color: #f87171; }

.td-3 { background: #ef4444; box-shadow: 0 0 0 2px #ef4444; transform: scale(1.12); }
.ta-3 { color: #ef4444; }

.td-4 { background: #b91c1c; box-shadow: 0 0 0 2px #b91c1c; transform: scale(1.20); }
.ta-4 { color: #b91c1c; }

.td-5 {
    background: #7f1d1d;
    box-shadow: 0 0 0 3px #7f1d1d, 0 0 28px rgba(127, 29, 29, 0.5);
    width: 26px;
    height: 26px;
}
.ta-5 {
    color: #7f1d1d;
    font-size: 22px;
}
.ty-5 { color: #7f1d1d; }

/* CARDS SECTION */
.cards-section {
    background: var(--white);
    padding: 20px 0 110px;
}
/* Cards boven booking via flex column-reverse op de wrapper (desktop + mobiel). */
.booking-cards-wrap {
    display: flex;
    flex-direction: column-reverse;
}
.highlight-green {
    color: var(--green);
    background: linear-gradient(transparent 62%, rgba(5, 150, 105, 0.20) 62%);
    padding: 0 4px;
    font-weight: 800;
}
.cards-arrow {
    display: block;
    text-align: center;
    color: var(--green);
    font-size: 28px;
    line-height: 1;
    margin: 0 auto 18px;
    animation: bounce-arrow 2.2s ease-in-out infinite;
}
@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0);   opacity: 0.5; }
    50%      { transform: translateY(8px); opacity: 1; }
}
.cards-section h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.cards-subtitle {
    color: var(--text-soft);
    font-size: 17px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.55;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
    border-color: var(--green-soft);
}
.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
}
.card-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}
.card:hover .card-icon {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}
.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}
.card p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
    min-height: 70px;
}
.card-price {
    color: var(--green);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 8px;
}
.card-label {
    color: #9ca3af;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* BOOKING SECTION */
.booking-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal) 100%);
    padding: 100px 0;
    position: relative;
}
.booking-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    align-items: center;
}
.calendly-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-soft);
    min-height: 680px;
}
.booking-tag {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.booking-text h2 {
    font-size: clamp(26px, 2.6vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.booking-lead {
    color: var(--text-soft) !important;
    font-size: 16px !important;
    font-weight: 500;
    margin-bottom: 28px !important;
    line-height: 1.55;
}
.booking-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.booking-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.bp-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.booking-text p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 28px;
}
.benefits {
    list-style: none;
}
.benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text);
}
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* FORM */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.form-group input {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--teal);
}

.day-picker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.day-btn {
    background: var(--white);
    border: 2px solid #e5e7eb;
    padding: 12px 6px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: all 0.15s ease;
}
.day-btn:hover {
    border-color: var(--teal);
}
.day-btn.selected {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.day-name {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2px;
    opacity: 0.7;
}
.day-num {
    display: block;
    font-size: 18px;
    font-weight: 700;
}
.day-month {
    display: block;
    font-size: 11px;
    margin-top: 2px;
    opacity: 0.7;
}

.time-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.time-btn {
    background: var(--white);
    border: 2px solid #e5e7eb;
    padding: 16px 8px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    font-weight: 600;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.time-btn:hover {
    border-color: var(--teal);
}
.time-btn.selected {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.time-icon {
    font-size: 22px;
}
.time-btn small {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

.btn-submit {
    background: var(--navy);
    color: var(--white);
    padding: 18px 28px;
    border: none;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
    font-family: inherit;
    margin-top: 8px;
}
.btn-submit:hover {
    background: var(--teal);
    transform: translateY(-2px);
}
.form-note {
    font-size: 13px;
    color: var(--text-soft);
    text-align: center;
    margin-top: 4px;
}

.booking-success {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
}
.booking-success.show {
    display: block;
}
.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
}
.booking-success h3 {
    font-size: 26px;
    margin-bottom: 8px;
}
.booking-success p {
    color: var(--text-soft);
}

/* ABOUT (Wie is Finn?) */
.about-section {
    background: var(--bg-soft);
    padding: 90px 0;
}
.about-card {
    background: var(--white);
    border-radius: 24px;
    padding: 56px 56px;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(6, 42, 53, 0.08);
}
.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(6, 42, 53, 0.18);
}
.about-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    display: block;
}
.about-photo-placeholder {
    font-size: 88px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.about-eyebrow {
    display: inline-block;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-content h2 {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 18px;
}
.about-name {
    color: var(--teal);
}
.about-story {
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 28px;
}
.about-stats {
    display: flex;
    gap: 48px;
    padding: 22px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    margin-bottom: 20px;
}
.about-stat {
    display: flex;
    flex-direction: column;
}
.about-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.about-stat-label {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;
}
.about-signature {
    color: var(--navy);
    font-style: italic;
    font-size: 15px;
    font-weight: 600;
}
@media (max-width: 800px) {
    .about-card {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 36px 28px;
        gap: 28px;
    }
    .about-photo {
        margin: 0;
        width: 130px;
        height: 130px;
    }
    .about-photo-placeholder {
        font-size: 60px;
    }
    .about-stats {
        justify-content: flex-start;
        gap: 32px;
    }
}

/* LEGAL PAGES */
.legal-page {
    background: var(--white);
    padding: 140px 0 80px;
    min-height: 70vh;
}
.legal-page .container {
    max-width: 760px;
}
.legal-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: color 0.2s ease;
}
.legal-page .back-link:hover {
    color: var(--navy);
}
.legal-page h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.15;
}
.legal-page .legal-meta {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 40px;
}
.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.legal-page p,
.legal-page li {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.legal-page ul {
    padding-left: 20px;
    margin-bottom: 14px;
}
.legal-page li {
    margin-bottom: 8px;
}
.legal-page a {
    color: var(--teal);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .legal-page {
        padding: 100px 0 50px;
    }
    .legal-page h2 {
        font-size: 19px;
        margin-top: 28px;
    }
    .legal-page p,
    .legal-page li {
        font-size: 15px;
    }
}

/* Make header readable on light pages */
.legal-page-header .site-header {
    background: var(--navy-deep);
    position: relative;
}

/* FOOTER */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 28px;
    font-size: 14px;
    text-align: left;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 64px;
}
.footer-brand .footer-logo {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 28px;
}
.footer-tagline {
    color: var(--white);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.footer-tagline-sub {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--white);
}
.footer-col p {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.55);
}
.footer-col .footer-company {
    margin-bottom: 16px;
}
.footer-col .footer-company strong {
    color: var(--white);
    font-weight: 700;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    .site-footer {
        padding-top: 60px;
    }
}

/* RESPONSIVE */
/* TABLET (≤900px) */
@media (max-width: 900px) {
    .container { padding: 0 20px; }

    .hero {
        padding: 90px 0 56px;
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
    }
    .video-shield {
        width: 260px;
        height: 320px;
    }

    .timeline-section { padding: 60px 0 24px; }
    .cards-section { padding: 16px 0 60px; }
    .cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    .card {
        padding: 18px 12px;
    }
    .card p { min-height: auto; }

    .booking-section { padding: 60px 0; }
    .booking-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 24px;
    }
    .booking-text h2 {
        font-size: clamp(22px, 5vw, 26px);
    }
    .calendly-wrap { min-height: 700px; }

    .day-picker { grid-template-columns: repeat(3, 1fr); }
}

/* SMARTPHONE (≤600px) — agressievere fixes */
@media (max-width: 600px) {
    /* Header */
    .site-header { padding: 14px 0; }
    .nav-cta {
        padding: 8px 14px;
        font-size: 13px;
    }
    .logo-img { height: 34px; }
    .header-nav { gap: 10px; }
    .nav-link { font-size: 13px; }
    .hide-mobile { display: none; }

    /* HERO — strakkere proporties */
    .hero {
        padding: 88px 0 44px;
    }
    .hero-inner { gap: 28px; }
    .hero-text { gap: 0; }
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }
    .hero-text h1 {
        font-size: clamp(30px, 8.5vw, 42px);
        line-height: 1.08;
        margin-bottom: 18px;
    }
    .hero-sub {
        font-size: 15.5px;
        line-height: 1.5;
        margin-bottom: 26px;
        max-width: 100%;
    }
    .hero-sub-line + .hero-sub-line {
        margin-top: 14px;
    }
    .btn-primary {
        padding: 14px 26px;
        font-size: 15px;
    }

    /* VIDEO — clean rounded rectangle ipv egg-shape op mobiel */
    .video-shield {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 4 / 5;
        border-radius: 24px;
    }
    .video-shield video {
        border-radius: 24px;
    }
    .playpause-btn {
        opacity: 1;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
    .unmute-btn {
        font-size: 12px;
        padding: 7px 14px;
        bottom: 14px;
    }

    /* SECTION HEADINGS algemeen */
    .timeline-section h2,
    .cards-section h2,
    .about-content h2 {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.2;
    }

    /* TIMELINE — strakker, kleiner, geen overlap */
    .timeline-section { padding: 50px 0 16px; }
    .timeline-section .subtitle { font-size: 14px; margin-bottom: 36px; }
    .timeline { padding: 16px 0; }
    .t-track { height: 28px; }
    .t-line { left: 12%; right: 12%; height: 2px; }
    .t-dot { width: 13px; height: 13px; border-width: 2px; }
    .td-5 {
        width: 18px;
        height: 18px;
        box-shadow: 0 0 0 2px #7f1d1d, 0 0 16px rgba(127,29,29,0.45);
    }
    .ty { font-size: 11px; font-weight: 700; }
    .ta { font-size: 11.5px; }
    .ta-5 { font-size: 13px; }
    .t-years { margin-bottom: 10px; }
    .t-amounts { margin-top: 10px; }

    /* CARDS — compact horizontal 3 kolommen, kleinere hoogtes */
    .cards-arrow { margin-bottom: 12px; font-size: 22px; }
    .cards-subtitle { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
    .cards { gap: 8px; align-items: stretch; }
    .card {
        padding: 12px 6px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .card-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        margin-bottom: 8px;
        flex-shrink: 0;
    }
    .card-icon svg { width: 18px; height: 18px; }
    .card h3 {
        font-size: 10.5px;
        line-height: 1.25;
        font-weight: 700;
        margin: 0 0 8px;
        min-height: 2.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-wrap: balance;
        hyphens: auto;
        word-break: normal;
        overflow-wrap: break-word;
    }
    .card p {
        display: none;
    }
    .card-price {
        font-size: 11px;
        line-height: 1.25;
        font-weight: 800;
        margin: auto 0 3px;
        white-space: nowrap;
    }
    .card-label {
        display: none;
    }

    /* BOOKING — tekst groter en beter leesbaar */
    .booking-section { padding: 50px 0; }
    .booking-card {
        padding: 28px 22px;
        gap: 24px;
        border-radius: 20px;
    }
    .booking-tag {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }
    .booking-text h2 {
        font-size: 24px;
        line-height: 1.22;
        margin-bottom: 14px;
    }
    .booking-lead {
        font-size: 16px !important;
        margin-bottom: 24px !important;
        line-height: 1.5;
    }
    .booking-points {
        gap: 14px;
    }
    .booking-points li {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
    }
    .bp-num {
        width: 28px;
        height: 28px;
        font-size: 13px;
        flex-shrink: 0;
    }
    .calendly-wrap { min-height: 680px; }

    /* ABOUT */
    .about-section { padding: 60px 0; }
    .about-card {
        padding: 32px 22px;
        border-radius: 18px;
        gap: 24px;
    }
    .about-photo {
        width: 120px;
        height: 120px;
    }
    .about-photo-placeholder { font-size: 50px; }
    .about-eyebrow { font-size: 11px; margin-bottom: 10px; }
    .about-content h2 { font-size: 22px; margin-bottom: 14px; }
    .about-story { font-size: 15px; margin-bottom: 20px; }
    .about-stats {
        flex-direction: row;
        gap: 24px;
        padding: 18px 0;
    }
    .about-stat-num { font-size: 24px; }
    .about-stat-label { font-size: 11.5px; }
    .about-signature { font-size: 14px; }

    /* FOOTER — 3 kolommen: brand links, juridisch + tebraaf rechts */
    .site-footer { padding: 50px 0 22px; }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 14px;
        padding-bottom: 32px;
    }
    .footer-tagline {
        font-size: 18px;
        line-height: 1.18;
        margin-bottom: 12px;
    }
    .footer-brand .footer-logo {
        height: 26px;
        margin-bottom: 14px;
    }
    .footer-tagline-sub { font-size: 11.5px; }
    .footer-col h4 { font-size: 12px; margin-bottom: 10px; }
    .footer-col p,
    .footer-col a,
    .footer-col ul li {
        font-size: 11.5px;
        line-height: 1.5;
    }
    .footer-col p { margin-bottom: 4px; }
    .footer-col .footer-company { margin-bottom: 8px; }
    .footer-col ul li { margin-bottom: 6px; }
    .footer-bottom {
        padding-top: 18px;
        font-size: 11px;
        line-height: 1.5;
    }
}

/* HEEL KLEIN (≤380px) */
@media (max-width: 380px) {
    .hero-text h1 { font-size: 28px; }
    .hero-sub { font-size: 14.5px; }
    .video-shield { max-width: 280px; }

    /* Timeline nog compacter, dots iets kleiner */
    .t-dot { width: 11px; height: 11px; }
    .td-5 { width: 15px; height: 15px; }
    .ty { font-size: 10px; }
    .ta { font-size: 10.5px; }
    .ta-5 { font-size: 12px; }
    .t-line { left: 14%; right: 14%; }

    /* Cards in 3 kolommen — nog compacter */
    .cards { gap: 8px; }
    .card { padding: 12px 6px; border-radius: 10px; }
    .card-icon { width: 32px; height: 32px; border-radius: 8px; margin-bottom: 8px; }
    .card-icon svg { width: 18px; height: 18px; }
    .card h3 { font-size: 11px; margin-bottom: 6px; }
    .card p { font-size: 9.5px; line-height: 1.35; margin-bottom: 8px; }
    .card-price { font-size: 12px; }
    .card-label { font-size: 8px; }

    /* Footer tagline kleiner */
    .footer-tagline { font-size: 15px; }
    .footer-grid { gap: 10px; }
    .footer-col h4 { font-size: 11px; }
    .footer-col p, .footer-col a, .footer-col ul li { font-size: 10.5px; }

    .booking-card { padding: 22px 16px; }
    .booking-text h2 { font-size: 21px; }
}
