/* ==========================================================================
   OnlineVooruit — statische productie-stylesheet
   Handgeschreven CSS (geen build-stap, geen Tailwind-CDN) zodat dit
   bestand direct en zonder afhankelijkheden werkt op gewone webhosting.

   Designrichting: rustig, volwassen Nederlands webdesign. Typografie,
   witruimte en compositie dragen het ontwerp — niet decoratie.
   ========================================================================== */

/* --- Design tokens -------------------------------------------------- */
:root {
  --navy-50:  #f2f5fa;
  --navy-100: #e3e9f3;
  --navy-200: #c3d0e6;
  --navy-300: #93a9cf;
  --navy-400: #5c78ac;
  --navy-500: #39548a;
  --navy-600: #28406f;
  --navy-700: #1f335a;
  --navy-800: #13203e;
  --navy-900: #0b1730;

  --accent-50:  #eef6ff;
  --accent-100: #d9ecff;
  --accent-200: #b8dcff;
  --accent-400: #4da5ff;
  --accent-500: #2483fa;
  --accent-600: #1263e0;
  --accent-700: #0f4fb8;
  --accent-800: #134394;

  --white: #ffffff;

  /* Neutrale, niet-blauwe achtergrondtint voor sectie-afwisseling. */
  --surface-alt: #f7f7f5;
  --line-neutral: #e8e8e4;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --shadow-subtle: 0 1px 2px 0 rgb(11 23 48 / 0.05);
  --shadow-lift: 0 10px 28px -14px rgb(11 23 48 / 0.28);

  --radius-md: 0.5rem;
  --radius-lg: 0.7rem;
  --radius-full: 9999px;

  --content-max: 1180px;
  --text-max: 40rem;
  --gutter: 20px;

  color-scheme: light;
}

@media (min-width: 640px) {
  :root { --gutter: 28px; }
}
@media (min-width: 1024px) {
  :root { --gutter: 40px; }
}

/* --- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; text-wrap: balance; }
p { margin: 0; }
svg { display: block; }

::selection { background: var(--accent-200); color: var(--navy-900); }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-500);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Layout helpers ----------------------------------------------------- */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.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;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-600);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.btn-md { padding: 0.7rem 1.15rem; font-size: 0.9375rem; }
.btn-lg { padding: 0.95rem 1.65rem; font-size: 1rem; }

.btn-solid {
  background: var(--accent-600);
  color: var(--white);
  box-shadow: var(--shadow-subtle);
}
.btn-solid:hover { background: var(--accent-700); transform: translateY(-1px); }
.btn-solid:active { background: var(--accent-800); transform: translateY(0); }

.btn-outline {
  border: 1px solid var(--navy-200);
  background: var(--white);
  color: var(--navy-800);
}
.btn-outline:hover { border-color: var(--accent-200); background: var(--accent-50); }

.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-700);
  transition: color 0.2s ease, gap 0.2s ease;
}
.text-link svg { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
.text-link:hover { color: var(--accent-600); gap: 0.7rem; }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgb(255 255 255 / 0.98);
  border-bottom: 1px solid var(--line-neutral);
}
.site-header__row {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .site-header__row { height: 4rem; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.brand img { height: 1.9rem; width: auto; }
.brand span {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.brand .accent { color: var(--accent-600); }

.main-nav {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-600);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--navy-900); }

.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  border-radius: var(--radius-md);
  color: var(--navy-700);
  transition: background-color 0.2s ease;
}
.menu-toggle:hover { background: var(--navy-50); }
.menu-toggle svg { width: 1.3rem; height: 1.3rem; }
.icon-close { display: none; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line-neutral);
  background: var(--white);
  padding: 0.75rem 20px 1.75rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  border-radius: var(--radius-md);
  padding: 0.85rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-700);
  transition: background-color 0.2s ease;
}
.mobile-menu a:hover { background: var(--navy-50); }
.mobile-menu .btn { margin-top: 0.85rem; }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* --- Sections / rhythm ---------------------------------------------------- */
section { position: relative; }
.section-pad { padding-block: 3.25rem; }
@media (min-width: 640px) {
  .section-pad { padding-block: 6.5rem; }
}

.bg-tint { background: var(--surface-alt); border-block: 1px solid var(--line-neutral); }
.bg-dark { background: var(--navy-900); color: var(--white); }
.bg-accent-tint { background: var(--accent-50); }

