/* =====================================================================
   Openbare website (facturatie.fpcoding.nl)

   Staat bewust los van app.css: de omgeving is een werkinterface, dit is
   een verkooppagina. Wel dezelfde accentkleur en dezelfde vorm-taal, zodat
   het na het inloggen niet als een ander product voelt.

   Eén vaste weergave (geen licht/donker-schakelaar): de pagina wisselt zelf
   tussen donkere en lichte secties.
   ===================================================================== */

:root {
    --ink: #0E1116;
    --ink-2: #3B4149;
    --muted: #6A717C;
    --paper: #ffffff;
    --tint: #F4F6F8;
    --line: #E4E7EC;
    --line-soft: #EDF0F3;

    --blue: #186FBB;
    --blue-dark: #125C9C;
    --blue-light: #5AA6E8;
    --blue-soft: #EAF2FA;

    --green: #0E9F6E;
    --red: #E02424;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --wrap: 1180px;
    --gutter: clamp(20px, 5vw, 40px);
    --section-y: clamp(72px, 9vw, 128px);

    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);

    --shadow-sm: 0 1px 2px rgba(14, 17, 22, .06), 0 1px 3px rgba(14, 17, 22, .04);
    --shadow: 0 10px 30px rgba(14, 17, 22, .09), 0 2px 8px rgba(14, 17, 22, .05);
    --shadow-lg: 0 30px 70px rgba(14, 17, 22, .22);
}

/* ── Basis ─────────────────────────────────────────────────────────── */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.site {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-2);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--ink); font-weight: 660; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.125rem; line-height: 1.3; letter-spacing: -.015em; }
p { text-wrap: pretty; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
em { font-style: normal; }

.ic { flex-shrink: 0; display: inline-block; vertical-align: -.14em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
    position: absolute; left: -9999px; top: 8px; z-index: 100;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip:focus { left: 16px; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ── Knoppen ───────────────────────────────────────────────────────── */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; border: 1px solid transparent; border-radius: 999px;
    font-size: .95rem; font-weight: 600; line-height: 1.2; white-space: nowrap;
    transition: background .16s var(--ease), border-color .16s var(--ease),
                color .16s var(--ease), transform .12s var(--ease), box-shadow .16s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-sm { padding: 8px 15px; font-size: .875rem; }
.btn-block { display: flex; width: 100%; }

.btn-solid { background: var(--blue); color: #fff; box-shadow: 0 1px 2px rgba(18, 92, 156, .3); }
.btn-solid:hover { background: var(--blue-dark); }

.btn-line { border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn-line:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }

/* Op een lichte ondergrond keert de omlijnde knop om. */
.section:not(.section-dark) .btn-line,
.faq-intro .btn-line { border-color: var(--line); color: var(--ink); }
.section:not(.section-dark) .btn-line:hover,
.faq-intro .btn-line:hover { background: var(--tint); border-color: #CFD5DD; }

.btn-ghost { color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: var(--tint); }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.link-arrow .ic { transition: transform .18s var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ── Navigatie ─────────────────────────────────────────────────────── */

.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 12px rgba(14, 17, 22, .05); }

.nav-inner { display: flex; align-items: center; gap: 24px; min-height: 68px; }

.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo img { height: 26px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu > a {
    color: var(--ink-2); font-size: .95rem; font-weight: 550;
    padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-menu > a:hover { color: var(--ink); text-decoration: none; }
.nav-menu > a.is-active { color: var(--ink); border-bottom-color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 6px; }

.nav-toggle {
    display: none; width: 42px; height: 42px; border: 1px solid var(--line);
    border-radius: var(--radius-sm); background: var(--paper); place-items: center;
}
.nav-toggle-bars { display: block; width: 18px; }
.nav-toggle-bars span {
    display: block; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle-bars span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-toggle { display: grid; }
    .nav-menu {
        position: absolute; left: 0; right: 0; top: 100%;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--paper); border-bottom: 1px solid var(--line);
        padding: 8px var(--gutter) 20px;
        box-shadow: var(--shadow); display: none;
    }
    .nav-menu.is-open { display: flex; }
    .nav-menu > a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
    .nav-menu > a.is-active { border-bottom-color: var(--line-soft); color: var(--blue); }
    .nav-actions { flex-direction: column; align-items: stretch; margin: 16px 0 0; gap: 8px; }
    .nav-actions .btn { width: 100%; }
    .nav-actions .btn-ghost { border-color: var(--line); }
}

/* ── Secties ───────────────────────────────────────────────────────── */

.section { padding: var(--section-y) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, .74); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 660px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-head-left { margin-left: 0; text-align: left; }
.section-head h2 { margin-bottom: 14px; }

.eyebrow {
    font-size: .78rem; font-weight: 680; letter-spacing: .14em; text-transform: uppercase;
    color: var(--blue-light); margin-bottom: 16px;
}
.eyebrow-dark { color: var(--blue); }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.55; color: rgba(255, 255, 255, .72); }
.lede-dark { color: var(--muted); }

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
    background: var(--ink);
    color: rgba(255, 255, 255, .74);
    padding: clamp(56px, 8vw, 104px) 0 clamp(72px, 9vw, 120px);
    position: relative;
    overflow: hidden;
}
/* Eén subtiele lichtval vanuit rechtsboven — geen kleurverloop-behang. */
.hero::before {
    content: ''; position: absolute; top: -260px; right: -180px;
    width: 720px; height: 720px; border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 111, 187, .30), transparent 62%);
    pointer-events: none;
}

.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { color: var(--blue-light); }
.hero .lede { max-width: 52ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; font-size: .9rem; color: rgba(255, 255, 255, .6); }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-light);
}

