:root {
  /* Zeer donker professioneel blauw (header, footer, knoppen, links) */
  --primary: #06274d;
  --primary-hover: #041a33;
  --primary-light: #dce4ee;
  --bg: #f0f2f5;
  --surface: #ffffff;
  --text: #050505;
  --muted: #65676b;
  --soft: #8a8d91;
  --border: #dadde1;
  --emergency: #e41e3f;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --font: "Segoe UI Historic", "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-inline: max(0px, env(safe-area-inset-left, 0px)) max(0px, env(safe-area-inset-right, 0px));
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4.2vw, 1.35rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: max(0.85rem, env(safe-area-inset-top, 0px)) 0 0.85rem;
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.75rem;
}

.header-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 1.2vw, 0.65rem);
  flex: 1;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.85rem);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw + 0.5rem, 1.25rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  min-width: 0;
}

.brand:hover {
  text-decoration: none;
  opacity: 0.9;
}

.brand img {
  width: clamp(36px, 10vw, 44px);
  height: clamp(36px, 10vw, 44px);
  flex-shrink: 0;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.05rem 0.22rem;
  max-width: 100%;
}

.site-header .site-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.5vw + 0.65rem, 0.95rem);
  padding: 0.4rem 0.42rem;
  border-radius: 8px;
  white-space: nowrap;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(0.78rem, 1.4vw + 0.62rem, 0.9rem);
  line-height: 1.2;
  cursor: pointer;
}

.lang-switcher__btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.lang-switcher__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.lang-switcher__current-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-switcher__current-code {
  letter-spacing: 0.04em;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 400;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.lang-switcher__menu[hidden] {
  display: none !important;
}

.lang-switcher__menu:not([hidden]) {
  display: block;
}

.lang-switcher__menu li {
  margin: 0;
  padding: 0;
}

.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0;
  padding: 0.48rem 0.95rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: clamp(0.82rem, 0.3vw + 0.78rem, 0.92rem);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.lang-switcher__item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lang-switcher__item.is-active {
  color: #ff7a4d;
  font-weight: 700;
}

.lang-switcher__fi {
  flex-shrink: 0;
  width: 1.45rem;
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
}

.site-header .site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.site-header .site-nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .header-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .header-end {
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .site-nav {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

.nav-target .note a {
  color: var(--primary);
  font-weight: 600;
}

.hero {
  padding: clamp(2.75rem, 7.5vw, 6rem) 0 clamp(4rem, 10.5vw, 8.75rem);
  background: linear-gradient(165deg, #d4dce6 0%, var(--bg) 55%);
}

.hero-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: stretch;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 1.2vw + 1.2rem, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--primary);
  text-wrap: balance;
}

.hero-shot {
  margin: clamp(1.5rem, 5vw, 3cm) 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 800px) {
  .hero-shot {
    justify-content: center;
  }
}

.hero-shot img {
  width: 100%;
  max-width: min(300px, min(88vw, 100%));
  height: auto;
  border-radius: clamp(18px, 4vw, 28px);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 48px rgba(6, 39, 77, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.07);
}

.hero-lead {
  flex-shrink: 0;
}

.hero-lead p,
.hero-lead li {
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.12rem);
  color: var(--muted);
  text-wrap: pretty;
}

.hero-lead p {
  margin: 0 0 0.85rem;
  line-height: 1.6;
}

.hero-lead p:last-child {
  margin-bottom: 0;
}

.hero-lead ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-lead li {
  margin-bottom: 0.45rem;
}

.hero-lead li:last-child {
  margin-bottom: 0;
}

/* Ruimte tussen lange intro en knoppen: min. ~3 cm; op desktop vult flex de kolom naast de telefoon */
.hero-tail-spacer {
  flex: 1 1 0;
  min-height: clamp(2.5rem, 6vw, 3cm);
  width: 100%;
}

.hero-actions {
  flex-shrink: 0;
  width: 100%;
}

.hero-copy .cta-row {
  margin-top: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
}

@media (max-width: 480px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
    min-height: 48px;
  }
}

.hero-actions .store-row {
  margin-top: 2cm;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
}

@media (max-width: 520px) {
  .store-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .store-badge-link {
    display: block;
    max-width: min(320px, 100%);
    margin-inline: auto;
  }

  .store-badge-img {
    width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
  }
}

.store-badge-link {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  opacity: 0.95;
}

.store-badge-link:focus {
  outline: none;
}

.store-badge-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.store-badge-img {
  display: block;
  height: clamp(46px, 11vw, 54px);
  width: auto;
  max-width: 100%;
  border: 0;
  vertical-align: bottom;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: clamp(0.95rem, 0.4vw + 0.9rem, 1rem);
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 39, 77, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(6, 39, 77, 0.42);
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

section {
  padding: clamp(4rem, 10.5vw, 7.5rem) 0 clamp(4.25rem, 11vw, 7.75rem);
}

section:nth-child(even) {
  background: var(--surface);
}

/* Over ons: zelfde afstand als hero; screenshot links, tekst rechts */
.over-ons-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 800px) {
  .over-ons-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
}