.bg-grid {
  background-image:
    linear-gradient(to right, rgb(11 23 48 / 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(11 23 48 / 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* --- Reveal-on-scroll ------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Hero: text-first, veel witruimte ------------------------------------ */
.hero { overflow: hidden; padding-block: 2.75rem 3rem; }
@media (min-width: 640px) { .hero { padding-block: 5.5rem 6rem; } }
@media (min-width: 1024px) { .hero { padding-block: 7.5rem 7rem; } }

.hero__inner {
  position: relative;
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .hero__inner { gap: 4rem; }
}

.hero__content { min-width: 0; }

.hero__photo {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-neutral);
  box-shadow: var(--shadow-subtle);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-600);
}

.hero__title {
  margin-top: 1rem;
  max-width: 16ch;
  font-size: 2.375rem;
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--navy-900);
}
@media (min-width: 640px) { .hero__title { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 4.25rem; } }

.hero__lead {
  margin-top: 1.1rem;
  max-width: 30rem;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--navy-600);
}

.hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; align-items: center; }
}

.hero__note {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  max-width: 26rem;
  border-top: 1px solid var(--line-neutral);
  font-size: 0.8125rem;
  color: var(--navy-500);
}

/* --- Benefits: rustige rij, geen kaarten --------------------------------- */
.benefits { padding-block: 2.5rem; }
@media (min-width: 640px) { .benefits { padding-block: 4.5rem; } }

.benefits__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.benefit {
  display: flex;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .benefit { flex-direction: column; gap: 0; }
  .benefit + .benefit { border-left: 1px solid var(--line-neutral); padding-left: 2.25rem; }
}
.benefit__icon {
  flex-shrink: 0;
  color: var(--accent-600);
}
.benefit__icon svg { width: 1.35rem; height: 1.35rem; }
@media (min-width: 640px) { .benefit__icon { margin-bottom: 1.1rem; } .benefit__icon svg { width: 1.6rem; height: 1.6rem; } }
.benefit h3 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.benefit p { margin-top: 0.35rem; font-size: 0.875rem; line-height: 1.5; color: var(--navy-600); }
@media (min-width: 640px) {
  .benefit h3 { font-size: 1.0625rem; }
  .benefit p { margin-top: 0.45rem; font-size: 0.9375rem; line-height: 1.6; }
}

/* --- Wat je krijgt: lijst, geen kaarten ----------------------------------- */
.deliver__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .deliver__grid { gap: 2.75rem; } }
@media (min-width: 1024px) {
  .deliver__grid { grid-template-columns: 0.8fr 1.2fr; gap: 4.5rem; }
}
.deliver__intro h2 { margin-top: 0.65rem; font-size: 1.65rem; line-height: 1.2; letter-spacing: -0.02em; }
@media (min-width: 640px) { .deliver__intro h2 { margin-top: 0.85rem; font-size: 2.375rem; } }
.deliver__intro p { margin-top: 0.85rem; max-width: 26rem; font-size: 0.875rem; line-height: 1.55; color: var(--navy-600); }
@media (min-width: 640px) { .deliver__intro p { margin-top: 1.1rem; font-size: 0.9375rem; line-height: 1.65; } }
@media (min-width: 1024px) {
  .deliver__intro { position: sticky; top: 7rem; align-self: flex-start; }
}

.deliver__list { border-top: 1px solid var(--line-neutral); }
.deliver__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line-neutral);
}
@media (min-width: 640px) { .deliver__item { gap: 0.9rem; padding-block: 1.1rem; } }
.deliver__item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent-600);
}
.deliver__item span { font-size: 0.9rem; line-height: 1.45; color: var(--navy-800); font-weight: 500; }
@media (min-width: 640px) { .deliver__item span { font-size: 0.9875rem; line-height: 1.5; } }

/* --- Werkwijze: grote nummers, geen icon-cards ---------------------------- */
.process__intro { max-width: 34rem; }
.process__intro h2 { margin-top: 0.65rem; font-size: 1.65rem; line-height: 1.2; letter-spacing: -0.02em; }
@media (min-width: 640px) { .process__intro h2 { margin-top: 0.85rem; font-size: 2.375rem; } }
.process__intro .eyebrow { color: var(--accent-400); }