/* ── Productafbeelding (nagebouwd in HTML, geen screenshot) ────────── */

.shot {
    background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .12);
    transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
    transform-origin: left center;
}
.shot-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 11px 14px; background: #F1F3F5; border-bottom: 1px solid var(--line);
}
.shot-bar > span { width: 9px; height: 9px; border-radius: 50%; background: #D3D8DE; }
.shot-url {
    flex: 1; margin-left: 10px; background: #fff; border: 1px solid var(--line);
    border-radius: 6px; font-size: .68rem; color: var(--muted); padding: 4px 10px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.shot-body { padding: 20px; }
.shot-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.shot-title { font-size: 1.05rem; font-weight: 660; color: var(--ink); line-height: 1.2; }
.shot-sub { font-size: .78rem; color: var(--muted); }
.shot-btn {
    background: var(--blue); color: #fff; font-size: .72rem; font-weight: 600;
    padding: 7px 12px; border-radius: 6px;
}

.shot-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.shot-stats > div {
    border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 12px;
    background: #FBFCFD;
}
.shot-stats span { display: block; font-size: .68rem; color: var(--muted); margin-bottom: 3px; }
.shot-stats strong { font-size: .98rem; color: var(--ink); font-weight: 660; letter-spacing: -.02em; }
.is-red { color: var(--red) !important; }
.is-green { color: var(--green) !important; }

.shot-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.shot-table td { padding: 10px 6px; border-top: 1px solid var(--line-soft); color: var(--ink-2); }
.shot-table tr td:first-child { color: var(--muted); font-variant-numeric: tabular-nums; padding-left: 0; }
.shot-table tr td:last-child { text-align: right; padding-right: 0; }
.shot-table .num { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }

.pill {
    display: inline-block; padding: 3px 9px; border-radius: 999px;
    font-size: .68rem; font-weight: 620; letter-spacing: .01em; white-space: nowrap;
}
.pill-green { background: #E3F5EE; color: #0B7C57; }
.pill-blue { background: var(--blue-soft); color: var(--blue-dark); }
.pill-red { background: #FCE8E8; color: #B91C1C; }
.pill-grey { background: #EEEFF1; color: #5B6169; }

/* ── Feitenbalk ────────────────────────────────────────────────────── */

.facts { background: var(--ink); padding-bottom: clamp(40px, 5vw, 64px); }
.facts-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12); padding-top: clamp(32px, 4vw, 48px);
}
.facts-grid > div { display: flex; flex-direction: column; gap: 4px; }
.facts-grid strong {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 680; color: #fff;
    letter-spacing: -.03em; line-height: 1;
}
.facts-grid span { font-size: .88rem; color: rgba(255, 255, 255, .55); max-width: 22ch; }

/* ── Twee kolommen ─────────────────────────────────────────────────── */

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split-reverse .split-copy { order: 2; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy p + p { margin-top: 16px; }
.split-copy em { color: var(--blue); font-weight: 600; }
.section-dark .split-copy em { color: var(--blue-light); }
.split-more { margin-top: 24px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); }
.two-col h2 { margin-bottom: 20px; font-size: clamp(1.4rem, 2.4vw, 1.85rem); }

/* ── Vervangen (van → naar) ────────────────────────────────────────── */

.swap { border-top: 1px solid var(--line); }
.swap li { padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.swap-from {
    display: block; color: var(--muted); font-size: .92rem; text-decoration: line-through;
    text-decoration-color: rgba(224, 36, 36, .55); text-decoration-thickness: 1.5px;
}
.swap-to {
    display: flex; gap: 10px; align-items: flex-start;
    color: var(--ink); font-weight: 600; font-size: 1rem;
}
.swap-to::before { content: '→'; color: var(--blue); flex-shrink: 0; }

/* ── Specificatielijst (modules) ───────────────────────────────────── */

.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(28px, 4vw, 56px); }
.specs li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px 0; border-top: 1px solid var(--line);
}
.specs li > i {
    display: grid; place-items: center; width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 10px; background: var(--paper); border: 1px solid var(--line); color: var(--blue);
}
.specs li > div { flex: 1; min-width: 0; }
.specs h3 { margin-bottom: 3px; }
.specs p { font-size: .9rem; color: var(--muted); }
.tag {
    flex-shrink: 0; font-size: .72rem; font-weight: 620; color: var(--blue-dark);
    background: var(--blue-soft); border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.tag-base { color: var(--muted); background: #E7EAEE; }

/* ── Stappen ───────────────────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); counter-reset: step; }
.steps li { border-top: 2px solid var(--ink); padding-top: 20px; }
.step-n {
    display: block; font-size: .8rem; font-weight: 700; color: var(--blue);
    letter-spacing: .1em; margin-bottom: 12px;
}
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: .95rem; }

/* ── Vinklijsten ───────────────────────────────────────────────────── */

.ticks { margin-top: 24px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; }
.ticks li::before {
    content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
    background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23186FBB' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.section-dark .ticks li::before, .ticks-dark li::before {
    background-color: rgba(90, 166, 232, .16);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235AA6E8' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.ticks-tight { margin-top: 18px; gap: 9px; }
.ticks-tight li { font-size: .92rem; }

/* ── Veldeditor-afbeelding ─────────────────────────────────────────── */

.fieldshot {
    background: #15191F; border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.fieldshot-head {
    padding: 13px 18px; border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .8rem; font-weight: 600; color: rgba(255, 255, 255, .6); letter-spacing: .02em;
}
.fieldshot ul { padding: 10px; display: grid; gap: 8px; }
.fieldshot li {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--radius-sm); padding: 13px 15px; color: #fff; font-size: .93rem; font-weight: 550;
}
.fieldshot li em {
    margin-left: auto; font-size: .72rem; font-weight: 600; color: var(--blue-light);
    background: rgba(90, 166, 232, .14); border-radius: 999px; padding: 3px 9px;
}
.fieldshot li.is-off { opacity: .42; }
.fieldshot li.is-off em { color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .1); }
.fieldshot .grip { color: rgba(255, 255, 255, .3); display: flex; }

/* ── Tarieven op de startpagina ────────────────────────────────────── */

.price-preview { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(24px, 4vw, 48px); align-items: start; }

.price-card {
    background: var(--ink); color: rgba(255, 255, 255, .7); border-radius: var(--radius-lg);
    padding: clamp(28px, 3.5vw, 40px); box-shadow: var(--shadow);
}
.price-card-label { font-size: .8rem; font-weight: 680; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-light); }
.price-card-amount {
    display: flex; align-items: baseline; gap: 8px; margin: 14px 0 10px;
    font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 680; color: #fff; letter-spacing: -.035em; line-height: 1;
}
.price-card-amount span { font-size: .95rem; font-weight: 500; color: rgba(255, 255, 255, .55); letter-spacing: 0; }
.price-card-tag { font-size: .95rem; margin-bottom: 26px; }
.price-card-note { margin-top: 14px; font-size: .8rem; color: rgba(255, 255, 255, .45); text-align: center; }

.price-side h3 { margin-bottom: 16px; }
.price-addons { border-top: 1px solid var(--line); }
.price-addons li {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .97rem;
}
.price-addons b { color: var(--ink); font-weight: 660; font-variant-numeric: tabular-nums; }
.price-addons small { font-weight: 500; color: var(--muted); }

/* ── Veelgestelde vragen ───────────────────────────────────────────── */

.faq-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-intro h2 { margin-bottom: 14px; }
.faq-intro p { color: var(--muted); margin-bottom: 24px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
    padding: 20px 0; cursor: pointer; list-style: none;
    font-weight: 620; color: var(--ink); font-size: 1.02rem; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236A717C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--blue); }
.faq details > p { padding-bottom: 22px; color: var(--muted); max-width: 62ch; }

/* ── Kop van een losse pagina ──────────────────────────────────────── */

.page-head {
    background: var(--ink); color: rgba(255, 255, 255, .72);
    padding: clamp(52px, 7vw, 88px) 0 clamp(56px, 7vw, 92px);
    position: relative; overflow: hidden;
}
.page-head::before {
    content: ''; position: absolute; top: -320px; left: 40%;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 111, 187, .26), transparent 62%);
    pointer-events: none;
}
.page-head .wrap { position: relative; }
.page-head h1 { color: #fff; margin-bottom: 20px; max-width: 16ch; }
.page-head .lede { max-width: 60ch; }

/* ── Functieblokken ────────────────────────────────────────────────── */

.feature-rows { display: grid; gap: clamp(48px, 7vw, 96px); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.feature-row-flip .feature-copy { order: 2; }
.feature-kicker {
    display: inline-flex; align-items: center; gap: 8px; color: var(--blue);
    font-size: .82rem; font-weight: 660; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px;
}
.feature-copy h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 14px; }
.feature-copy > p { color: var(--muted); }

.mini {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 18px 20px;
}
.mini-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    font-weight: 660; color: var(--ink); padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
    font-size: .98rem;
}
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px 0; }
.mini-grid span { display: block; font-size: .72rem; color: var(--muted); }
.mini-grid b { font-size: .92rem; color: var(--ink); font-weight: 620; }
.mini-rows { display: grid; gap: 9px; border-top: 1px solid var(--line-soft); padding-top: 14px; font-size: .85rem; color: var(--muted); }
.mini-rows > div { display: flex; align-items: center; gap: 10px; }
.mini .shot-table { margin-top: 6px; }
.mini-total {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
    font-size: .88rem; color: var(--muted);
}
.mini-total b { font-size: 1.15rem; color: var(--ink); font-weight: 680; letter-spacing: -.02em; }

