/* ─── Self-hosted Inter (variable font, latin subset) ─── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --navy: #0f1c2e;
    --blue: #185FA5;
    --blue-light: #4fa8e8;
    --blue-bg: #E6F1FB;
    --green: #3B6D11;
    --green-bg: #EAF3DE;
    --amber: #854F0B;
    --amber-bg: #FAEEDA;
    --red: #A32D2D;
    --red-bg: #FCEBEB;
    --beige: #f3f0e8;
    --border: #e0ddd6;
    --text: #1a1a1a;
    --text-muted: #5e5e5e;
    --radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    font-size: 17px;
}

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

/* ─── Nav ─── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { font-size: 14px; font-weight: 600; color: #fff; background: var(--blue); padding: 8px 20px; border-radius: 8px; text-decoration: none; transition: background 0.15s; }
.nav-cta:hover { background: #0f4a80; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; border-radius: 10px; text-decoration: none; transition: all 0.15s; font-family: inherit; cursor: pointer; }
.btn-primary { background: var(--blue); color: #fff; border: 2px solid var(--blue); }
.btn-primary:hover { background: #0f4a80; border-color: #0f4a80; }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { font-size: 16px; padding: 14px 28px; }

/* ─── Hero ─── */
.hero { padding: 140px 0 60px; text-align: center; background: linear-gradient(180deg, #fff 0%, var(--beige) 100%); }
.hero > .container { max-width: 1640px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.6fr); gap: 72px; align-items: center; text-align: left; }
.hero-grid .hero-sub { margin-left: 0; margin-right: 0; }
.hero-grid .hero-actions { justify-content: flex-start; margin-bottom: 0; }
.hero-grid .hero-checks { justify-content: flex-start !important; }
.hero-grid .hero-visual { max-width: none; margin: 0; }
.hero-grid h1 { text-align: left; font-size: 42px; line-height: 1.12; letter-spacing: -1px; }
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .hero-grid h1 { text-align: center; }
    .hero-grid .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-grid .hero-actions { justify-content: center; }
    .hero-grid .hero-checks { justify-content: center !important; }
}
.hero-badge { display: inline-block; font-size: 14px; font-weight: 500; color: var(--blue); background: var(--blue-bg); padding: 6px 16px; border-radius: 99px; margin-bottom: 24px; }
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--navy); margin-bottom: 20px; }
.hero h1 span { color: var(--blue); }
.hero-sub { font-size: 20px; color: var(--text-muted); max-width: 620px; margin: 0 auto 32px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 18px; }

