/*
  NuRecht statisch sjabloon
  Eén gedeeld stylesheet voor alle pagina's.
  Kleuren, lettergroottes en vaste maten staan hieronder als variabelen.
*/

:root {
  color-scheme: light;
  --ink: #173337;
  --ink-deep: #11282c;
  --ink-soft: #52666a;
  --rust: #9f4027;
  --rust-dark: #81321e;
  --cream: #f5f1e9;
  --cream-light: #fbf9f5;
  --white: #ffffff;
  --line: #d8d5ce;
  --line-dark: #587175;
  --max: 1240px;
  --content: 760px;
  --shadow: 0 18px 55px rgba(18, 45, 48, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream-light); font: 1rem/1.65 var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d78263; outline-offset: 4px; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(var(--content), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 14px; color: var(--white); background: var(--ink-deep); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 18px; color: var(--rust); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.lead { color: var(--ink-soft); font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.65; }
.muted { color: var(--ink-soft); }
.kicker { display: inline-flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 700; }
.kicker::before { content: ""; width: 24px; height: 2px; background: var(--rust); }

/* Kop en navigatie */
.site-header { position: relative; z-index: 20; color: var(--ink-deep); background: rgba(255, 255, 255, .98); border-bottom: 1px solid var(--line); }
.header-inner { display: grid; grid-template-columns: auto 1fr; gap: 38px; align-items: center; min-height: 88px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--white); background: var(--rust); font: italic 700 1.05rem/1 var(--serif); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.35rem; letter-spacing: -.045em; }
.brand-copy small { margin-top: 5px; color: #667477; font-size: .57rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.nav-toggle { display: none; justify-self: end; width: 46px; height: 44px; padding: 11px; border: 1px solid #9aabae; color: var(--ink); background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2.4vw, 32px); }
.site-nav a { position: relative; font-size: .86rem; font-weight: 700; text-decoration: none; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--rust); transform: scaleX(0); transform-origin: right; transition: transform .18s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 16px; border: 1px solid var(--ink); transition: color .18s ease, background .18s ease; }
.nav-cta:hover, .nav-cta:focus-visible { color: var(--white); background: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Knoppen en algemene secties */
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 190px; min-height: 52px; padding: 13px 18px; border: 1px solid transparent; font-size: .88rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .16s ease, color .16s ease, background .16s ease; }
.button:hover { transform: translateY(-2px); }
.button--rust { color: var(--white); background: var(--rust); }
.button--rust:hover, .button--rust:focus-visible { background: var(--rust-dark); }
.button--dark { color: var(--white); background: var(--ink-deep); }
.button--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.text-link { font-size: .88rem; font-weight: 700; text-underline-offset: 7px; }
.section { padding-block: clamp(68px, 8vw, 112px); }
.section--cream { background: var(--cream); }
.section--dark { color: var(--white); background: var(--ink-deep); }
.section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 7vw, 100px); align-items: end; margin-bottom: 48px; }
.section-heading h2 { max-width: 760px; margin: 0; font: 500 clamp(2.35rem, 4.6vw, 4.8rem)/1.02 var(--serif); letter-spacing: -.045em; }
.section-heading p:not(.eyebrow) { max-width: 590px; margin: 0; color: var(--ink-soft); }