.bars { display: grid; gap: 16px; padding-top: 16px; }
.bars > div { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 12px; font-size: .82rem; color: var(--muted); }
.bars i {
    display: block; height: 8px; border-radius: 999px; background: var(--blue);
    width: var(--w); min-width: 6px;
}
.bars i.is-red { background: var(--red); }
.bars b { color: var(--ink); font-variant-numeric: tabular-nums; font-weight: 620; }

/* ── Modulekaarten ─────────────────────────────────────────────────── */

.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.module-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px; display: flex; flex-direction: column;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #D5DBE2; }
.module-icon {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
    background: var(--blue-soft); color: var(--blue); margin-bottom: 16px;
}
.module-card h3 { margin-bottom: 8px; }
.module-card p { font-size: .92rem; color: var(--muted); }
.module-price {
    margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line-soft);
    font-size: .88rem; font-weight: 620; color: var(--ink) !important;
}

/* ── In ontwikkeling ───────────────────────────────────────────────── */

.roadmap { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); }
.roadmap h3 { margin-bottom: 6px; }
.roadmap-note { font-size: .87rem; color: var(--muted); margin-bottom: 18px; }
.roadmap ul { display: grid; gap: 12px; }
.roadmap li { display: flex; align-items: center; gap: 12px; font-size: .94rem; color: var(--ink-2); }
.roadmap li span {
    display: grid; place-items: center; width: 30px; height: 30px; flex-shrink: 0;
    border-radius: 8px; background: var(--paper); border: 1px solid var(--line); color: var(--muted);
}

