/* Vergelijk je rijk | stijlblad */

:root {
  --ink: #1D1B33;
  --ink-2: #45435D;
  --muted: #6B6982;
  --cream: #FFF8EE;
  --cream-2: #FBF0E0;
  --paper: #FFFFFF;
  --line: #EDE3D3;
  --line-2: #E3D6C2;
  --coral: #FF6B57;
  --sun: #F6B72A;
  --mint: #1FAE7A;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 1px 2px rgba(29, 27, 51, .05), 0 2px 8px rgba(29, 27, 51, .05);
  --shadow: 0 2px 4px rgba(29, 27, 51, .04), 0 14px 34px -10px rgba(29, 27, 51, .16);
  --shadow-lg: 0 34px 70px -24px rgba(29, 27, 51, .32);

  --font-head: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --c: var(--coral);
  --c-soft: #FFE7E2;
  --c-deep: #C63A27;
  --c-on: #fff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.015em; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 16px 24px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn .icon { transition: transform .18s ease; }
.btn:hover .icon { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 4px 0 var(--coral); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--coral); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--coral); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 4px 0 var(--sun); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--sun); }
.btn-sm { padding: 11px 18px; font-size: .92rem; box-shadow: 0 3px 0 var(--coral); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 238, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(29, 27, 51, .35); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.035em; line-height: 1; }
.logo-text em { font-style: normal; color: var(--coral); }
.logo-mark { transition: transform .4s cubic-bezier(.34, 1.56, .64, 1); }
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.06); }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav > a, .nav-dd-btn {
  font: 600 .98rem/1 var(--font-body); color: var(--ink-2); text-decoration: none;
  padding: 12px 14px; border-radius: 999px; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px; transition: background .15s ease, color .15s ease;
}
.main-nav > a:hover, .nav-dd-btn:hover, .nav-dd.open .nav-dd-btn { background: rgba(29, 27, 51, .06); color: var(--ink); }
.main-nav > a[aria-current="page"], .nav-dd-btn.is-current { color: var(--ink); background: rgba(29, 27, 51, .07); }
.nav-dd-btn .icon { transition: transform .2s ease; }
.nav-dd.open .nav-dd-btn .icon { transform: rotate(180deg); }
.header-cta { margin-left: 8px; }

.nav-dd { position: relative; }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  padding-top: 12px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-dd.open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-inner {
  width: min(760px, 92vw); display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px;
  box-shadow: var(--shadow-lg);
}
.mega-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 14px; text-decoration: none;
  transition: background .15s ease;
}
.mega-item:hover, .mega-item[aria-current="page"] { background: var(--c-soft); }
.mega-item strong { display: block; font-weight: 700; font-size: .98rem; line-height: 1.3; }
.mega-item small { display: block; color: var(--muted); font-size: .84rem; line-height: 1.35; margin-top: 2px; }
.mega-ico {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--c-soft); color: var(--c-deep);
}
.mega-item:hover .mega-ico { background: var(--c); color: var(--c-on); }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 14px; border: 1.5px solid var(--line-2);
  background: var(--paper); color: var(--ink); cursor: pointer; place-items: center;
}
.mobile-menu { border-top: 1px solid var(--line); background: var(--cream); padding: 16px 0 24px; max-height: calc(100vh - 76px); overflow-y: auto; }
.mobile-label { font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.mobile-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-cats a {
  display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 14px; background: var(--paper);
  border: 1px solid var(--line); text-decoration: none; font-weight: 600; font-size: .95rem;
}
.mobile-cats .mega-ico { width: 32px; height: 32px; border-radius: 9px; }
.mobile-links { display: flex; flex-direction: column; margin-top: 16px; border-top: 1px solid var(--line); padding-top: 8px; }
.mobile-links a { padding: 12px 4px; text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--line); }

