/* ====== Gedeelde stijlen voor juridische pagina's (privacy, voorwaarden, veiligheid) ====== */
html { scroll-behavior: smooth; }
body { background: var(--bg-0); color: var(--text-1); }

.lp-wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ---- Woordmerk (zelfde als landingpage) ---- */
.wm { display: inline-flex; align-items: center; gap: 0.09em; white-space: nowrap; font: var(--fw-display) var(--wm-size, 26px)/1 var(--font-display); letter-spacing: -0.02em; }
.wm > b { color: var(--text-1); font-weight: 800; }
.plate-word { display: inline-flex; align-items: stretch; background: var(--brand-yellow); color: var(--on-yellow); border: 0.05em solid #0E0C05; border-radius: 0.18em; overflow: hidden; line-height: 1; vertical-align: middle; }
.plate-word__band { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; background: var(--plate-blue); padding: 0 0.16em; gap: 0.06em; }
.plate-word__band svg { display: block; width: 0.52em; height: 0.52em; }
.plate-word__band b { font: 700 0.28em/1 var(--font-sans); color: #fff; letter-spacing: 0.02em; }
.plate-word__txt { flex: none; white-space: nowrap; display: inline-flex; align-items: center; padding: 0 0.34em 0.05em 0.26em; font-weight: 800; }

/* ---- Header ---- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg-0) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-1);
}
.lp-header__row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp-header__actions { display: inline-flex; align-items: center; gap: 14px; }
.lp-header__back { color: var(--text-2); text-decoration: none; font: var(--fw-semibold) var(--fs-small)/1 var(--font-sans); transition: color 120ms ease; }
.lp-header__back:hover { color: var(--text-1); }
.lp-theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border-2); border-radius: var(--radius-m);
  cursor: pointer; transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}
.lp-theme-toggle:hover { color: var(--text-1); border-color: var(--text-3); background: var(--bg-1); }
.lp-theme-toggle svg { display: block; }
.lp-theme-toggle .icon-sun { display: block; }
.lp-theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .lp-theme-toggle .icon-sun { display: none; }
html[data-theme="light"] .lp-theme-toggle .icon-moon { display: block; }

/* ---- Artikel ---- */
.legal-main { padding: 64px 0 96px; }
.legal-article { max-width: 720px; }
.legal-kicker { font: var(--fw-semibold) var(--fs-caption)/1 var(--font-sans); letter-spacing: var(--ls-caption); text-transform: uppercase; color: var(--brand-yellow); margin: 0; }
.legal-article h1 { margin: 12px 0 0; font: var(--fw-display) 42px/1.15 var(--font-display); letter-spacing: -0.02em; color: var(--text-1); text-wrap: pretty; }
.legal-updated { margin: 16px 0 0; font-size: 14px; color: var(--text-3); }
.legal-article h2 { margin: 48px 0 0; font: var(--fw-display) 23px/1.3 var(--font-display); letter-spacing: -0.01em; color: var(--text-1); }
.legal-article p { margin: 16px 0 0; font-size: 16px; line-height: 1.65; color: var(--text-2); }
.legal-article p strong, .legal-article li strong { color: var(--text-1); font-weight: var(--fw-semibold); }
.legal-article ul { margin: 16px 0 0; padding-left: 22px; }
.legal-article li { margin: 8px 0 0; font-size: 16px; line-height: 1.6; color: var(--text-2); }
.legal-article a { color: var(--text-1); text-decoration: underline; text-underline-offset: 3px; }
.legal-article .mono { font-family: var(--font-mono); font-size: 0.92em; }

/* ---- Waarschuwingsblok (veiligheid) ---- */
.legal-warn {
  margin: 24px 0 0; padding: 18px 20px;
  background: var(--bg-1); border: 1px solid var(--border-2); border-left: 3px solid var(--brand-yellow);
  border-radius: var(--radius-m);
}
.legal-warn p { margin: 0; color: var(--text-1); }
.legal-warn p + p { margin-top: 10px; }

/* ---- Footer (zelfde als landingpage) ---- */
.lp-footer { border-top: 1px solid var(--border-1); padding: 44px 0 56px; margin-top: 32px; }
.lp-footer__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.lp-footer__brand { max-width: 30em; }
.lp-footer__brand p { margin: 14px 0 0; font-size: 14px; line-height: 1.55; color: var(--text-3); }
.lp-footer__links { display: flex; gap: 56px; flex-wrap: wrap; }
.lp-footer__col { display: flex; flex-direction: column; gap: 12px; }
.lp-footer__col h4 { margin: 0 0 4px; font: var(--fw-semibold) var(--fs-caption)/1 var(--font-sans); letter-spacing: var(--ls-caption); text-transform: uppercase; color: var(--text-3); }
.lp-footer__col a { color: var(--text-2); text-decoration: none; font-size: 14px; transition: color 120ms ease; }
.lp-footer__col a:hover { color: var(--text-1); }
.lp-footer__legal { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-3); font-size: 13px; }
.lp-footer__legal .mono { font-family: var(--font-mono); }

@media (max-width: 640px) {
  .lp-wrap { padding: 0 20px; }
  .legal-main { padding: 44px 0 64px; }
  .legal-article h1 { font-size: 32px; }
  .lp-header__back { display: none; }
}