.process__grid {
  position: relative;
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem 1.5rem;
}
@media (min-width: 640px) { .process__grid { margin-top: 3.75rem; gap: 3rem 2rem; grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process__grid { grid-template-columns: repeat(4, 1fr); } }

.process__line {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 2.2rem;
  height: 1px;
  background: rgb(255 255 255 / 0.12);
}
@media (min-width: 1024px) { .process__line { display: block; } }

.process-step__number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-400);
  line-height: 1;
}
@media (min-width: 640px) { .process-step__number { font-size: 2.5rem; } }
.process-step h3 { margin-top: 0.85rem; font-size: 1.0625rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
@media (min-width: 640px) { .process-step h3 { margin-top: 1.1rem; font-size: 1.125rem; } }
.process-step p { margin-top: 0.4rem; font-size: 0.875rem; line-height: 1.5; color: var(--navy-200); max-width: 22rem; }
@media (min-width: 640px) { .process-step p { margin-top: 0.5rem; font-size: 0.9375rem; line-height: 1.6; } }

/* --- Eerst zien, dan beslissen: signature-sectie -------------------------- */
.trust { text-align: center; }
.trust__statement { margin-inline: auto; max-width: 38rem; }
.trust h2 {
  font-size: 2.125rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}
@media (min-width: 640px) { .trust h2 { font-size: 2.75rem; } }
.trust__lead {
  margin: 1.1rem auto 0;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--navy-600);
}
@media (min-width: 640px) { .trust__lead { margin-top: 1.5rem; font-size: 1.0625rem; line-height: 1.6; } }

.trust__row {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.75rem;
  text-align: left;
}
@media (min-width: 640px) { .trust__row { margin-top: 4rem; } }
@media (min-width: 768px) {
  .trust__row { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.trust__item {
  padding-top: 1.1rem;
  border-top: 1px solid var(--navy-200);
}
.trust__index {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-600);
}
.trust__item h3 { margin-top: 0.6rem; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
@media (min-width: 640px) { .trust__item h3 { margin-top: 0.75rem; font-size: 1.0625rem; } }
.trust__item p { margin-top: 0.35rem; font-size: 0.875rem; line-height: 1.5; color: var(--navy-600); }
@media (min-width: 640px) { .trust__item p { margin-top: 0.4rem; font-size: 0.9375rem; line-height: 1.6; } }

/* --- Voor wie: compact en elegant, geen iconenmuur ------------------------ */
.audience__intro { margin-inline: auto; max-width: 42rem; text-align: center; }
.audience__intro h2 { margin-top: 0.65rem; font-size: 1.65rem; line-height: 1.25; letter-spacing: -0.02em; }
@media (min-width: 640px) { .audience__intro h2 { margin-top: 0.85rem; font-size: 2.375rem; } }

.audience__list {
  margin: 1.75rem auto 0;
  max-width: 46rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--navy-700);
  font-weight: 500;
}
@media (min-width: 640px) { .audience__list { margin-top: 2.5rem; font-size: 1.0625rem; line-height: 1.9; } }
.audience__list .dot { margin-inline: 0.55em; color: var(--navy-300); font-weight: 400; }
.audience__note { margin: 1.25rem auto 0; max-width: 32rem; text-align: center; font-size: 0.8125rem; color: var(--navy-500); }
@media (min-width: 640px) { .audience__note { margin-top: 1.75rem; font-size: 0.9rem; } }

/* --- Over OnlineVooruit: rustig statement --------------------------------- */
.about__inner { margin-inline: auto; max-width: 38rem; text-align: center; }
.about__inner .eyebrow { text-align: center; }
.about__inner h2 {
  margin-top: 0.65rem;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 700;
}
@media (min-width: 640px) { .about__inner h2 { margin-top: 0.85rem; font-size: 2.125rem; } }
.about__body { margin-top: 1.1rem; font-size: 0.9375rem; line-height: 1.6; color: var(--navy-600); }
@media (min-width: 640px) { .about__body { margin-top: 1.5rem; font-size: 1.0625rem; line-height: 1.75; } }

/* --- FAQ: minimalistisch, geen zware kaarten ------------------------------ */
.faq__intro { margin-inline: auto; max-width: 34rem; text-align: center; }
.faq__intro h2 { margin-top: 0.65rem; font-size: 1.65rem; line-height: 1.25; letter-spacing: -0.02em; }
@media (min-width: 640px) { .faq__intro h2 { margin-top: 0.85rem; font-size: 2.375rem; } }

.faq__list {
  margin: 2rem auto 0;
  max-width: 42rem;
  border-top: 1px solid var(--line-neutral);
}
@media (min-width: 640px) { .faq__list { margin-top: 3rem; } }
.faq-item { border-bottom: 1px solid var(--line-neutral); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.05rem;
  transition: color 0.2s ease;
}
@media (min-width: 640px) { .faq-item summary { padding-block: 1.35rem; } }
.faq-item summary:hover .faq-item__q { color: var(--accent-600); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item__q { font-size: 0.9875rem; font-weight: 600; color: var(--navy-900); transition: color 0.2s ease; }
@media (min-width: 640px) { .faq-item__q { font-size: 1.0625rem; } }
.faq-item__chevron { flex-shrink: 0; width: 1.15rem; height: 1.15rem; color: var(--navy-400); transition: transform 0.25s ease, color 0.25s ease; }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); color: var(--accent-500); }

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-item[open] .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer > div { overflow: hidden; }
.faq-item__answer p {
  padding-bottom: 1.05rem;
  max-width: 34rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--navy-600);
}
@media (min-width: 640px) { .faq-item__answer p { padding-bottom: 1.35rem; font-size: 0.9375rem; line-height: 1.65; } }

