/* ==========================================================================
   allesovernl.com - hoofdstylesheet
   Geen framework: alleen wat de site echt gebruikt.
   ========================================================================== */

/* --- Design tokens -------------------------------------------------------- */
:root {
    --c-bg:          #ffffff;
    --c-bg-soft:     #f6f8fa;
    --c-bg-elevated: #ffffff;
    --c-border:      #e3e8ee;
    --c-text:        #17212b;
    --c-text-soft:   #5b6b7c;
    --c-brand:       #0b6b4f;   /* NL-groen, rustiger dan oranje */
    --c-brand-dark:  #084d39;
    --c-brand-soft:  #e6f4ef;
    --c-accent:      #f26a1b;   /* oranje accent, spaarzaam gebruikt */
    --c-focus:       #1a73e8;

    --radius:    12px;
    --radius-sm: 8px;
    --shadow:    0 1px 2px rgba(16, 24, 40, .06), 0 4px 12px rgba(16, 24, 40, .05);
    --shadow-lg: 0 4px 8px rgba(16, 24, 40, .06), 0 16px 32px rgba(16, 24, 40, .09);

    --wrap: 1180px;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --c-bg:          #10151b;
        --c-bg-soft:     #161d25;
        --c-bg-elevated: #1a222c;
        --c-border:      #2a3542;
        --c-text:        #e8edf3;
        --c-text-soft:   #9aabbd;
        --c-brand:       #3fbc92;
        --c-brand-dark:  #6fd4b0;
        --c-brand-soft:  #14342a;
        --shadow:    0 1px 2px rgba(0, 0, 0, .4);
        --shadow-lg: 0 16px 32px rgba(0, 0, 0, .45);
    }
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}

/* Vangnet tegen horizontaal schuiven. Op <html> in plaats van <body>, want
   overflow op <body> breekt `position: sticky` van de inhoudsopgave. */
html { overflow-x: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--c-brand-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-brand); }

h1, h2, h3 { line-height: 1.25; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.95rem); }
h3 { font-size: 1.12rem; }
p  { margin: 0 0 1rem; }

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

.skip-link {
    position: absolute; left: -9999px;
    background: var(--c-brand-dark); color: #fff;
    padding: .7rem 1.2rem; z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; top: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --- Header --------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 40;
    background: color-mix(in srgb, var(--c-bg) 88%, transparent);
    backdrop-filter: saturate(1.6) blur(10px);
    border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
    display: flex; align-items: center; gap: 1.5rem;
    min-height: 74px;
}

.brand {
    display: inline-flex; align-items: center; gap: .6rem;
    text-decoration: none; color: var(--c-text); flex-shrink: 0;
}

/* Beeldmerk: tulp in een afgerond vierkant — herkenbaar Nederlands zonder
   in clichés te vervallen, en het geeft de tekstlogo een visueel anker. */
.brand__logo {
    display: grid; place-items: center; flex-shrink: 0;
    width: 2.35rem; height: 2.35rem;
    background: var(--c-brand); border-radius: 10px;
    color: #fff;
    transition: transform .18s ease, background .18s;
}
.brand:hover .brand__logo { background: var(--c-brand-dark); transform: rotate(-4deg); }
.brand__logo svg { width: 1.3rem; height: 1.3rem; }

.brand__text {
    display: flex; flex-direction: column;
    line-height: 1.12;
}
.brand__name {
    font-weight: 800; font-size: 1.16rem; letter-spacing: -.025em;
    display: flex; align-items: baseline; gap: .3rem;
}
.brand__mark { color: var(--c-brand); }
.brand__tld  { color: var(--c-text-soft); font-weight: 600; font-size: .74em; }
.brand__tagline {
    font-size: .68rem; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--c-text-soft);
}

/* In de footer mag het merk iets ruimer staan. */
.site-footer .brand__logo { width: 2.6rem; height: 2.6rem; }
.site-footer .brand__logo svg { width: 1.45rem; height: 1.45rem; }

@media (max-width: 420px) {
    .brand__tagline { display: none; }
    .brand__logo { width: 2.1rem; height: 2.1rem; }
    .brand__name { font-size: 1.05rem; }
}

.nav { margin-left: auto; }
.nav__list {
    display: flex; align-items: center; gap: .2rem;
    list-style: none; margin: 0; padding: 0;
}
.nav__link {
    display: block; padding: .5rem .8rem;
    border-radius: var(--radius-sm);
    color: var(--c-text-soft); text-decoration: none;
    font-size: .94rem; font-weight: 550; white-space: nowrap;
    transition: background .15s, color .15s;
}
.nav__link:hover { background: var(--c-bg-soft); color: var(--c-text); }
.nav__link[aria-current="page"] { color: var(--c-brand-dark); background: var(--c-brand-soft); }