/* ---------- algemene secties ---------- */
.section { padding: 96px 0; }
.section-tint { background: var(--cream-2); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-sub { font-size: 1.12rem; color: var(--ink-2); }
.kicker {
  display: inline-block; font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}
.kicker-cat { color: var(--c-deep); }
.kicker-light { color: var(--sun); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.26rem); color: var(--ink-2); line-height: 1.6; max-width: 40em; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 72px 0 96px; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: -1; pointer-events: none;
}
.hero::before { width: 520px; height: 520px; background: #FFD9A8; top: -180px; left: -160px; }
.hero::after { width: 480px; height: 480px; background: #FFC9D8; bottom: -220px; right: -80px; opacity: .45; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-grid > *, .split > *, .cat-hero-grid > *, .money > * { min-width: 0; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line);
  padding: 8px 16px 8px 12px; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.eyebrow-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(31, 174, 122, .18); }
.hero h1 { margin-bottom: 24px; }
.hl { position: relative; white-space: nowrap; z-index: 0; }
.hl::after {
  content: ""; position: absolute; left: -4px; right: -6px; bottom: .08em; height: .36em; z-index: -1;
  background: var(--sun); border-radius: 6px; transform: rotate(-1.2deg);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.hero-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--ink-2); font-weight: 600; font-size: .95rem; }
.hero-checks li { display: inline-flex; align-items: center; gap: 7px; }
.hero-checks .icon { color: var(--mint); stroke-width: 3; }

.hero-art { position: relative; justify-self: end; width: 100%; max-width: 500px; }
.bento {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  transform: rotate(-3deg);
}
.bento-tile {
  aspect-ratio: 1; border-radius: 24px; display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px; text-decoration: none;
}
.bento-tile {
  background: var(--c-soft); border: 1px solid rgba(29, 27, 51, .05);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease, background .2s ease;
  animation: floaty 7s ease-in-out infinite;
}
.bento-tile:nth-child(2n) { animation-delay: -2.2s; }
.bento-tile:nth-child(3n) { animation-delay: -4.1s; }
.bento-tile:hover { transform: translateY(-6px) rotate(2deg) scale(1.04); box-shadow: var(--shadow); background: var(--c); color: var(--c-on); animation-play-state: paused; }
.bento-ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--c); color: var(--c-on); box-shadow: 0 6px 14px -6px var(--c);
}
.bento-tile:hover .bento-ico { background: rgba(255, 255, 255, .25); box-shadow: none; }
.bento-label { font-weight: 700; font-size: .98rem; line-height: 1.2; }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }

.count-pill {
  position: absolute; bottom: -52px; left: 4%; display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; padding: 12px 20px 12px 14px; border-radius: 999px; white-space: nowrap;
  font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-lg); transform: rotate(-4deg);
}
.count-pill strong {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--sun); color: var(--ink); font-family: var(--font-head); font-size: 1.15rem; font-weight: 800;
}

.sticker {
  position: absolute; top: -58px; right: -46px; width: 104px; height: 104px; border-radius: 50%;
  background: var(--coral); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--font-head); font-size: .9rem; line-height: 1.05; box-shadow: var(--shadow);
  transform: rotate(-14deg); animation: wobble 6s ease-in-out infinite;
}
.sticker::before { content: ""; position: absolute; inset: 6px; border: 2px dashed rgba(255, 255, 255, .6); border-radius: 50%; }
.sticker b { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em; }
@keyframes wobble { 0%, 100% { transform: rotate(-14deg); } 50% { transform: rotate(-6deg) scale(1.04); } }