.over-ons-shot {
  margin: clamp(0.5rem, 2vw, 1rem) 0 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 800px) {
  .over-ons-shot {
    margin-top: 0;
    justify-content: center;
  }
}

.over-ons-shot img {
  width: 100%;
  max-width: min(300px, min(88vw, 100%));
  height: auto;
  border-radius: clamp(18px, 4vw, 28px);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 48px rgba(6, 39, 77, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.07);
}

.over-ons-copy {
  min-width: 0;
}

/* Forum en SOS: tekst links, screenshot rechts (zelfde maat en gap als Over ons) */
.forum-split,
.sos-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 800px) {
  .forum-split,
  .sos-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
}

.forum-shot,
.sos-shot {
  margin: clamp(0.5rem, 2vw, 1rem) 0 0;
  display: flex;
  justify-content: center;
}

.forum-shot img,
.sos-shot img {
  width: 100%;
  max-width: min(300px, min(88vw, 100%));
  height: auto;
  border-radius: clamp(18px, 4vw, 28px);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 48px rgba(6, 39, 77, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.07);
}

@media (min-width: 800px) {
  .forum-shot,
  .sos-shot {
    margin-top: 1cm;
    justify-content: center;
    align-items: center;
    width: min(300px, 100%);
    max-width: 300px;
    aspect-ratio: 472 / 1024;
    margin-inline: auto;
    background: var(--surface);
    border-radius: clamp(18px, 4vw, 28px);
    border: 1px solid var(--border);
    box-sizing: border-box;
    box-shadow:
      0 24px 48px rgba(6, 39, 77, 0.2),
      0 8px 24px rgba(0, 0, 0, 0.07);
  }

  .forum-shot img,
  .sos-shot img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border: 0;
    box-shadow: none;
  }
}

.forum-copy,
.sos-copy {
  min-width: 0;
}

.sos-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  min-width: 0;
  width: 100%;
}

.sos-subshots {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
  width: 100%;
  max-width: min(300px, 100%);
}

.sos-subshots img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 3vw, 20px);
  border: 1px solid var(--border);
  box-shadow:
    0 12px 28px rgba(6, 39, 77, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

.forum-points {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 65ch;
}

.forum-points li {
  margin-bottom: 0.65rem;
}

.forum-points li:last-child {
  margin-bottom: 0;
}

.forum-points li strong {
  color: var(--primary);
}

.forum-copy .forum-store-row {
  margin-top: 3cm;
}

#bedrijven .bedrijven-store-row {
  margin-top: 2cm;
}

#meldpunten .meldpunten-slider-hint {
  margin: 0.2rem 0 0;
  max-width: 65ch;
  font-size: clamp(0.82rem, 0.22vw + 0.76rem, 0.9rem);
  line-height: 1.5;
  color: var(--muted);
}

#meldpunten .meldpunten-slider-hint strong {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Meldpunten: app-kaart als laag achter de tekst */
.meldpunten-panel {
  position: relative;
  overflow: hidden;
  border-radius: clamp(14px, 2.5vw, 20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: clamp(210px, 42vw, 270px);
}

.meldpunten-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.meldpunten-panel__bg img {
  position: absolute;
  right: clamp(-0.5rem, -1vw, 0px);
  top: 50%;
  transform: translateY(-50%);
  width: min(92%, 360px);
  height: auto;
  max-height: 118%;
  object-fit: contain;
  object-position: right center;
}

.meldpunten-panel__copy {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3.5vw, 2rem) min(46%, 22rem) clamp(1.25rem, 3.5vw, 2rem) clamp(1.25rem, 3.5vw, 2rem);
  background: linear-gradient(
    100deg,
    var(--surface) 0%,
    rgba(255, 255, 255, 0.98) 22%,
    rgba(255, 255, 255, 0.9) 44%,
    rgba(255, 255, 255, 0.55) 58%,
    rgba(255, 255, 255, 0.12) 74%,
    transparent 92%
  );
}

@media (max-width: 640px) {
  .meldpunten-panel {
    min-height: 0;
  }

  .meldpunten-panel__bg img {
    width: 110%;
    max-height: none;
    opacity: 0.28;
    right: -8%;
  }

  .meldpunten-panel__copy {
    padding: clamp(1.1rem, 3vw, 1.5rem);
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 45%,
      rgba(255, 255, 255, 0.72) 100%
    );
  }
}

/* Dagboek: screenshot links, tekst rechts (zelfde lay-out als Over ons) */
.dagboek-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 800px) {
  .dagboek-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
}

.dagboek-shot {
  margin: clamp(0.5rem, 2vw, 1rem) 0 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 800px) {
  .dagboek-shot {
    margin-top: 0;
    justify-content: center;
  }
}

.dagboek-shot img {
  width: 100%;
  max-width: min(300px, min(88vw, 100%));
  height: auto;
  border-radius: clamp(18px, 4vw, 28px);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 48px rgba(6, 39, 77, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.07);
}

.dagboek-copy {
  min-width: 0;
}