.nav-toggle {
    display: none; margin-left: auto;
    background: none; border: 1px solid var(--c-border);
    border-radius: var(--radius-sm); padding: .45rem .6rem;
    cursor: pointer; color: var(--c-text);
}

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav {
        display: none; position: absolute; inset-inline: 0; top: 100%;
        background: var(--c-bg); border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-lg); padding: .5rem 20px 1rem;
    }
    .nav.is-open { display: block; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav__link { padding: .8rem .6rem; border-radius: 0; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
    padding: clamp(2.5rem, 1rem + 6vw, 5rem) 0 clamp(2rem, 1rem + 3vw, 3.5rem);
    background:
        radial-gradient(60rem 24rem at 12% -10%, var(--c-brand-soft), transparent 60%),
        var(--c-bg);
    text-align: center;
}
.hero__title { margin-bottom: .4rem; }
.hero__title em { font-style: normal; color: var(--c-brand); }
.hero__lead {
    max-width: 42rem; margin: 0 auto 2rem;
    font-size: clamp(1rem, .95rem + .4vw, 1.16rem); color: var(--c-text-soft);
}

.searchbar {
    display: flex; gap: .5rem; max-width: 38rem; margin: 0 auto;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border); border-radius: 999px;
    padding: .4rem .4rem .4rem 1.2rem; box-shadow: var(--shadow);
}
.searchbar:focus-within { border-color: var(--c-brand); box-shadow: var(--shadow-lg); }
.searchbar__input {
    flex: 1; border: 0; background: none; font: inherit; color: var(--c-text);
    min-width: 0; padding: .55rem 0;
}
.searchbar__input:focus { outline: none; }
.searchbar__input::placeholder { color: var(--c-text-soft); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    border: 1px solid transparent; border-radius: 999px;
    padding: .6rem 1.3rem; font: inherit; font-weight: 600; font-size: .95rem;
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: background .15s, transform .1s;
}
.btn--primary { background: var(--c-brand); color: #fff; }
.btn--primary:hover { background: var(--c-brand-dark); color: #fff; }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost {
    background: transparent; color: var(--c-text);
    border-color: var(--c-border);
}
.btn--ghost:hover { background: var(--c-bg-soft); color: var(--c-text); }

.hero__suggest {
    margin-top: 1.2rem; font-size: .88rem; color: var(--c-text-soft);
    display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center; align-items: center;
}
.chip {
    display: inline-block; padding: .28rem .75rem;
    background: var(--c-bg-soft); border: 1px solid var(--c-border);
    border-radius: 999px; text-decoration: none; color: var(--c-text-soft);
    font-size: .85rem;
}
.chip:hover { background: var(--c-brand-soft); color: var(--c-brand-dark); border-color: var(--c-brand); }

/* --- Secties -------------------------------------------------------------- */
.section { padding: clamp(2.5rem, 1.5rem + 3vw, 4rem) 0; }
.section--soft { background: var(--c-bg-soft); border-block: 1px solid var(--c-border); }
.section__head { max-width: 44rem; margin-bottom: 2rem; }
.section__head p { color: var(--c-text-soft); margin: 0; }
.eyebrow {
    display: block; font-size: .78rem; font-weight: 700;
    letter-spacing: .09em; text-transform: uppercase;
    color: var(--c-brand); margin-bottom: .45rem;
}

/* --- Pijlers (grote kaarten) ---------------------------------------------- */
.pillars { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.pillar {
    display: flex; flex-direction: column;
    background: var(--c-bg-elevated); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 1.75rem;
    box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pillar__icon { font-size: 2rem; line-height: 1; margin-bottom: .8rem; }
.pillar__title { margin-bottom: .5rem; }
.pillar__title a { color: inherit; text-decoration: none; }
.pillar__title a:hover { color: var(--c-brand); }
.pillar__lead { color: var(--c-text-soft); font-size: .96rem; }

.linklist { list-style: none; margin: .4rem 0 1.4rem; padding: 0; }
.linklist li + li { margin-top: .1rem; }
.linklist a {
    display: block; padding: .42rem .6rem; margin-inline: -.6rem;
    border-radius: var(--radius-sm);
    text-decoration: none; color: var(--c-text); font-size: .94rem;
}
.linklist a::before { content: "→"; color: var(--c-brand); margin-right: .55rem; }
.linklist a:hover { background: var(--c-brand-soft); color: var(--c-brand-dark); }

/* Nog niet gepubliceerd: geen link, dus geen dode URL of soft 404. */
.linklist__soon {
    display: flex; align-items: baseline; gap: .5rem;
    padding: .42rem 0; font-size: .94rem;
    color: var(--c-text-soft);
}
.linklist__soon::before { content: "·"; color: var(--c-border); margin-right: .3rem; }
.linklist__soon em {
    font-style: normal; font-size: .7rem; font-weight: 650;
    letter-spacing: .04em; text-transform: uppercase;
    color: var(--c-text-soft); background: var(--c-bg-soft);
    border: 1px solid var(--c-border); border-radius: 999px;
    padding: .1rem .5rem; margin-left: auto; white-space: nowrap;
}

.pillar__stat {
    margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--c-border);
    display: flex; align-items: baseline; gap: .6rem;
}
.pillar__stat b { font-size: 1.5rem; color: var(--c-brand); letter-spacing: -.02em; }
.pillar__stat span { font-size: .84rem; color: var(--c-text-soft); }

/* --- Compacte kaarten ----------------------------------------------------- */
.cards { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

.card {
    background: var(--c-bg-elevated); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 1.4rem;
    transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__icon { font-size: 1.5rem; line-height: 1; margin-bottom: .55rem; }
.card__title { margin-bottom: .35rem; font-size: 1.05rem; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--c-brand); }
.card__lead { color: var(--c-text-soft); font-size: .9rem; margin-bottom: .7rem; }
.card .linklist a { font-size: .89rem; padding: .3rem .6rem; }

/* --- Blog ----------------------------------------------------------------- */
.posts { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.post {
    display: flex; flex-direction: column;
    background: var(--c-bg-elevated); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 1.35rem;
}
.post:hover { box-shadow: var(--shadow); }
.post__meta {
    display: flex; align-items: center; gap: .6rem;
    font-size: .78rem; color: var(--c-text-soft); margin-bottom: .6rem;
}
.post__cat {
    background: var(--c-brand-soft); color: var(--c-brand-dark);
    padding: .18rem .6rem; border-radius: 999px; font-weight: 650;
}
.post__title { font-size: 1.04rem; margin-bottom: .4rem; }
.post__title a { color: inherit; text-decoration: none; }
.post__title a:hover { color: var(--c-brand); }
.post__excerpt { font-size: .9rem; color: var(--c-text-soft); margin: 0; }

/* --- Subpagina's ---------------------------------------------------------- */
.breadcrumb { padding: 1rem 0 0; font-size: .86rem; color: var(--c-text-soft); }
.breadcrumb ol {
    display: flex; flex-wrap: wrap; gap: .4rem;
    list-style: none; margin: 0; padding: 0;
}
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--c-border); }
.breadcrumb a { color: var(--c-text-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-brand); text-decoration: underline; }

.page-head {
    padding: 1.5rem 0 clamp(1.75rem, 1rem + 2vw, 2.75rem);
    border-bottom: 1px solid var(--c-border);
    background: radial-gradient(48rem 18rem at 8% -30%, var(--c-brand-soft), transparent 65%);
}
.page-head__icon { font-size: 2.2rem; line-height: 1; margin-bottom: .6rem; }
.page-head__lead {
    max-width: 44rem; font-size: clamp(1rem, .95rem + .35vw, 1.12rem);
    color: var(--c-text-soft); margin: 0;
}

/* Tekstkolom binnen .layout: daar staat een zijbalk naast die de breedte
   al begrenst. */
.prose { max-width: 44rem; }

/* Staat .prose direct in een .wrap (pagina zonder zijbalk), dan gebruikt hij
   de volledige containerbreedte — gelijk aan de homepage. Alleen lopende
   tekst houdt een leesbare regellengte; koppen en blokken lopen wél door. */
.wrap > .prose { max-width: none; }
.wrap > .prose > p,
.wrap > .prose > ul,
.wrap > .prose > ol { max-width: 46rem; }

.prose__meta {
    color: var(--c-text-soft); font-size: .9rem;
    padding-bottom: 1.25rem; border-bottom: 1px solid var(--c-border);
}

/* Lange, onbreekbare tekst (URL's, e-mailadressen, code) mag de kolom niet
   oprekken — anders schuift de hele pagina horizontaal. `anywhere` breekt ook
   midden in een URL af, wat `break-word` bij een lange host niet doet. */
.prose,
.prose p, .prose li, .prose a, .prose code, .prose td, .prose th {
    overflow-wrap: anywhere;
}

.prose code {
    background: var(--c-bg-soft); border: 1px solid var(--c-border);
    border-radius: 4px; padding: .08em .35em;
    font-size: .88em; word-break: break-all;
}

/* Anker-offset, zodat een kop niet onder de sticky header verdwijnt. */
.prose [id] { scroll-margin-top: 6rem; }

/* --- Inhoudsopgave (zijbalk op tekstpagina's) ----------------------------- */
.toc {
    background: var(--c-bg-soft); border: 1px solid var(--c-border);
    border-radius: var(--radius);
    /* Smallere zijpadding: de links hebben zelf .5rem, samen lijnt dat uit. */
    padding: 1.25rem .85rem;
    font-size: .9rem;
    /* Zonder min-width:0 weigert een flex/grid-item te krimpen onder de
       breedte van zijn inhoud — dat veroorzaakte overflow op mobiel. */
    min-width: 0; max-width: 100%;
}
.toc h2 {
    font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--c-text-soft); margin: 0 0 .8rem;
    padding-inline: .5rem;   /* lijnt uit met de links eronder */
}
.toc ol {
    list-style: none; counter-reset: toc;
    margin: 0; padding: 0;
}
.toc li { counter-increment: toc; }
.toc a {
    display: flex; gap: .6rem; padding: .38rem .5rem;
    border-radius: var(--radius-sm);
    color: var(--c-text-soft); text-decoration: none; line-height: 1.4;
    /* Titels breken netjes op woordgrenzen, niet middenin een woord. */
    overflow-wrap: break-word;
}
.toc a::before {
    content: counter(toc) "."; flex-shrink: 0;
    color: var(--c-brand); font-variant-numeric: tabular-nums;
    font-size: .82em; padding-top: .12em;
}
.toc a:hover { background: var(--c-brand-soft); color: var(--c-brand-dark); }
.toc + .panel { margin-top: 1.15rem; }

@media (min-width: 980px) {
    .toc { position: sticky; top: 6rem; max-height: calc(100vh - 7.5rem); overflow-y: auto; }
}

/* Op smalle schermen staat de inhoudsopgave bovenaan, ingeklapt: een lijst van
   vijftien items zou anders het halve scherm vullen vóór de eerste alinea. */
@media (max-width: 979px) {
    .layout--toc { display: flex; flex-direction: column; }
    .layout--toc > aside { order: -1; min-width: 0; }

    .toc[open] > ol { margin-top: .6rem; }

    .toc > summary {
        display: flex; align-items: center; gap: .6rem;
        cursor: pointer; list-style: none;
        font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
        color: var(--c-text-soft); padding-inline: .5rem;
    }
    .toc > summary::-webkit-details-marker { display: none; }
    .toc > summary::after {
        content: ""; margin-left: auto; flex-shrink: 0;
        width: .5rem; height: .5rem;
        border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translate(-2px, -2px);
        transition: transform .15s;
    }
    .toc[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
}

/* Op brede schermen is er ruimte genoeg: altijd open, geen pijltje. */
@media (min-width: 980px) {
    .toc > summary { list-style: none; }
    .toc > summary::-webkit-details-marker { display: none; }
}

/* --- Tabellen ------------------------------------------------------------- */
.table-scroll { overflow-x: auto; margin: 1.5rem 0; }
.table {
    width: 100%; border-collapse: collapse;
    font-size: .89rem; min-width: 34rem;
}
.table th, .table td {
    text-align: left; vertical-align: top;
    padding: .7rem .85rem; border-bottom: 1px solid var(--c-border);
}
.table thead th {
    background: var(--c-bg-soft); font-size: .78rem;
    text-transform: uppercase; letter-spacing: .05em; color: var(--c-text-soft);
    border-bottom-width: 2px;
}
.table tbody th { font-weight: 650; color: var(--c-text); }
.table tbody tr:hover { background: var(--c-bg-soft); }

/* Actiepunt voor de beheerder — niet bedoeld voor bezoekers. */
.note--todo { border-left-color: var(--c-accent); background: color-mix(in srgb, var(--c-accent) 8%, transparent); }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.5rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1rem; }
.prose li { margin-bottom: .35rem; }
.prose strong { font-weight: 650; }

.layout {
    display: grid; gap: clamp(2rem, 1rem + 3vw, 3.5rem);
    grid-template-columns: 1fr;
}
/* Grid- en flex-items staan standaard op min-width:auto en weigeren daardoor
   te krimpen onder hun langste inhoud (een URL, een <code>-fragment). Dat duwt
   de hele pagina breder dan het scherm. */
.layout > * { min-width: 0; }

@media (min-width: 980px) {
    .layout { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
}

.panel {
    background: var(--c-bg-elevated); border: 1px solid var(--c-border);
    border-radius: var(--radius); padding: 1.4rem;
}
.panel + .panel { margin-top: 1.15rem; }
.panel h2, .panel h3 { font-size: 1rem; margin-top: 0; margin-bottom: .8rem; }
.panel__note {
    margin: .9rem 0 0; padding-top: .9rem;
    border-top: 1px solid var(--c-border);
    font-size: .84rem; color: var(--c-text-soft);
}
.panel__note em { font-style: normal; font-weight: 650; }

/* Notitie / bronvermelding */
.note {
    border-left: 3px solid var(--c-brand);
    background: var(--c-brand-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: .9rem 1.1rem; margin: 1.5rem 0;
    font-size: .92rem;
}
.note p:last-child { margin-bottom: 0; }

/* FAQ */
.faq { border-top: 1px solid var(--c-border); }
.faq details {
    border-bottom: 1px solid var(--c-border);
    padding: .35rem 0;
}
.faq summary {
    cursor: pointer; padding: .85rem 0; font-weight: 600;
    list-style: none; display: flex; align-items: center; gap: .7rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
    content: "+"; flex-shrink: 0;
    width: 1.4rem; height: 1.4rem; display: grid; place-items: center;
    border: 1px solid var(--c-border); border-radius: 50%;
    color: var(--c-brand); font-weight: 700; font-size: 1rem;
}
.faq details[open] summary::before { content: "−"; }
.faq details > *:not(summary) { margin-bottom: .9rem; color: var(--c-text-soft); font-size: .94rem; }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
    background: var(--c-bg-soft); border-top: 1px solid var(--c-border);
    padding: 3rem 0 1.5rem; font-size: .91rem;
}
/* Let op: `repeat(auto-fit, …)` mag niet samen met een vaste track staan —
   de hele declaratie wordt dan ongeldig. Daarom expliciete breakpoints. */
.footer__grid {
    display: grid; gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}
@media (min-width: 600px) {
    .footer__grid { grid-template-columns: repeat(3, 1fr); }
    .footer__about { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
    .footer__grid { grid-template-columns: 1.75fr repeat(3, minmax(140px, 1fr)); }
    .footer__about { grid-column: auto; }
}
.footer__about { max-width: 30rem; }
.footer__intro { color: var(--c-text-soft); margin: .6rem 0 1.1rem; }

/* Concrete beloften, geen marketingtaal — vandaar de nuchtere vinkjes. */
.footer__usp { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.footer__usp li {
    position: relative; padding-left: 1.5rem; margin-bottom: .4rem;
    font-size: .88rem; color: var(--c-text-soft); line-height: 1.5;
}
.footer__usp li::before {
    content: ""; position: absolute; left: 0; top: .42em;
    width: .5rem; height: .28rem;
    border-left: 2px solid var(--c-brand); border-bottom: 2px solid var(--c-brand);
    transform: rotate(-45deg);
}

.footer__correctie {
    margin: 0; padding-top: .9rem; border-top: 1px solid var(--c-border);
    font-size: .85rem; color: var(--c-text-soft);
}

.footer__h3--spaced { margin-top: 1.4rem; }

.footer__disclaimer {
    max-width: 62rem; margin: 0 0 1.5rem;
    padding: .9rem 1.1rem;
    background: var(--c-bg-elevated); border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: .82rem; color: var(--c-text-soft); line-height: 1.6;
}

.footer__legal { font-variant-numeric: tabular-nums; }
.footer__col h3 {
    font-size: .82rem; text-transform: uppercase; letter-spacing: .07em;
    color: var(--c-text-soft); margin-bottom: .7rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li + li { margin-top: .35rem; }
.footer__list a { color: var(--c-text); text-decoration: none; }
.footer__list a:hover { color: var(--c-brand); text-decoration: underline; }
.footer__bottom {
    border-top: 1px solid var(--c-border); padding-top: 1.2rem;
    display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: space-between;
    color: var(--c-text-soft); font-size: .85rem;
}

/* --- Cookiebanner (AVG/GDPR) ---------------------------------------------- */
.cookiebar {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
    background: var(--c-bg-elevated); border-top: 1px solid var(--c-border);
    box-shadow: 0 -8px 32px rgba(16, 24, 40, .12);
    padding: 1.1rem 0;
}
.cookiebar[hidden] { display: none; }
.cookiebar__inner {
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
    justify-content: space-between;
}
.cookiebar p { margin: 0; font-size: .89rem; color: var(--c-text-soft); max-width: 46rem; }
.cookiebar__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