/* ---------- trust ---------- */
.trust-strip { padding: 0 0 24px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; gap: 14px; padding: 28px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item h3 { font-size: 1.04rem; margin-bottom: 4px; }
.trust-item p { font-size: .93rem; color: var(--muted); margin: 0; line-height: 1.5; }
.trust-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--cream-2); color: var(--ink); }
.trust-item:nth-child(1) .trust-ico { background: #FFE7E2; color: #C63A27; }
.trust-item:nth-child(2) .trust-ico { background: #FFF3D1; color: #8A5B00; }
.trust-item:nth-child(3) .trust-ico { background: #DCF5EA; color: #0F7A53; }
.trust-item:nth-child(4) .trust-ico { background: #E6E7FA; color: #363A99; }

/* ---------- categorie-kaarten ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  isolation: isolate;
}
.cat-card::before {
  content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -70px; top: -70px;
  background: var(--c-soft); z-index: -1; transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}
.cat-card:hover { transform: translateY(-5px); border-color: var(--c); box-shadow: 0 22px 40px -22px var(--c); }
.cat-card:hover::before { transform: scale(1.35); }
.cat-ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--c); color: var(--c-on); box-shadow: 0 10px 20px -10px var(--c);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.cat-card:hover .cat-ico { transform: rotate(-8deg) scale(1.06); }
.cat-card h3 { font-size: 1.36rem; margin-bottom: 6px; }
.cat-card p { color: var(--muted); margin-bottom: 22px; font-size: .98rem; line-height: 1.5; }
.cat-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--c-deep); font-size: .98rem; }
.cat-link .icon { transition: transform .2s ease; }
.cat-card:hover .cat-link .icon { transform: translateX(4px); }

/* ---------- stappen ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; background: var(--paper); border-radius: var(--radius); padding: 32px 28px 30px; border: 1px solid var(--line); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 58px; right: -20px; width: 20px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 5px, transparent 5px 9px);
}
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; margin-bottom: 20px;
  background: var(--c); color: var(--ink); font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
}
.step:nth-child(1) .step-num, .step:nth-child(3) .step-num { color: #fff; }
.step p { color: var(--muted); margin: 0; }

/* ---------- split + checklist ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-top { align-items: start; }
.split-copy p { color: var(--ink-2); font-size: 1.08rem; }
.check-card { background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.check-card-head { padding: 28px 30px 20px; background: var(--ink); color: #fff; }
.check-card-head h3 { font-size: 1.4rem; margin-bottom: 4px; }
.check-card-head p { margin: 0; opacity: .75; font-size: .96rem; }
.checklist { list-style: none; margin: 0; padding: 10px 14px 14px; }
.checklist li { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px dashed var(--line-2); }
.checklist li:last-child { border-bottom: 0; }
.checklist label { display: flex; align-items: center; gap: 14px; padding: 16px 12px; cursor: pointer; font-weight: 600; flex: 1; }
.checklist input { position: absolute; opacity: 0; pointer-events: none; }
.checklist .box {
  width: 28px; height: 28px; border-radius: 9px; border: 2px solid var(--line-2); display: grid; place-items: center;
  color: transparent; transition: all .2s ease; flex-shrink: 0;
}
.checklist .box .icon { stroke-width: 3; transform: scale(.4); transition: transform .25s cubic-bezier(.34, 1.56, .64, 1); }
.checklist input:checked + .box { background: var(--c); border-color: var(--c); color: var(--c-on); }
.checklist input:checked + .box .icon { transform: scale(1); }
.checklist input:focus-visible + .box { outline: 3px solid var(--ink); outline-offset: 2px; }
.checklist label:has(input:checked) { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--c); text-decoration-thickness: 2px; }
.checklist li > a { padding: 10px; border-radius: 10px; color: var(--c-deep); display: grid; place-items: center; }
.checklist li > a:hover { background: var(--c-soft); }

/* ---------- verdienmodel ---------- */
.money {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  background: var(--ink); color: #fff; border-radius: 36px; padding: 64px; position: relative; overflow: hidden;
}
.money::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -140px; top: -160px;
  background: radial-gradient(circle, rgba(255, 107, 87, .35), transparent 65%);
}
.money > * { position: relative; }
.money-copy p { color: rgba(255, 255, 255, .8); font-size: 1.08rem; margin-bottom: 30px; }
.money-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.money-points li { display: flex; gap: 16px; padding: 20px 22px; border-radius: 18px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.money-points li > span { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(246, 183, 42, .15); color: var(--sun); }
.money-points h3 { font-size: 1.06rem; margin-bottom: 2px; }
.money-points p { margin: 0; color: rgba(255, 255, 255, .7); font-size: .94rem; line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq h2 { margin-bottom: 28px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 24px; font-weight: 700; font-size: 1.06rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--c-soft); transition: background .2s ease, transform .3s ease; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--c-deep); border-radius: 2px; translate: -50% -50%; }
.faq-plus::after { rotate: 90deg; transition: rotate .3s ease; }
.faq-item[open] .faq-plus { background: var(--c); transform: rotate(180deg); }
.faq-item[open] .faq-plus::before, .faq-item[open] .faq-plus::after { background: var(--c-on); }
.faq-item[open] .faq-plus::after { rotate: 0deg; }
.faq-a { padding: 0 24px 22px; color: var(--ink-2); }
.faq-a p { margin: 0; }

/* ---------- CTA ---------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(120deg, #FFE7E2 0%, #FFF3D1 55%, #DCF5EA 100%);
  border-radius: 36px; padding: 56px 64px; border: 1px solid rgba(29, 27, 51, .06);
}
.cta-band h2 { margin-bottom: 6px; }
.cta-band p { margin: 0; color: var(--ink-2); font-size: 1.1rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- categoriepagina ---------- */
.cat-hero { position: relative; background: var(--c-soft); padding: 40px 0 128px; overflow: hidden; }
.cat-hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .35));
}
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .9rem; color: var(--ink-2); margin-bottom: 36px; font-weight: 500; }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: .4; }
.cat-hero-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.cat-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem;
  background: var(--paper); color: var(--c-deep); padding: 7px 14px 7px 10px; border-radius: 999px; margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.cat-hero h1 { margin-bottom: 18px; }