/* Homepage */
.home-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, 1.05fr); min-height: 610px; background: var(--cream); border-bottom: 1px solid var(--line); }
.home-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 7vw, 96px) clamp(28px, 6vw, 90px) clamp(58px, 7vw, 96px) max(28px, calc((100vw - var(--max)) / 2)); }
.home-hero h1 { max-width: 740px; margin: 0; font: 500 clamp(3.35rem, 5.7vw, 6.25rem)/.95 var(--serif); letter-spacing: -.055em; }
.home-hero .lead { max-width: 650px; margin: 30px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-note { margin: 25px 0 0; color: #6b7775; font-size: .78rem; }
.home-hero__image { position: relative; min-height: 610px; overflow: hidden; }
.home-hero__image picture, .home-hero__image img { width: 100%; height: 100%; }
.home-hero__image img { object-fit: cover; object-position: center; }
.image-label { position: absolute; right: 16px; bottom: 14px; margin: 0; padding: 5px 8px; color: rgba(255,255,255,.92); background: rgba(17, 40, 44, .72); font-size: .65rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); color: var(--white); background: var(--ink); }
.step { min-height: 190px; padding: 35px clamp(24px, 3.4vw, 52px); border-right: 1px solid var(--line-dark); }
.step:last-child { border-right: 0; }
.step span { display: block; margin-bottom: 28px; color: #e9a990; font: 500 1.45rem var(--serif); }
.step h2 { margin: 0 0 8px; font: 500 1.38rem var(--serif); }
.step p { margin: 0; color: #c4d1d0; font-size: .86rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.audience-card { min-height: 310px; padding: 34px; border-right: 1px solid var(--line); text-decoration: none; transition: background .18s ease; }
.audience-card:last-child { border-right: 0; }
.audience-card:hover { background: var(--cream); }
.audience-card span { color: var(--rust); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.audience-card h3 { margin: 55px 0 13px; font: 500 1.55rem var(--serif); }
.audience-card p { color: var(--ink-soft); font-size: .9rem; }
.audience-card b { display: block; margin-top: 28px; font-size: .78rem; }
.anbi-band { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 42px; align-items: center; padding: 40px clamp(24px, 5vw, 70px); color: var(--white); background: var(--rust); }
.anbi-band .eyebrow { margin: 0; color: #ffd7c8; }
.anbi-band h2 { margin: 0; font: 500 clamp(1.7rem, 3vw, 2.8rem)/1.12 var(--serif); }
.anbi-band a { color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 30px; background: var(--white); border: 1px solid var(--line); }
.service-card span { color: var(--rust); font-size: .7rem; font-weight: 700; }
.service-card h3 { margin: 42px 0 12px; font: 500 1.55rem var(--serif); }
.service-card p { min-height: 78px; color: var(--ink-soft); }
.service-card a { font-size: .8rem; font-weight: 700; }
.articles-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.article-teaser { display: flex; flex-direction: column; min-height: 300px; padding: 30px; border-right: 1px solid var(--line); text-decoration: none; }
.article-teaser:last-child { border-right: 0; }
.article-teaser small { color: var(--rust); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article-teaser h3 { margin: 45px 0 15px; font: 500 1.45rem/1.2 var(--serif); }
.article-teaser p { color: var(--ink-soft); font-size: .86rem; }
.article-teaser b { margin-top: auto; font-size: .75rem; }

/* Binnenpagina's */
.page-hero { padding: clamp(68px, 9vw, 125px) 0; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: clamp(45px, 9vw, 135px); align-items: end; }
.page-hero h1 { max-width: 900px; margin: 0; font: 500 clamp(3.1rem, 6vw, 6.5rem)/.96 var(--serif); letter-spacing: -.055em; }
.page-hero .lead { max-width: 720px; margin: 30px 0 0; }
.page-hero__aside { padding-top: 22px; border-top: 3px solid var(--rust); }
.page-hero__aside strong { display: block; margin-bottom: 16px; font: 500 1.4rem var(--serif); }
.page-hero__aside p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0; color: #6c7775; font-size: .78rem; list-style: none; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; }
.flow-list { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.flow-item { min-height: 330px; padding: 34px; border-right: 1px solid var(--line); }
.flow-item:last-child { border-right: 0; }
.flow-item > span { color: var(--rust); font: 500 1.5rem var(--serif); }
.flow-item h2 { margin: 65px 0 13px; font: 500 1.55rem var(--serif); }
.flow-item p { color: var(--ink-soft); }
.flow-item ul { padding-left: 20px; color: var(--ink-soft); font-size: .88rem; }
.notice { padding: 28px 30px; border-left: 4px solid var(--rust); background: #f2e8e0; }
.notice h2, .notice h3 { margin-top: 0; font: 500 1.45rem var(--serif); }
.notice p:last-child { margin-bottom: 0; }
.two-column { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: clamp(45px, 8vw, 110px); }
.content-copy h2 { margin: 2.1em 0 .55em; font: 500 clamp(2rem, 3.6vw, 3.25rem)/1.08 var(--serif); letter-spacing: -.03em; }
.content-copy h3 { margin: 2em 0 .55em; font: 500 1.55rem var(--serif); }
.content-copy p, .content-copy li { color: #41575a; }
.content-copy a { color: var(--rust-dark); font-weight: 700; }
.side-card { position: sticky; top: 25px; padding: 30px; background: var(--ink); color: var(--white); }
.side-card h2, .side-card h3 { margin: 0 0 15px; font: 500 1.55rem var(--serif); }
.side-card p { color: #cbd7d6; font-size: .88rem; }
.side-card .button { width: 100%; margin-top: 12px; background: var(--white); color: var(--ink); }

/* Artikelenoverzicht */
.filter-links { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.filter-links a { padding: 8px 13px; border: 1px solid #aab6b5; font-size: .78rem; font-weight: 700; text-decoration: none; }
.filter-links a:first-child { color: var(--white); background: var(--ink); border-color: var(--ink); }
.filter-links a:not(:first-child) { color: var(--ink); background: transparent; }
.filter-links a:hover { border-color: var(--rust); color: var(--rust-dark); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { display: flex; flex-direction: column; min-height: 330px; padding: 30px; color: inherit; background: var(--white); border: 1px solid var(--line); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card__meta { display: flex; justify-content: space-between; gap: 15px; color: #657476; font-size: .7rem; }
.article-card__meta span:first-child { color: var(--rust); font-weight: 700; text-transform: uppercase; }
.article-card h2 { margin: 50px 0 14px; font: 500 1.48rem/1.22 var(--serif); }
.article-card p { color: var(--ink-soft); font-size: .86rem; }
.article-card b { margin-top: auto; font-size: .75rem; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination a, .pagination span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #aab6b5; text-decoration: none; }
.pagination span { color: var(--white); background: var(--ink); border-color: var(--ink); }
.pagination .is-disabled { color: #879493; background: transparent; border-color: #c8cfce; }

/* Artikel */
.reading-progress { position: fixed; z-index: 40; inset: 0 0 auto; height: 3px; background: transparent; pointer-events: none; }
.reading-progress span { display: block; width: 100%; height: 100%; background: var(--rust); transform: scaleX(0); transform-origin: left; }
.reading-progress[hidden], .article-photo[hidden] { display: none; }
.article-header { padding: clamp(65px, 8vw, 112px) 0 55px; background: var(--cream); }
.article-header__inner { width: min(980px, calc(100% - 48px)); margin-inline: auto; }
.article-header h1 { margin: 0; font: 500 clamp(3rem, 6vw, 6.1rem)/.97 var(--serif); letter-spacing: -.055em; }
.article-intro { max-width: 800px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(1.12rem, 1.6vw, 1.35rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; padding-top: 24px; border-top: 1px solid #cbc5bb; color: #657371; font-size: .76rem; }
.article-body { display: grid; grid-template-columns: minmax(0, 760px) minmax(250px, 320px); gap: clamp(50px, 9vw, 120px); align-items: start; padding-block: 70px 105px; }
.article-copy { font: 1.08rem/1.82 var(--serif); }
.article-copy > p:first-child::first-letter { float: left; margin: .08em .12em 0 0; color: var(--rust); font-size: 4.4rem; line-height: .72; }
.article-copy h2 { margin: 2.2em 0 .65em; color: var(--ink-deep); font: 500 clamp(2rem, 3.5vw, 3.15rem)/1.12 var(--serif); letter-spacing: -.035em; }
.article-copy h3 { margin: 2em 0 .6em; font: 700 1.35rem var(--serif); }
.article-copy blockquote { margin: 2.2em 0; padding: 5px 0 5px 28px; border-left: 4px solid var(--rust); color: var(--ink-deep); font-size: 1.25rem; }
.article-copy .article-warning { margin-top: 3em; padding: 24px; background: var(--cream); border: 1px solid var(--line); font: .88rem/1.6 var(--sans); }
.article-side { display: grid; gap: 18px; }
.article-photo { width: 100%; max-width: 320px; margin: 0; }
.article-photo img { width: 100%; height: auto; border: 1px solid var(--line); }
.article-photo figcaption { margin-top: 8px; color: var(--ink-soft); font: .75rem/1.5 var(--sans); }
.toc { padding: 26px; border: 1px solid var(--line); background: var(--white); }
.toc h2 { margin: 0 0 14px; font: 500 1.25rem var(--serif); }
.toc ol { margin: 0; padding-left: 20px; color: var(--ink-soft); font-size: .82rem; }
.related { padding-block: 65px 85px; border-top: 1px solid var(--line); }
.related h2 { margin: 0 0 30px; font: 500 2.3rem var(--serif); }

/* Formulier */
.form-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(48px, 8vw, 110px); align-items: start; padding-block: 70px 105px; }
.form-card { padding: clamp(25px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-card fieldset { margin: 0 0 36px; padding: 0; border: 0; }
.form-card legend { width: 100%; margin-bottom: 22px; padding-bottom: 13px; border-bottom: 1px solid var(--line); font: 500 1.45rem var(--serif); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; margin-bottom: 20px; }
.field label, .field-label { font-size: .8rem; font-weight: 700; }
.field small { color: #697777; font-size: .72rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 12px; color: var(--ink); background: #fbfbfa; border: 1px solid #9eabaa; border-radius: 0; }
.field textarea { min-height: 180px; resize: vertical; }
.checks { display: grid; gap: 10px; }
.check { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: .82rem; }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--rust); }
.form-status { display: none; margin: 20px 0 0; padding: 16px; color: #5d3a2c; background: #f5e6dc; border-left: 4px solid var(--rust); font-size: .85rem; }
.form-status.is-visible { display: block; }
.form-aside { display: grid; gap: 18px; }
.expect-card { padding: 28px; background: var(--cream); border: 1px solid var(--line); }
.expect-card h2 { margin: 0 0 18px; font: 500 1.55rem var(--serif); }
.expect-card ol { display: grid; gap: 16px; margin: 0; padding-left: 21px; color: var(--ink-soft); font-size: .86rem; }
.demo-label { display: inline-block; margin-bottom: 15px; padding: 5px 8px; color: var(--white); background: var(--rust); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* Footer */
.site-footer { color: #dbe4e3; background: var(--ink-deep); }
.footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1.6fr; gap: 45px; padding-block: 58px; }
.footer-brand p { max-width: 280px; color: #aebdbc; font-size: .82rem; }
.footer-col h2 { margin: 0 0 17px; color: var(--white); font: 500 1.05rem var(--serif); }
.footer-col a { display: block; margin: 7px 0; color: #b9c6c5; font-size: .78rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-disclaimer { margin: 0; color: #aebdbc; font-size: .76rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 20px; border-top: 1px solid #3b5356; color: #91a3a2; font-size: .68rem; }

@media (max-width: 1050px) {
  .header-inner { gap: 20px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: .78rem; }
  .home-hero { grid-template-columns: 1fr 1fr; }
  .home-hero h1 { font-size: clamp(3.2rem, 6vw, 5rem); }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .container, .narrow, .article-header__inner { width: min(100% - 36px, var(--max)); }
  .header-inner { grid-template-columns: 1fr auto; min-height: 74px; }
  .nav-toggle { display: block; }
  .site-nav { grid-column: 1 / -1; align-items: stretch; flex-direction: column; gap: 0; margin: 0 -18px; padding: 0 18px 18px; }
  html.js .site-nav:not(.is-open) { display: none; }
  .site-nav a { padding: 13px 5px; border-top: 1px solid var(--line); font-size: .9rem; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 10px; text-align: center; }
  html.js .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  html.js .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  html.js .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero__copy { padding: 65px max(24px, calc((100vw - var(--max)) / 2)); }
  .home-hero__image { min-height: auto; aspect-ratio: 1.17 / 1; }
  .home-hero__image img { object-position: center; }
  .steps, .audience-grid, .services-grid, .flow-list { grid-template-columns: 1fr; }
  .step, .audience-card, .flow-item { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .audience-card { border-color: var(--line); }
  .step:last-child, .audience-card:last-child, .flow-item:last-child { border-bottom: 0; }
  .audience-card h3, .flow-item h2 { margin-top: 28px; }
  .anbi-band { grid-template-columns: 1fr; gap: 18px; }
  .section-heading, .page-hero__grid, .two-column, .article-body, .form-layout { grid-template-columns: 1fr; }
  .page-hero__aside { max-width: 560px; }
  .article-side, .side-card { position: static; }
  /* De inhoudsopgave blijft boven de tekst; foto en vraagknop volgen eronder. */
  .article-side { display: contents; }
  .article-side .toc { grid-row: 1; }
  .article-copy { grid-row: 2; }
  .article-photo { grid-row: auto; }
  .article-side > .button { grid-row: auto; justify-self: start; }
  .article-body { row-gap: 30px; }
  .articles-row { grid-template-columns: 1fr; }
  .article-teaser { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .article-teaser:last-child { border-bottom: 0; }
  .article-teaser b { margin-top: 30px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .brand-copy small { display: none; }
  .home-hero__copy { padding-block: 52px; }
  .home-hero h1, .page-hero h1, .article-header h1 { font-size: clamp(3rem, 15vw, 4.35rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button { width: 100%; }
  .section { padding-block: 62px; }
  .section-heading { gap: 20px; margin-bottom: 32px; }
  .section-heading h2 { font-size: 2.65rem; }
  .anbi-band { margin-inline: -18px; padding-inline: 24px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 285px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .form-card { margin-inline: -4px; padding: 24px 18px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-main .footer-col:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reading-progress { display: none; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .hero-actions, .nav-toggle, .side-card, .form-aside, .reading-progress, .article-side { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section, .article-body { padding-block: 20px; }
  a { text-decoration: none; }
}


/* Diensten en betaalroute */
.language-link { display: inline-flex; align-items: center; gap: 5px; }
.checkout-shell { max-width: 1120px; }
.checkout-progress { margin: 0 0 52px; }
.checkout-progress ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.checkout-progress li { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; color: #718082; font-size: .78rem; }
.checkout-progress li::after { content: ""; position: absolute; z-index: -1; top: 17px; left: 34px; width: calc(100% - 34px); height: 1px; background: var(--line); }
.checkout-progress li:last-child::after { display: none; }
.checkout-progress li span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #9eabaa; border-radius: 50%; background: var(--cream-light); }
.checkout-progress li.is-current { color: var(--ink-deep); }
.checkout-progress li.is-current span { color: var(--white); background: var(--rust); border-color: var(--rust); }
.checkout-progress li.is-complete span { color: var(--white); background: var(--ink); border-color: var(--ink); }
.service-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-choice { display: flex; flex-direction: column; padding: clamp(30px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); }
.service-choice--featured { border-top: 4px solid var(--rust); }
.service-choice h2 { margin: 0; font: 500 clamp(2rem, 3vw, 3.25rem)/1.08 var(--serif); letter-spacing: -.035em; }
.service-price { margin: 18px 0; color: var(--rust-dark); font: 500 1.55rem var(--serif); }
.service-choice > p:not(.eyebrow, .service-price) { color: var(--ink-soft); }
.service-choice ul, .order-summary ul { margin: 12px 0 30px; padding-left: 21px; color: var(--ink-soft); }
.service-choice .button { align-self: flex-start; margin-top: auto; }
.choice-note { margin-top: 28px; padding: 28px 30px; background: var(--cream); border-left: 4px solid var(--rust); }
.choice-note h2 { margin: 0 0 8px; font: 500 1.45rem var(--serif); }
.choice-note p { margin: 0 0 9px; color: var(--ink-soft); }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); gap: clamp(40px, 7vw, 85px); align-items: start; }
.order-summary, .payment-panel { padding: clamp(28px, 4vw, 46px); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.order-summary h2, .payment-panel h2 { margin: 0; font: 500 clamp(2rem, 3.4vw, 3.2rem)/1.08 var(--serif); }
.choice-heading { margin: 42px 0 18px; font: 500 1.75rem var(--serif); }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.payment-method { display: flex; flex-direction: column; min-height: 235px; padding: 26px; color: inherit; background: var(--white); border: 1px solid var(--line); text-decoration: none; transition: transform .16s ease, box-shadow .16s ease; }
.payment-method:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.payment-brand { align-self: flex-start; width: auto; height: 50px; object-fit: contain; object-position: left center; }
.payment-brand--paypal { height: 42px; margin-block: 4px; }
.payment-method strong { margin-top: 34px; font: 500 1.35rem var(--serif); }
.payment-method small { margin: 8px 0 18px; color: var(--ink-soft); line-height: 1.5; }
.payment-method b { margin-top: auto; color: var(--rust-dark); font-size: .78rem; }
.checkout-aside { padding: 28px; color: var(--white); background: var(--ink-deep); }
.checkout-aside h2 { margin: 0 0 16px; font: 500 1.55rem var(--serif); }
.checkout-aside p, .checkout-aside li { color: #cbd7d6; font-size: .86rem; }
.checkout-aside ol { display: grid; gap: 10px; padding-left: 21px; }
.back-row { margin-top: 28px; }
.compact-summary { display: flex; justify-content: space-between; gap: 20px; margin: 22px 0 28px; padding: 18px 0; border-block: 1px solid var(--line); }
.compact-summary strong { color: var(--rust-dark); }
.payment-form { display: grid; gap: 22px; }
.consent-list { display: grid; gap: 14px; }
.consent-list .check { padding: 16px; background: var(--cream); border: 1px solid var(--line); }
.consent-list a { color: var(--rust-dark); font-weight: 700; }
.order-button { width: 100%; border: 0; }
.payment-small { margin: -10px 0 0; color: var(--ink-soft); font-size: .75rem; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(250px, 320px); gap: clamp(50px, 8vw, 110px); align-items: start; }
.legal-copy { font: 1.04rem/1.8 var(--serif); }
.legal-copy section + section { margin-top: 3.1rem; padding-top: .15rem; }
.legal-copy h2 { margin: 0 0 .75em; color: var(--ink-deep); font: 500 clamp(1.85rem, 3vw, 2.75rem)/1.12 var(--serif); letter-spacing: -.025em; }
.legal-copy h3 { margin: 1.5em 0 .45em; font: 700 1.25rem var(--serif); }
.legal-copy p, .legal-copy li { color: #41575a; }
.legal-copy a { color: var(--rust-dark); font-weight: 700; }
.legal-toc { position: sticky; top: 25px; padding: 26px; background: var(--white); border: 1px solid var(--line); }
.legal-toc h2 { margin: 0 0 14px; font: 500 1.3rem var(--serif); }
.legal-toc ol { margin: 0; padding-left: 20px; color: var(--ink-soft); font-size: .82rem; }
.legal-details { margin-top: 20px; border: 1px solid var(--line); background: var(--cream); }
.legal-details summary { padding: 15px 18px; font-family: var(--sans); font-size: .86rem; font-weight: 700; cursor: pointer; }
.legal-details div { padding: 0 18px 18px; }
.footer-reviews { display: inline-block; margin-top: .45rem; color: #d7e0df; font-size: .78rem; }
.quickscan-copy h3 { margin: 2rem 0 .6rem; font: 500 1.45rem var(--serif); }

@media (max-width: 860px) {
  .service-choice-grid, .checkout-layout, .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-row: 1; }
  .checkout-progress ol { gap: 6px; }
  .checkout-progress li { grid-template-columns: 28px 1fr; gap: 6px; font-size: .68rem; }
  .checkout-progress li span { width: 28px; height: 28px; }
  .checkout-progress li::after { top: 14px; left: 28px; width: calc(100% - 28px); }
}

@media (max-width: 560px) {
  .checkout-progress li { display: flex; flex-direction: column; align-items: flex-start; }
  .checkout-progress li::after { top: 14px; left: 28px; width: calc(100% - 28px); }
  .checkout-progress li b { max-width: 70px; line-height: 1.25; }
  .payment-methods { grid-template-columns: 1fr; }
  .compact-summary { flex-direction: column; gap: 5px; }
}


/* Eindcontrole: beoordelingen, beeldverhalen, tijdlijn en foutpagina */
.footer-rating { display: grid; width: fit-content; margin-top: 1rem; color: #fff; text-decoration: none; }
.footer-rating strong { margin-top: .25rem; font-size: .75rem; }
.footer-rating small { color: #aebdbc; font-size: .66rem; }
.stars { --rating: 0; position: relative; display: inline-block; width: 5.6em; color: #66787a; font: 1.05rem/1 Arial, sans-serif; letter-spacing: .12em; }
.stars::before, .stars::after { content: "★★★★★"; }
.stars::after { position: absolute; inset: 0 auto 0 0; width: calc(var(--rating) / 5 * 100%); overflow: hidden; color: #e5ae32; white-space: nowrap; }
.stars--large { width: 6.2em; font-size: 1.8rem; }
.review-platform { margin: 1.5rem 0; padding: 28px; border: 1px solid var(--line); background: var(--white); }
.review-platform p:last-child { margin-bottom: 0; }
.filter-links button { padding: 8px 13px; border: 1px solid #aab6b5; color: var(--ink); background: transparent; font-size: .78rem; font-weight: 700; cursor: pointer; }
.filter-links button[aria-pressed="true"] { color: var(--white); background: var(--ink); border-color: var(--ink); }
.filter-status { min-height: 1.6em; color: var(--ink-soft); font-size: .82rem; }
.article-card[hidden] { display: none; }
.article-visual { margin: 2.2rem 0; }
.article-visual--portrait { max-width: 600px; }
.article-visual img, .hover-compare img { width: 100%; height: auto; border: 1px solid var(--line); }
.article-visual figcaption, .hover-compare figcaption { margin-top: .55rem; color: var(--ink-soft); font: .76rem/1.5 var(--sans); }
.visual-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 2.2rem 0; }
.hover-compare { position: relative; margin: 0; }
.hover-compare__after { position: absolute; inset: 0 0 auto; opacity: 0; transition: opacity .22s ease; }
.hover-compare:hover .hover-compare__after, .hover-compare:focus-within .hover-compare__after { opacity: 1; }
.history-timeline { margin: 2rem 0; padding: 0; list-style: none; }
.history-timeline > li { display: grid; grid-template-columns: 145px 1fr; gap: 28px; padding: 0 0 42px 24px; border-left: 3px solid var(--rust); }
.history-timeline time { color: var(--rust-dark); font: 700 .8rem/1.4 var(--sans); }
.history-timeline h3 { margin-top: 0; }
.history-timeline img { max-width: 540px; margin-top: 1.3rem; border: 1px solid var(--line); }
.process-list { display: grid; gap: 1rem; }
.phone-link { font-size: 1.2em; font-weight: 700; }
.error-page { padding-block: clamp(55px, 8vw, 105px); background: var(--cream); }
.error-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr); gap: clamp(35px, 7vw, 90px); align-items: center; }
.error-grid h1 { margin: 0; font: 500 clamp(3rem, 6vw, 6rem)/.98 var(--serif); letter-spacing: -.05em; }
.error-illustration { margin: 0; overflow: hidden; border: 1px solid #9f8a73; box-shadow: var(--shadow); }
.error-illustration img { width: 100%; }
.legal-copy > section:first-child h2:first-child { margin-top: 0; }
@media (max-width: 860px) {
  .visual-compare-grid, .error-grid { grid-template-columns: 1fr; }
  .history-timeline > li { grid-template-columns: 1fr; gap: 8px; }
}