/* ── Rekenhulp ─────────────────────────────────────────────────────── */

.section-calc { padding-top: clamp(48px, 6vw, 72px); }
.calc { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px, 3.5vw, 44px); align-items: start; }

.calc-block { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 30px); background: var(--paper); }
.calc-block + .calc-block { margin-top: 20px; }
.calc-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.calc-block-head h2 { font-size: 1.35rem; }
.calc-fixed { font-size: 1.2rem; font-weight: 680; color: var(--ink); letter-spacing: -.02em; }
.calc-fixed small { font-size: .8rem; font-weight: 500; color: var(--muted); }
.calc-hint { font-size: .85rem; color: var(--muted); }
.calc-block-tag { margin-top: 8px; color: var(--muted); font-size: .95rem; }

.calc-includes { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.calc-includes li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.calc-includes .ic { color: var(--blue); margin-top: 3px; }

.calc-addons { margin-top: 18px; display: grid; gap: 10px; }
.calc-addons input { position: absolute; opacity: 0; width: 0; height: 0; }
.calc-addons label {
    display: flex; align-items: flex-start; gap: 14px; cursor: pointer;
    border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 17px;
    transition: border-color .16s var(--ease), background .16s var(--ease), box-shadow .16s var(--ease);
}
.calc-addons label:hover { border-color: #C9D1DA; background: #FBFCFD; }
.calc-addon-mark {
    display: grid; place-items: center; width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
    border: 1.5px solid #C9D1DA; border-radius: 6px; color: transparent;
    transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.calc-addon-body { flex: 1; min-width: 0; }
.calc-addon-body b { display: block; color: var(--ink); font-weight: 640; font-size: .98rem; }
.calc-addon-body span { display: block; font-size: .88rem; color: var(--muted); margin-top: 3px; }
.calc-addon-price { font-weight: 660; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc-flag {
    font-size: .68rem; font-weight: 640; color: var(--blue-dark); background: var(--blue-soft);
    border-radius: 999px; padding: 2px 8px; margin-left: 8px; vertical-align: 1px;
}
.calc-addons input:checked + label { border-color: var(--blue); background: var(--blue-soft); box-shadow: inset 0 0 0 1px var(--blue); }
.calc-addons input:checked + label .calc-addon-mark { background: var(--blue); border-color: var(--blue); color: #fff; }
.calc-addons input:focus-visible + label { outline: 2px solid var(--blue); outline-offset: 3px; }

.calc-sum { position: sticky; top: 88px; }
.calc-sum-inner {
    background: var(--ink); color: rgba(255, 255, 255, .7); border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow);
}

.calc-switch {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; margin-bottom: 24px;
    background: rgba(255, 255, 255, .07); border-radius: 999px;
}
.calc-switch button {
    border: 0; background: transparent; color: rgba(255, 255, 255, .62); border-radius: 999px;
    padding: 9px 8px; font-size: .85rem; font-weight: 600; line-height: 1.15;
    transition: background .16s var(--ease), color .16s var(--ease);
}
.calc-switch button span { display: block; font-size: .66rem; font-weight: 500; opacity: .75; }
.calc-switch button.is-on { background: #fff; color: var(--ink); }

.calc-total-label { font-size: .78rem; font-weight: 680; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-light); }
.calc-total {
    display: flex; align-items: baseline; gap: 8px; margin: 10px 0 8px;
    font-size: clamp(2.4rem, 4.4vw, 3.1rem); font-weight: 680; color: #fff;
    letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums;
}
.calc-total small { font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, .55); letter-spacing: 0; }
.calc-total-note { font-size: .82rem; color: rgba(255, 255, 255, .5); }

.calc-lines { margin: 22px 0; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .12); border-bottom: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 10px; }
.calc-lines li { display: flex; justify-content: space-between; gap: 14px; font-size: .9rem; }
.calc-lines b { color: #fff; font-weight: 620; font-variant-numeric: tabular-nums; }

.calc-setup { font-size: .85rem; margin-bottom: 16px; color: rgba(255, 255, 255, .6); }
.calc-small { margin-top: 14px; font-size: .78rem; color: rgba(255, 255, 255, .45); text-align: center; }
.calc-range { margin-top: 24px; text-align: center; font-size: .9rem; color: var(--muted); }

/* ── Slotoproep ────────────────────────────────────────────────────── */

.cta { background: var(--ink); padding: clamp(64px, 8vw, 104px) 0; position: relative; overflow: hidden; }
.cta::before {
    content: ''; position: absolute; bottom: -320px; left: 50%; transform: translateX(-50%);
    width: 860px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 111, 187, .28), transparent 64%);
    pointer-events: none;
}
.cta-inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255, 255, 255, .68); }
.cta-inner .hero-cta { justify-content: center; }