.pills { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pills li {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .75); padding: 9px 16px 9px 12px;
  border-radius: 999px; font-weight: 600; font-size: .94rem; border: 1px solid rgba(29, 27, 51, .06);
}
.pills .icon { color: var(--c-deep); stroke-width: 3; }
.cat-hero-art { position: relative; height: 280px; display: grid; place-items: center; }
.art-blob {
  width: 220px; height: 220px; display: grid; place-items: center; background: var(--c); color: var(--c-on);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; box-shadow: 0 30px 60px -24px var(--c);
  animation: blob 12s ease-in-out infinite;
}
.art-icon { stroke-width: 1.6; }
@keyframes blob {
  0%, 100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; transform: rotate(-4deg); }
  50% { border-radius: 56% 44% 42% 58% / 40% 58% 42% 60%; transform: rotate(4deg); }
}
.art-dot { position: absolute; border-radius: 50%; }
.art-dot-1 { width: 34px; height: 34px; background: var(--sun); top: 18px; right: 12%; }
.art-dot-2 { width: 20px; height: 20px; background: var(--ink); bottom: 36px; left: 10%; }
.art-dot-3 { width: 54px; height: 54px; border: 3px solid var(--c); bottom: 10px; right: 6%; background: transparent; }

.tool-section { position: relative; margin-top: -80px; z-index: 2; }
.tool-card { background: var(--paper); border-radius: 28px; box-shadow: var(--shadow-lg); padding: 32px; border: 1px solid var(--line); }
.tool-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.tool-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 0; }
.tool-badge {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .86rem;
  background: var(--c-soft); color: var(--c-deep); padding: 8px 14px; border-radius: 999px;
}
.tool-embed { min-height: 200px; }
.tool-placeholder {
  display: flex; gap: 22px; align-items: center; padding: 36px; border-radius: 20px;
  border: 2px dashed var(--line-2); background: repeating-linear-gradient(135deg, var(--cream) 0 14px, #fff 14px 28px);
}
.tool-placeholder h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tool-placeholder p { margin: 0; color: var(--ink-2); }
.tool-placeholder-ico { flex-shrink: 0; width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--c); color: var(--c-on); }
.disclosure { display: flex; gap: 8px; align-items: flex-start; margin: 20px 0 0; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.disclosure .icon { flex-shrink: 0; margin-top: 2px; }
.disclosure a { color: var(--ink); font-weight: 600; }

.tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tip { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .2s ease, border-color .2s ease; }
.tip:hover { transform: translateY(-3px); border-color: var(--c); }
.tip-num { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--c-deep); background: var(--c-soft); padding: 5px 11px; border-radius: 10px; margin-bottom: 16px; }
.tip h3 { font-size: 1.14rem; margin-bottom: 8px; }
.tip p { color: var(--muted); margin: 0; font-size: .98rem; line-height: 1.55; }