/* Partnerlogo’s: band over volle schermbreedte, beweegt van rechts naar links */
.partner-band {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-block: clamp(3.25rem, 7.5vw, 5.75rem);
  background: linear-gradient(90deg, #e4eaf2 0%, #d8e2ed 35%, #dce6f0 65%, #e4eaf2 100%);
  border-block: 1px solid var(--border);
  padding: clamp(1.15rem, 2.8vw, 1.65rem) 0;
  overflow: hidden;
}

.partner-band__viewport {
  overflow: hidden;
  width: 100%;
}

.partner-band__track {
  display: flex;
  width: max-content;
  animation: partner-marquee 28s linear infinite;
}

.partner-band:hover .partner-band__track {
  animation-play-state: paused;
}

.partner-band__logos {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.partner-band__logos img {
  height: clamp(44px, 9vw, 64px);
  width: auto;
  max-width: min(220px, 36vw);
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.95;
}

@keyframes partner-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-band__logos--clone {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .partner-band__track {
    animation: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    row-gap: 1.1rem;
    column-gap: 0;
  }

  .partner-band__logos {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    row-gap: 1rem;
    column-gap: clamp(1.25rem, 4vw, 2.5rem);
    padding-inline: clamp(0.75rem, 2.5vw, 1.5rem);
  }

  .partner-band__logos img {
    height: clamp(48px, 12vw, 76px);
    max-width: min(240px, 42vw);
  }
}

#voor-wie .wrap > .card-grid + p {
  margin-top: 2cm;
}

section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 0.8vw + 1.05rem, 1.65rem);
  color: var(--primary);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.wat-sub {
  margin: 1.5rem 0 0.65rem;
  font-size: clamp(1.08rem, 0.6vw + 1rem, 1.3rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.wat-sub:first-of-type {
  margin-top: 1.15rem;
}

section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 65ch;
  text-wrap: pretty;
}

section p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.card-grid--after-list {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--three {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  #voor-wie .card-grid--three .card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.card {
  padding: clamp(1.2rem, 3.2vw, 1.55rem) clamp(1.15rem, 3.2vw, 1.5rem);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 0;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.05rem, 0.35vw + 0.98rem, 1.18rem);
  color: var(--primary);
}

.card p {
  margin: 0;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.08rem);
  line-height: 1.6;
}

#voor-wie .card-grid--three .card {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(6, 39, 77, 0.35);
}

#voor-wie .card-grid--three .card h3,
#voor-wie .card-grid--three .card p {
  color: #fff;
}

#voor-wie .card-grid--three .card h3 {
  font-size: clamp(1.1rem, 0.45vw + 1rem, 1.28rem);
}

#voor-wie .card-grid--three .card p {
  font-size: clamp(1.02rem, 0.3vw + 0.96rem, 1.12rem);
}

.list-check {
  margin: 1rem 0 0;
  padding-inline-start: clamp(1rem, 3vw, 1.2rem);
  color: var(--muted);
}

.list-check li {
  margin-bottom: 0.45rem;
}

.list-check li:last-child {
  margin-bottom: 0;
}

.note {
  margin-top: clamp(1.75rem, 4vw, 2.35rem);
  padding: clamp(1rem, 2.8vw, 1.2rem) clamp(1rem, 3vw, 1.25rem);
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.08rem);
  line-height: 1.55;
  color: var(--muted);
  background: var(--primary-light);
  border-radius: var(--radius);
  border: 1px solid rgba(6, 39, 77, 0.18);
}

.contact-block {
  margin-top: 1rem;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
}

.contact-block p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: none;
}

.contact-block a {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.1rem);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  word-break: break-word;
  display: inline-block;
  max-width: 100%;
  padding: 0.15rem 0;
}

.contact-block a:hover {
  border-bottom-color: #fff;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--primary);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
}

.footer-main {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.75rem, 4vw, 2.25rem);
  grid-template-columns: 1fr;
}

.footer-col {
  min-width: 0;
}

@media (min-width: 720px) {
  .footer-main {
    grid-template-columns: 1.15fr 1fr 1.2fr;
    align-items: start;
  }
}

.footer-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-desc {
  margin: 0;
  line-height: 1.55;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.86);
}

.footer-portals {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-portal-label {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-portal-label:not(:first-child) {
  margin-top: 0.75rem;
}

.footer-portal-link {
  display: inline-block;
  margin: 0;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ff9a6c;
  text-decoration: none;
}

.footer-portal-link:hover {
  color: #ffc9a8;
  text-decoration: underline;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-address {
  margin: 0 0 1rem;
  font-style: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.footer-mail {
  margin: 0 0 0.45rem;
}

.footer-mail:last-child {
  margin-bottom: 0;
}

.footer-mail a {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-mail a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-hint {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--primary-hover);
  padding: 1rem 0 max(1.25rem, env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom p {
  margin: 0;
  padding-inline: 0.5rem;
  text-wrap: balance;
}

/* Juridische subpagina’s */
.legal-page {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 8vw, 4rem);
  background: var(--surface);
  min-height: 50vh;
}

.legal-page .wrap {
  max-width: 720px;
}

.legal-page h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--text);
  letter-spacing: -0.02em;
}

.legal-page p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
}