/* ─── Planning timeline mockup (hero) ───────────────────────────── */
.tl-frame { background: #fff; border: 0.5px solid #e0ddd6; border-radius: 18px; box-shadow: 0 28px 80px rgba(15, 28, 46, 0.14); padding: 26px 28px; }
.tl-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 0.5px solid #f1efe8; margin-bottom: 16px; gap: 12px; flex-wrap: wrap; }
.tl-title { font-size: 19px; font-weight: 700; color: #0f1c2e; }
.tl-toolbar { display: flex; gap: 6px; }
.tl-pill { font-size: 14px; padding: 7px 16px; border-radius: 9px; border: 0.5px solid #e0ddd6; color: #5e5e5e; background: #fff; }
.tl-pill--active { background: #185FA5; border-color: #185FA5; color: #fff; font-weight: 600; }
.tl-row { display: grid; grid-template-columns: 160px 1fr; align-items: stretch; }
.tl-row--head { border-bottom: 0.5px dashed #e0ddd6; padding-bottom: 8px; margin-bottom: 8px; }
.tl-row + .tl-row { border-top: 0.5px solid #f1efe8; }
.tl-name { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #1a1a1a; padding: 18px 12px 18px 0; font-weight: 500; }
.tl-name-initials { width: 36px; height: 36px; border-radius: 50%; background: #F1EFE8; color: #5F5E5A; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tl-track { position: relative; min-height: 78px; background: linear-gradient(to right, transparent 0, transparent calc(100% / 5 - 1px), #f1efe8 calc(100% / 5 - 1px), #f1efe8 calc(100% / 5)) 0 0/calc(100% / 5) 100% repeat-x; }
.tl-row--head .tl-track { display: flex; min-height: 0; padding: 4px 0 10px; background: none; }
.tl-tick { flex: 1; font-size: 13px; color: #888; font-weight: 500; }
.tl-block { position: absolute; top: 9px; bottom: 9px; padding: 10px 14px; border-radius: 10px; font-size: 14px; line-height: 1.3; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.12); }
.tl-block-title { font-weight: 700; font-size: 14.5px; }
.tl-block-meta { opacity: 0.9; margin-top: 4px; font-size: 12.5px; }
.tl-block--blue   { background: #185FA5; color: #fff; }
.tl-block--green  { background: #3B6D11; color: #fff; }
.tl-block--amber  { background: #B97812; color: #fff; }
.tl-block--rose   { background: #A32D2D; color: #fff; }
.tl-block--ghost  { background: #fff; color: #1a1a1a; border: 1px dashed #B97812; box-shadow: none; }
.tl-block--ghost .tl-block-meta { color: #B97812; }

/* ─── Timeline mockup — tablet + phone ───────────────────────────── */
@media (max-width: 1024px) {
    .tl-row { grid-template-columns: 130px 1fr; }
    .tl-name { font-size: 13px; padding: 14px 8px 14px 0; }
}
@media (max-width: 640px) {
    .tl-frame { padding: 14px 12px; border-radius: 14px; }
    .tl-header { padding-bottom: 12px; margin-bottom: 10px; }
    .tl-title { font-size: 14px; }
    .tl-pill { font-size: 11px; padding: 4px 10px; border-radius: 6px; }
    .tl-row { grid-template-columns: 90px 1fr; }
    .tl-name {
        font-size: 11.5px; padding: 10px 6px 10px 0; gap: 6px;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
    }
    .tl-name-initials { width: 24px; height: 24px; font-size: 10px; }
    .tl-track { min-height: 54px; }
    .tl-tick { font-size: 10px; }
    .tl-block { padding: 6px 8px; border-radius: 6px; font-size: 10.5px; top: 6px; bottom: 6px; }
    .tl-block-title { font-size: 11.5px; }
    .tl-block-meta { font-size: 10px; margin-top: 2px; }
    /* On the smallest screens the wider time labels would clash with the
     * track padding, so render them mid-hour-ish. */
    .tl-row--head .tl-track { padding-top: 0; padding-bottom: 6px; }
}
@media (max-width: 380px) {
    .tl-row { grid-template-columns: 76px 1fr; }
    .tl-name-initials { display: none; }
    .tl-block-meta { display: none; }
}

/* Browser mockup */
.hero-visual { max-width: 900px; margin: 0 auto; }
.hero-browser { background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.browser-dots { display: flex; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.browser-content { padding: 0; }
.dash-preview { display: flex; min-height: 340px; font-size: 11px; }
.dash-sidebar { width: 170px; background: var(--navy); padding: 14px 0; flex-shrink: 0; display: flex; flex-direction: column; }
.dash-logo { padding: 0 14px; margin-bottom: 16px; }
.dash-logo img { height: 18px; width: auto; display: block; }
.dash-nav-items { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.dash-nav-item { display: flex; align-items: center; gap: 7px; padding: 6px 14px; color: rgba(255,255,255,0.5); font-size: 11px; border-left: 2px solid transparent; }
.dash-nav-item.active { color: var(--blue-light); background: rgba(79,168,232,0.1); border-left-color: var(--blue-light); }
.nav-dot { width: 6px; height: 6px; border-radius: 2px; background: currentColor; opacity: 0.5; flex-shrink: 0; }
.dash-nav-sec { font-size: 9px; color: rgba(255,255,255,0.2); padding: 10px 14px 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-user { padding: 10px 14px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; margin-top: auto; }
.dash-avatar { width: 24px; height: 24px; border-radius: 50%; background: #1a3a5c; color: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 600; flex-shrink: 0; }
.dash-username { font-size: 10px; color: rgba(255,255,255,0.7); }
.dash-role { font-size: 9px; color: rgba(255,255,255,0.3); }

.dash-main { flex: 1; background: var(--beige); display: flex; flex-direction: column; overflow: hidden; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; background: #fff; border-bottom: 1px solid var(--border); }
.dash-page-title { font-size: 12px; font-weight: 600; }
.dash-page-sub { font-size: 10px; color: var(--text-muted); }
.dash-topbar-btns { display: flex; gap: 6px; }
.dash-btn-outline { font-size: 9px; padding: 4px 8px; border: 1px solid var(--border); border-radius: 5px; color: var(--text); }
.dash-btn-primary { font-size: 9px; padding: 4px 8px; background: var(--blue); color: #fff; border-radius: 5px; }

.dash-content { padding: 12px 16px; flex: 1; overflow: hidden; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.dash-stat { background: #fff; border-radius: 6px; padding: 8px 10px; border: 1px solid var(--border); }
.stat-label { font-size: 9px; color: var(--text-muted); margin-bottom: 3px; }
.stat-val { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-delta { font-size: 9px; color: var(--text-muted); margin-top: 3px; }
.stat-delta.up { color: var(--green); }
.stat-delta.warn { color: var(--amber); }

.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; }
.dash-card { background: #fff; border-radius: 6px; border: 1px solid var(--border); overflow: hidden; }
.dash-card-head { font-size: 10px; font-weight: 600; padding: 8px 10px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
.dash-card-head span { color: var(--blue); font-weight: 500; }

.dash-table { width: 100%; border-collapse: collapse; font-size: 9px; }
.dash-table td { padding: 5px 10px; border-bottom: 1px solid var(--border); color: var(--text); }
.dash-table tr:last-child td { border-bottom: none; }
.badge-g { background: var(--green-bg); color: var(--green); font-size: 8px; padding: 1px 5px; border-radius: 99px; font-weight: 500; }
.badge-a { background: var(--amber-bg); color: var(--amber); font-size: 8px; padding: 1px 5px; border-radius: 99px; font-weight: 500; }
.badge-b { background: var(--blue-bg); color: var(--blue); font-size: 8px; padding: 1px 5px; border-radius: 99px; font-weight: 500; }

.dash-notif { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-bottom: 1px solid var(--border); font-size: 9px; }
.dash-notif:last-child { border-bottom: none; }
.dot-red { width: 6px; height: 6px; border-radius: 50%; background: #E24B4A; flex-shrink: 0; }
.dot-amber { width: 6px; height: 6px; border-radius: 50%; background: #EF9F27; flex-shrink: 0; }
.dot-blue { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ─── Social proof ─── */
.social-proof { padding: 56px 0; border-bottom: 1px solid var(--border); }
.social-proof p { text-align: center; font-size: 15px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 500; margin-bottom: 28px; }
.proof-stats { display: flex; justify-content: center; gap: 56px; }
.proof-stats div { font-size: 16px; color: var(--text-muted); text-align: center; }
.proof-stats strong { color: var(--navy); font-weight: 800; font-size: 40px; display: block; line-height: 1.1; margin-bottom: 6px; letter-spacing: -1px; }

/* ─── Sections ─── */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); }
.section-beige { background: var(--beige); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header.light h2, .section-header.light p { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.6); }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 12px; }
.section-header.light .section-tag { color: var(--blue-light); }
.section-header h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--text-muted); }

/* ─── Problems ─── */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.problem-icon { font-size: 28px; margin-bottom: 12px; }
.problem-card h3,
.problem-card .card-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ─── Features ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px; }
.feature-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card h3,
.feature-card .card-title { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── Certificate verification ─── */
.cert-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cert-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cert-preview { background: #fff; border: 1px solid var(--border); border-radius: 12px; width: 280px; overflow: hidden; position: relative; box-shadow: 0 8px 30px rgba(0,0,0,0.06); display: flex; }
.cert-strip { width: 16px; background: #E8634A; flex-shrink: 0; }
.cert-body { padding: 20px; flex: 1; }
.cert-qr { position: absolute; bottom: 12px; right: 12px; }
.cert-verify-card { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #97C459; border-radius: 10px; padding: 12px 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.cert-verify-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.cert-text h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.cert-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.cert-features { display: flex; flex-direction: column; gap: 8px; }
.cert-feat { font-size: 15px; display: flex; align-items: center; gap: 8px; }
.cert-feat span { color: var(--green); font-weight: 600; }

/* ─── Steps ─── */
.steps { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 500px; margin: 0 auto; }
.step { display: flex; align-items: flex-start; gap: 20px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.step-content h3,
.step-content .card-title { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: 15px; color: var(--text-muted); }
.step-line { width: 2px; height: 32px; background: var(--border); margin-left: 19px; }

/* ─── Portals ─── */
.portals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.portal-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.portal-header { padding: 16px; }
.portal-label { font-size: 14px; font-weight: 600; }
.portal-body { padding: 20px; }
.portal-body h3,
.portal-body .card-title { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.portal-body ul { list-style: none; }
.portal-body li { font-size: 14px; color: var(--text-muted); padding: 4px 0; padding-left: 16px; position: relative; }
.portal-body li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 11px; }

/* ─── WordPress ─── */
.wp-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.wp-text h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.wp-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.wp-features { display: flex; flex-direction: column; gap: 8px; }
.wp-feat { font-size: 15px; display: flex; align-items: center; gap: 8px; }
.wp-feat span { color: var(--green); font-weight: 600; }

.widget-preview { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; max-width: 360px; margin: 0 auto; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.widget-header { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; }
.widget-cal { padding: 14px 18px; }
.cal-month { font-size: 13px; font-weight: 600; text-align: center; margin-bottom: 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day { height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 12px; cursor: pointer; position: relative; }
.cal-day.past { color: #ccc; }
.cal-day.selected { background: var(--blue); color: #fff; }
.cal-day.dot-green::after, .cal-day.dot-orange::after { content: ''; width: 4px; height: 4px; border-radius: 50%; position: absolute; bottom: 3px; }
.cal-day.dot-green::after { background: var(--green); }
.cal-day.dot-orange::after { background: var(--amber); }
.widget-session { padding: 12px 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }
.widget-book { padding: 6px 14px; background: var(--blue); color: #fff; border-radius: 6px; font-size: 12px; font-weight: 600; }

/* ─── Pricing ─── */
/* Flex-rij i.p.v. 4-koloms grid: kaarten zijn breder en op smalle schermen
   scrolt de rij horizontaal (padding-top houdt de "Meest gekozen"-badge vrij,
   want overflow-x knipt anders overflow-y mee). */
.pricing-tiers { display: flex; gap: 20px; overflow-x: auto; padding: 16px 4px 14px; scroll-snap-type: x proximity; }
.pricing-card { flex: 1 0 300px; scroll-snap-align: start; background: #fff; border-radius: var(--radius); padding: 28px; position: relative; display: flex; flex-direction: column; }
/* Bredere container voor de prijzensectie zodat vier bredere kaarten op desktop
   passen; smaller dan dat scrolt de rij horizontaal. */
#pricing > .container { max-width: 1360px; }
.pricing-card-popular { border: 2px solid var(--blue); box-shadow: 0 4px 20px rgba(24,95,165,0.15); }
.pricing-popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 14px; border-radius: 99px; white-space: nowrap; }
.pricing-name { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 4px; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-list { list-style: none; margin-bottom: 24px; flex: 1; }
.pricing-list li { font-size: 15px; padding: 6px 0 6px 20px; position: relative; color: var(--text-muted); }
.pricing-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 600; }

/* ─── CTA ─── */
.cta-block { text-align: center; max-width: 600px; margin: 0 auto; padding: 40px 0; }
.cta-block h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.cta-block p { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; }
.cta-form { display: flex; flex-direction: column; gap: 10px; max-width: 400px; margin: 0 auto; }
.cta-form input, .cta-form select { padding: 13px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; background: #fff; }
.cta-form input:focus, .cta-form select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,95,165,0.15); }

/* ─── Footer ─── */
.footer { background: var(--navy); padding: 48px 0 24px; color: rgba(255,255,255,0.5); }
.footer-inner { display: flex; flex-direction: column; gap: 32px; }
.footer-logo { margin-bottom: 8px; }
.footer-logo img { height: 32px; width: auto; display: block; }
.footer p { font-size: 14px; }
.footer-links { display: flex; gap: 60px; }
.footer-links h3 { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; padding: 3px 0; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .hero h1 { font-size: 36px; }
    .hero-sub { font-size: 18px; }
    .problem-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .portals-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-block { grid-template-columns: 1fr; gap: 32px; }
    .wp-block { grid-template-columns: 1fr; gap: 32px; }
    .koppelingen-grid { grid-template-columns: repeat(2, 1fr) !important; }
    /* Prijskaarten-rij full-bleed + gecentreerde carousel op smalle schermen:
       de rij breekt uit de 24px container-padding, de eerste kaart staat
       gecentreerd (met een glimp van de volgende), en elke kaart snapt naar
       het midden. De padding-inline is de centreer-lead-in, geen zij-gutter. */
    .pricing-tiers { margin-left: -24px; margin-right: -24px; padding-inline: calc((100% - 300px) / 2); scroll-snap-type: x mandatory; }
    .pricing-card { scroll-snap-align: center; }
    .dash-sidebar { display: none; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .proof-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 640px) {
    .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 28px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .problem-grid, .features-grid, .portals-grid, .koppelingen-grid { grid-template-columns: 1fr; }
    .mockup-split { grid-template-columns: 1fr !important; }
    .mockup-split > *:first-child { order: 0 !important; }
    .section-header h2 { font-size: 28px; }
    .hero { padding: 100px 0 40px; }
    .section { padding: 60px 0; }
    .footer-links { flex-direction: column; gap: 24px; }
}