.prose { font-size: 1.08rem; color: var(--ink-2); }
.prose p { margin-bottom: 1.1em; }
.note { display: flex; gap: 12px; align-items: flex-start; background: var(--paper); border-left: 4px solid var(--c); padding: 18px 20px; border-radius: 0 14px 14px 0; margin: 24px 0; }
.note .icon { flex-shrink: 0; color: var(--c-deep); margin-top: 3px; }
.note p { margin: 0; font-size: 1rem; color: var(--ink); }
.updated { font-size: .88rem; color: var(--muted); margin-top: 24px; }
.cat-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- tekstpagina's ---------- */
.text-hero { padding: 48px 0 56px; background: var(--cream-2); border-bottom: 1px solid var(--line); }
.text-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.section-text { padding-top: 56px; }
.prose-page h2 { font-size: 1.6rem; color: var(--ink); margin: 1.8em 0 .5em; }
.prose-page h2:first-child { margin-top: 0; }
.prose-page h3 { font-size: 1.14rem; color: var(--ink); margin: 1.4em 0 .35em; }
.prose-page a { color: var(--ink); font-weight: 600; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.2em; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 22px; height: 22px; border-radius: 50%;
  background: #DCF5EA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F7A53' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.cross-list li::before {
  background: #FFE7E2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C63A27' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-card h2 { margin-top: 0 !important; font-size: 1.3rem !important; }
.contact-card .btn { color: #fff; text-decoration: none; }
.big-404 { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 14vw, 9rem); line-height: 1; margin: 0 0 12px; color: var(--coral); letter-spacing: -0.05em; }
.text-hero .center .lead { margin-left: auto; margin-right: auto; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .78); padding: 72px 0 32px; margin-top: 0; font-size: .96rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr; gap: 48px; }
.logo-light .logo-text { color: #fff; }
.footer-brand p { margin: 18px 0 20px; max-width: 30em; line-height: 1.6; }
.footer-mail { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; text-decoration: none; }
.footer-mail:hover { color: var(--sun); }
.footer-title { font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin: 0 0 14px; font-weight: 700; }
.footer-title:not(:first-child) { margin-top: 28px; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-cats { grid-template-columns: 1fr 1fr; column-gap: 20px; }
.footer-list a { text-decoration: none; color: rgba(255, 255, 255, .82); }
.footer-list a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 3px; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 6px; font-size: .86rem; color: rgba(255, 255, 255, .55); }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .8); }

/* ---------- cookiemelding ---------- */
.cookie-notice {
  position: fixed; left: 20px; bottom: 20px; z-index: 60; max-width: 440px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 20px 22px; display: grid; gap: 14px; font-size: .94rem;
  animation: slideup .4s cubic-bezier(.34, 1.56, .64, 1);
}
.cookie-notice p { margin: 0; color: var(--ink-2); line-height: 1.5; }
.cookie-notice a { color: var(--ink); font-weight: 600; }
.cookie-notice .btn { justify-self: start; }
@keyframes slideup { from { transform: translateY(24px); opacity: 0; } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-art { justify-self: center; max-width: 460px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .money { grid-template-columns: 1fr; padding: 48px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .cat-grid, .cat-grid-3, .tips { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .cat-hero-grid { grid-template-columns: 1fr; }
  .cat-hero-art { display: none; }
  .cat-hero { padding-bottom: 112px; }
  .cta-band { padding: 40px 32px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .header-inner { height: 68px; }
  .hero { padding: 40px 0 88px; }
  .hero h1 { font-size: clamp(2.1rem, 9.6vw, 2.6rem); }
  .hl { white-space: normal; }
  .hero-checks { gap: 6px 16px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .bento { gap: 10px; transform: rotate(-2deg); }
  .bento-tile { border-radius: 18px; padding: 10px; }
  .bento-ico { width: 36px; height: 36px; border-radius: 11px; }
  .bento-ico .icon { width: 18px; height: 18px; }
  .bento-label { font-size: .8rem; }
  .count-pill { left: 50%; bottom: -50px; transform: translateX(-50%) rotate(-2deg); font-size: .86rem; }
  .sticker { width: 84px; height: 84px; font-size: .78rem; top: -44px; right: -10px; }
  .sticker b { font-size: 1.15rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .cat-grid, .cat-grid-3, .tips { grid-template-columns: 1fr; }
  .cat-card { padding: 24px; }
  .money { padding: 36px 24px; border-radius: 28px; }
  .tool-card { padding: 20px; border-radius: 22px; }
  .tool-placeholder { flex-direction: column; align-items: flex-start; padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-notice { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .mobile-cats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