/* --- Final CTA: meer contrast, stijlvol ------------------------------------ */
.final-cta { text-align: center; }
.final-cta h2 { margin-inline: auto; max-width: 34rem; font-size: 1.85rem; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
@media (min-width: 640px) { .final-cta h2 { font-size: 2.75rem; } }
.final-cta p { margin: 0.9rem auto 0; max-width: 26rem; font-size: 0.9375rem; line-height: 1.5; color: var(--navy-200); }
@media (min-width: 640px) { .final-cta p { margin-top: 1.15rem; font-size: 1rem; line-height: 1.6; } }
.final-cta__action { margin-top: 1.5rem; display: flex; justify-content: center; }
@media (min-width: 640px) { .final-cta__action { margin-top: 2.25rem; } }

/* --- Footer ------------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--line-neutral); background: var(--white); }
.footer__grid { display: grid; gap: 2rem; padding-block: 2.5rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; padding-block: 3.5rem; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.footer__brand { }
@media (min-width: 1024px) { .footer__brand { grid-column: span 2; } }
.footer__brand .brand img { height: 1.8rem; width: auto; }
.footer__brand p { margin-top: 1rem; max-width: 24rem; font-size: 0.9rem; line-height: 1.6; color: var(--navy-500); }

.footer__heading { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy-500); }
.footer__list { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__list a { font-size: 0.9rem; color: var(--navy-600); transition: color 0.2s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__list a:hover { color: var(--navy-900); }
.footer__list svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--line-neutral);
  padding-block: 1.5rem;
}
@media (min-width: 640px) { .footer__bottom { padding-block: 2rem; } }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__bottom p { font-size: 0.8125rem; color: var(--navy-500); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer__legal a { font-size: 0.8125rem; color: var(--navy-500); transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--navy-700); }

/* --- Permanent zichtbare WhatsApp-knop (alle schermformaten) -------------- */
.sticky-wa {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 40;
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--accent-600);
  color: var(--white);
  box-shadow: var(--shadow-lift);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.sticky-wa:hover { background: var(--accent-700); transform: translateY(-2px); }
.sticky-wa svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .sticky-wa { right: 1.75rem; bottom: 1.75rem; width: 3.75rem; height: 3.75rem; } }

/* --- Legal pagina's (privacy / cookies / voorwaarden) --------------------- */
.legal { padding-block: 3rem; }
@media (min-width: 640px) { .legal { padding-block: 5.5rem; } }
.legal__inner { margin-inline: auto; max-width: 40rem; }
.legal h1 { font-size: 1.9rem; letter-spacing: -0.02em; }
@media (min-width: 640px) { .legal h1 { font-size: 2.25rem; } }
.legal__body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.9375rem; line-height: 1.7; color: var(--navy-600); }
.legal__body a { color: var(--accent-600); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

/* --- 404 --------------------------------------------------------------- */
.notfound { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-block: 5rem; }
.notfound__code { font-size: 4rem; font-weight: 700; color: var(--accent-500); letter-spacing: -0.03em; }
.notfound h1 { margin-top: 0.5rem; font-size: 1.5rem; }
.notfound p { margin-top: 0.75rem; color: var(--navy-600); }
.notfound .btn { margin-top: 1.75rem; }