/* ── Voettekst ─────────────────────────────────────────────────────── */

.foot { background: #090B0E; color: rgba(255, 255, 255, .55); padding: clamp(48px, 6vw, 72px) 0 28px; font-size: .92rem; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); }
.foot-brand img { height: 28px; width: auto; margin-bottom: 18px; }
.foot-brand p { max-width: 40ch; font-size: .9rem; line-height: 1.6; }

.foot-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.foot-links h2 { font-size: .78rem; font-weight: 680; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .38); margin-bottom: 4px; }
.foot-links a:not(.btn) { color: rgba(255, 255, 255, .62); font-size: .92rem; }
.foot-links a:not(.btn):hover { color: #fff; text-decoration: none; }
.foot-note { font-size: .82rem; color: rgba(255, 255, 255, .4); margin-top: 4px; }

.foot-bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
    margin-top: clamp(36px, 5vw, 56px); padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .82rem; color: rgba(255, 255, 255, .38);
}

/* ── Meebewegen ────────────────────────────────────────────────────── */

/* Het attribuut wordt door site.js gezet; zonder JavaScript staat alles er
   dus gewoon meteen. */
[data-reveal] { opacity: 0; transform: translateY(14px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }

@media (prefers-reduced-motion: reduce) {
    [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; transition: none; }
    .shot { transform: none; }
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Smaller ───────────────────────────────────────────────────────── */

@media (max-width: 1040px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-shot { display: none; }
    .calc { grid-template-columns: 1fr; }
    .calc-sum { position: static; }
    .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .split, .two-col, .price-preview, .faq-wrap, .feature-row { grid-template-columns: 1fr; }
    .split-reverse .split-copy, .feature-row-flip .feature-copy { order: 0; }
    .specs { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 28px; }
    .facts-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
    .section-head { text-align: left; margin-left: 0; }
}

@media (max-width: 620px) {
    body.site { font-size: 15.5px; }
    .facts-grid { grid-template-columns: 1fr; }
    .calc-includes, .mini-grid { grid-template-columns: 1fr; }
    .hero-cta .btn { width: 100%; }
    .foot-top { grid-template-columns: 1fr; }
    .bars > div { grid-template-columns: 78px 1fr auto; }
    .calc-addons label { flex-wrap: wrap; }
    .calc-addon-price { margin-left: 36px; }
}
