/* ==========================================================================
   RitGenie — gedeelde stylesheet
   Kleuren: navy #1A3A52 · brons #C97D5C · groen #6FD86F · wit #FFFFFF
   ========================================================================== */

:root {
  --navy:        #1A3A52;
  --navy-900:    #12293b;
  --navy-700:    #234c6a;
  --bronze:      #C97D5C;
  --bronze-dark: #b26847;
  --green:       #6FD86F;
  --green-dark:  #3fae4f;
  --amber:       #EFB43C;   /* primaire CTA (goud), navy tekst = WCAG AA */
  --amber-dark:  #d99f28;
  --white:       #ffffff;

  --ink:         #1b2733;   /* hoofdtekst */
  --muted:       #5a6b7a;   /* subtekst */
  --line:        #e4e9ee;   /* randen */
  --bg:          #ffffff;
  --bg-soft:     #f5f8fb;   /* lichte sectie */
  --bg-tint:     #eef4f9;

  --radius:      16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(26,58,82,.06);
  --shadow-md:   0 10px 30px rgba(26,58,82,.10);
  --shadow-lg:   0 24px 60px rgba(26,58,82,.16);

  --maxw:        1140px;
  --font:        'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bronze-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.1rem; margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 14px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--amber); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-dark); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--bronze); color: var(--bronze-dark); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #f0f4f8; }
.btn--lg { padding: 16px 32px; font-size: 1.08rem; }
/* Live-demo call-to-action in de hero */
.hero__demo { margin: 20px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.hero__demo-note { font-size: .92rem; color: #b8c6d4; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.brand:hover { text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }

/* Tekst-woordmerk (matcht de app): 'Rit' + 'Genie' in goud */
.wordmark { font-family: var(--font); font-weight: 700; letter-spacing: -.01em; line-height: 1; white-space: nowrap; }
.wordmark__rit { color: var(--navy); }
.wordmark__genie { color: #EFB43C; }
.site-footer .wordmark__rit { color: #fff; }
.site-footer .wordmark__genie { color: #FFD98A; }
.footer__brand .wordmark { font-size: 1.3rem; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--navy); font-weight: 500; font-size: .98rem; }
.nav__links a:hover { color: var(--bronze-dark); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .85rem; color: var(--navy);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; line-height: 1;
}
.lang-switch:hover { border-color: var(--bronze); color: var(--bronze-dark); text-decoration: none; }
.lang-switch svg { width: 15px; height: 15px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(201,125,92,.22), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(111,216,111,.16), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0 96px;
}
.hero h1 { color: #fff; }
.hero__lead { font-size: 1.2rem; color: #cfdbe6; max-width: 34ch; margin-bottom: 28px; }
.hero .eyebrow { color: var(--green); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { margin-top: 20px; font-size: .92rem; color: #b8c6d4; }
.hero__note strong { color: #fff; }

/* hero redesign: portaal-dominant, app ervoor */
.hero .container { max-width: 1340px; }
.hero__intro--center { max-width: 880px; margin: 0 auto; text-align: center; padding: 66px 0 0; }
.hero__intro--center .hero__lead { max-width: 64ch; margin-left: auto; margin-right: auto; }
.hero__intro--center .hero__cta { flex-direction: column; align-items: center; gap: 16px; }
.hero__intro--center .badges { justify-content: center; }
.hero__intro--center .hero__demo { margin: 0; justify-content: center; }
.hero__showcase { position: relative; max-width: 1300px; margin: 36px auto 0; padding-bottom: 54px; }
.hero .btn--ghost, .band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero .btn--ghost:hover, .band .btn--ghost:hover { color: #fff; border-color: #fff; }
.hero__browser { border: 1px solid rgba(255,255,255,.12); }
.hero__phone {
  position: absolute; left: -6px; bottom: 14px; width: 170px;
  background: #0c1c2b; border-radius: 26px; padding: 6px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
}
.hero__phone img { width: 100%; display: block; border-radius: 21px; }
.hero__note--center { text-align: center; max-width: 58ch; margin: 8px auto 56px; }

/* hero: stores-regel (geen dode badges) + trust-strip */
.hero__stores { margin: 14px 0 0; font-size: .92rem; color: #b8c6d4; }
.hero__stores a { color: #fff; text-decoration: underline; }
.hero__trust { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; color: #dbe4ec; }
.hero__trust svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.hero__shot-note { text-align: center; color: #b8c6d4; font-size: .85rem; margin: 14px 0 0; }

/* fiscaal-autoriteitsblok */
.fiscal-proof { max-width: 920px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 32px; background: var(--bg-soft); text-align: center; }
.fiscal-proof h2 { font-size: 1.35rem; margin-bottom: 8px; }
.fiscal-proof p { color: var(--muted); margin: 0 auto 18px; max-width: 60ch; }
.fiscal-proof__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.fiscal-proof__list li { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .92rem; font-weight: 500; color: var(--navy); }
.fiscal-proof__list li::before { content: "✓"; color: var(--green-dark); font-weight: 700; }

/* store badges */
.badges { display: flex; flex-wrap: wrap; gap: 14px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #0e2233;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  padding: 11px 20px;
  border-radius: 14px;
  min-width: 190px;
  transition: border-color .15s, transform .15s;
}
.badge:hover { text-decoration: none; border-color: var(--bronze); transform: translateY(-2px); }
.badge svg { width: 26px; height: 26px; flex: none; }
.badge__txt { display: flex; flex-direction: column; line-height: 1.15; }
.badge__txt small { font-size: .68rem; color: #b8c6d4; text-transform: uppercase; letter-spacing: .05em; }
.badge__txt span { font-size: 1.02rem; font-weight: 600; }
.badge__soon {
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  background: var(--green); color: var(--navy-900);
  padding: 2px 7px; border-radius: 6px; margin-left: 2px;
}

/* phone mockup */
.hero__intro { min-width: 0; }
.hero__art { display: flex; justify-content: center; min-width: 0; }
.phone {
  position: relative;
  width: 290px;
  background: #0c1c2b;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.05);
}
.phone__screen {
  background: linear-gradient(175deg, #12314a, #0e2740);
  border-radius: 30px;
  padding: 22px 18px 26px;
  min-height: 540px;
}
.phone__notch {
  width: 120px; height: 22px; background: #0c1c2b;
  border-radius: 0 0 14px 14px; margin: 0 auto 18px;
}
.mini-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 15px;
  margin-bottom: 12px;
}
.mini-card__label { font-size: .72rem; color: #b8c6d4; text-transform: uppercase; letter-spacing: .05em; }
.mini-card__big { font-size: 1.7rem; font-weight: 700; color: #fff; }
.mini-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 10px; }
.mini-bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--green-dark)); }
.trip {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 6px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.trip:last-child { border-bottom: 0; }
.trip__dot { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; font-size: 1rem; }
.trip__dot--biz { background: rgba(201,125,92,.22); }
.trip__dot--home { background: rgba(111,216,111,.18); }
.trip__meta { flex: 1; min-width: 0; }
.trip__meta b { color: #fff; font-size: .84rem; font-weight: 600; display: block; line-height: 1.25; }
.trip__meta small { color: #b8c6d4; font-size: .74rem; white-space: nowrap; }
.trip__tag { flex: none; white-space: nowrap; }
.trip__tag { font-size: .68rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.tag--biz { background: rgba(201,125,92,.25); color: #f0c3ae; }
.tag--home { background: rgba(111,216,111,.2); color: #b8ecb8; }

/* ---------- app screenshots showcase ---------- */
.shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.shot { text-align: center; }
.shot__frame {
  background: #0c1c2b; border-radius: 30px; padding: 8px;
  max-width: 232px; margin: 0 auto 16px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.shot__frame img { border-radius: 23px; width: 100%; display: block; }
.shot h3 { font-size: 1.02rem; margin-bottom: .25em; }
.shot p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- platform browser mockup ---------- */
.platform-shot { max-width: 960px; margin: 0 auto 52px; }
.browser {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid #d9e2ea; background: #fff;
}
.browser__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px; background: #eef2f6; border-bottom: 1px solid var(--line);
}
.browser__dots { display: flex; gap: 7px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser__dots i:nth-child(1) { background: #ff5f57; }
.browser__dots i:nth-child(2) { background: #febc2e; }
.browser__dots i:nth-child(3) { background: #28c840; }
.browser__url {
  flex: 1; max-width: 380px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 5px 14px; font-size: .8rem; color: var(--muted);
}
.browser__url b { color: var(--navy); font-weight: 600; }
.browser__img { width: 100%; display: block; }

.app-ui { display: flex; height: 460px; background: var(--bg-soft); }
.app-rail {
  width: 66px; background: var(--navy-900); flex: none;
  display: flex; flex-direction: column; align-items: center; padding: 14px 0 0; gap: 4px;
}
.app-rail__logo { width: 36px; height: 36px; border-radius: 9px; margin-bottom: 12px; }
.app-rail__item {
  width: 46px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  color: #7f94a8; margin-bottom: 2px;
}
.app-rail__item svg { width: 21px; height: 21px; }
.app-rail__item--active { background: rgba(255,255,255,.12); color: #fff; }

.app-side { width: 244px; flex: none; background: #fff; border-right: 1px solid var(--line); overflow: hidden; }
.app-side__search {
  margin: 13px; padding: 9px 13px; background: var(--bg-soft);
  border-radius: 8px; font-size: .78rem; color: #9aa9b6;
}
.app-side__tabs { display: flex; gap: 6px; padding: 0 13px 12px; }
.app-side__tab { font-size: .7rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; background: var(--bg-soft); color: var(--muted); }
.app-side__tab--active { background: var(--navy); color: #fff; }
.veh { padding: 12px 15px; border-top: 1px solid var(--line); }
.veh__top { display: flex; align-items: center; gap: 8px; }
.veh__name { font-weight: 600; font-size: .85rem; color: var(--navy); }
.veh__plate { font-size: .66rem; background: var(--bg-tint); color: var(--muted); padding: 2px 6px; border-radius: 5px; letter-spacing: .04em; }
.veh__status { margin-left: auto; font-size: .6rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; letter-spacing: .04em; }
.veh__status--on { background: rgba(111,216,111,.22); color: var(--green-dark); }
.veh__status--off { background: #eef2f6; color: #8697a5; }
.veh__meta { font-size: .73rem; color: var(--muted); margin-top: 5px; line-height: 1.55; }
.veh__bar { height: 6px; border-radius: 3px; background: #e9eef3; overflow: hidden; margin-top: 7px; max-width: 130px; }
.veh__bar > i { display: block; height: 100%; }

.app-map {
  flex: 1; position: relative; overflow: hidden;
  background:
    linear-gradient(115deg, #e8f0e6 0%, #dfeaf0 55%, #d5e6ec 100%);
}
.app-map::before, .app-map::after {
  content: ""; position: absolute; background: rgba(255,255,255,.55);
}
/* stylized "roads" */
.app-map__roads { position: absolute; inset: 0; opacity: .6; }
.app-map__roads span { position: absolute; background: #fff; border-radius: 3px; }
.app-map__water { position: absolute; background: #bcdce8; opacity: .7; border-radius: 40% 55% 50% 45%; }
.app-map__topbar {
  position: absolute; top: 0; left: 0; right: 0; height: 46px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; padding: 0 18px;
  background: linear-gradient(#fff, rgba(255,255,255,.0));
}
.app-map__title { font-weight: 600; color: var(--navy); font-size: .95rem; }
.app-map__date { font-size: .76rem; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px; }
.pin {
  position: absolute; z-index: 2; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.pin__label {
  font-size: .68rem; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 2px 9px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.pin__dot { width: 14px; height: 14px; border-radius: 50%; border: 3px solid #fff; box-shadow: var(--shadow-sm); margin-top: 3px; }
.pin__dot--on { background: var(--green-dark); }
.pin__dot--off { background: var(--bronze); }
.pin__dot--idle { background: #8697a5; }
.app-map__route { position: absolute; z-index: 1; stroke: var(--bronze); stroke-width: 3; fill: none; stroke-dasharray: 2 6; stroke-linecap: round; opacity: .8; }
.app-map__legend {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 13px; font-size: .7rem; color: var(--muted); box-shadow: var(--shadow-sm);
}
.app-map__legend b { display: block; color: var(--navy); font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.app-map__legend span { display: flex; align-items: center; gap: 7px; margin-bottom: 3px; }
.app-map__legend i { width: 9px; height: 9px; border-radius: 50%; display: block; }

/* "en verder"-lijst onder de kernvoordelen */
.more-features { margin-top: 40px; }
.more-features > h3 { text-align: center; font-size: 1.05rem; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.more-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px; max-width: 960px; margin-inline: auto; }
.more-list li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--ink); }
.more-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--green-dark); font-weight: 700; }
.more-list strong { color: var(--navy); }

/* micro-CTA per doelgroep */
.persona__cta { display: inline-block; margin-top: 8px; font-weight: 600; font-size: .92rem; color: var(--bronze-dark); }
.fleet-cta { margin-top: 30px; text-align: center; font-size: 1rem; color: var(--muted); }
.fleet-cta a { font-weight: 600; }

/* footer juridische regel */
.footer__legalnote { font-size: .82rem; color: #a9bccc; margin: 10px 0 0; }

/* ---------- feature grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7e0e8; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(201,125,92,.16), rgba(201,125,92,.06));
}
.card__icon svg { width: 27px; height: 27px; stroke: var(--bronze-dark); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- probleem → oplossing ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.panel { border-radius: var(--radius-lg); padding: 34px 32px; }
.panel--problem { background: #fbeeea; border: 1px solid #f3d9d0; }
.panel--solution { background: #eaf7ea; border: 1px solid #cfeccf; }
.panel h3 { display: flex; align-items: center; gap: 10px; }
.panel ul { list-style: none; padding: 0; margin: 0; }
.panel li { position: relative; padding: 9px 0 9px 32px; color: var(--ink); border-bottom: 1px solid rgba(0,0,0,.05); }
.panel li:last-child { border-bottom: 0; }
.panel li::before {
  position: absolute; left: 0; top: 9px; font-weight: 700; font-size: 1.05rem;
}
.panel--problem li::before { content: "✕"; color: #c0654b; }
.panel--solution li::before { content: "✓"; color: var(--green-dark); }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step { position: relative; padding-top: 8px; }
.step__num {
  counter-increment: step;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1.25rem;
  margin-bottom: 16px;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: .35em; }
.step p { color: var(--muted); margin: 0; }

/* ---------- personas ---------- */
.persona {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.persona__emoji {
  font-size: 1.6rem; width: 52px; height: 52px; flex: none;
  border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint);
}
.persona h3 { font-size: 1.08rem; margin-bottom: .25em; }
.persona p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- trust / privacy band ---------- */
.band {
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(111,216,111,.14), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 56px 48px;
}
.band h2 { color: #fff; }
.band__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 34px; }
.band__item h3 { color: #fff; display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.band__item p { color: #cfdbe6; font-size: .95rem; margin: 0; }
.band__item .ic { color: var(--green); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 14px; padding: 4px 24px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--navy); font-size: 1.05rem;
  padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--bronze); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 18px; }

/* ---------- CTA closing ---------- */
.cta-final { text-align: center; }
.cta-final .band { padding: 64px 48px; }
.cta-final .hero__cta { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #b9c8d6; padding: 60px 0 28px; }
.site-footer a { color: #cdd9e5; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer__brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: 14px; }
.footer__brand img { width: 40px; height: 40px; border-radius: 10px; }
.footer__col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 9px; }
.footer__about { max-width: 34ch; font-size: .92rem; color: #b8c6d4; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .86rem; color: #a9bccc;
}

/* ==========================================================================
   Juridische / tekstpagina's
   ========================================================================== */
.legal-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; padding: 64px 0 56px;
}
.legal-hero h1 { color: #fff; margin-bottom: .3em; }
.legal-hero p { color: #cfdbe6; margin: 0; max-width: 60ch; }
.legal-hero .updated { font-size: .88rem; color: #b8c6d4; margin-top: 14px; }

.legal { padding: 56px 0 80px; }
.legal__wrap { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal__toc {
  position: sticky; top: 92px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; background: var(--bg-soft); font-size: .92rem;
}
.legal__toc h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 12px; }
.legal__toc ul { list-style: none; padding: 0; margin: 0; }
.legal__toc li { margin-bottom: 8px; }
.legal__toc a { color: var(--navy); }

.legal__body { max-width: 760px; }
.legal__body h2 { font-size: 1.5rem; margin-top: 44px; padding-top: 8px; scroll-margin-top: 90px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.12rem; margin-top: 26px; }
.legal__body ul { padding-left: 22px; margin: 0 0 1em; }
.legal__body li { margin-bottom: 7px; }
.legal__body table { width: 100%; border-collapse: collapse; margin: 12px 0 22px; font-size: .95rem; }
.legal__body th, .legal__body td { text-align: left; padding: 11px 14px; border: 1px solid var(--line); vertical-align: top; }
.legal__body th { background: var(--bg-soft); font-weight: 600; color: var(--navy); }
.legal__body .lead { font-size: 1.12rem; color: var(--muted); }

.callout {
  border-left: 4px solid var(--bronze);
  background: var(--bg-soft);
  padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 20px 0;
}
.callout--green { border-left-color: var(--green-dark); background: #eef9ee; }
.fill { background: #fff3cd; border: 1px dashed #d9a441; color: #7a5a12; padding: 1px 7px; border-radius: 6px; font-size: .9em; font-weight: 600; }

.contact-card {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin: 8px 0 28px;
}
.contact-card .card { padding: 24px; }
.contact-card .card a { font-weight: 600; }

/* steps ordered list for account deletion */
.steplist { counter-reset: s; list-style: none; padding: 0; margin: 8px 0 24px; }
.steplist > li {
  position: relative; padding: 4px 0 22px 56px; margin: 0;
}
.steplist > li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bronze); color: #fff; font-weight: 700;
  display: grid; place-items: center;
}
.steplist > li:not(:last-child)::after {
  content: ""; position: absolute; left: 18px; top: 40px; bottom: 2px; width: 2px; background: var(--line);
}
.steplist h3 { margin: 4px 0 .3em; }
.steplist p { margin: 0; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 72px; }
  .hero__art { order: -1; }
  .hero__intro--center { padding-top: 54px; }
  .hero__showcase { margin-top: 30px; padding-bottom: 42px; }
  .hero__phone { width: 122px; left: 2px; bottom: 8px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .more-list { grid-template-columns: repeat(2, 1fr); }
  .shots { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .split, .steps, .band__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .legal__wrap { grid-template-columns: 1fr; }
  .legal__toc { position: static; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; box-shadow: var(--shadow-md);
  }
  .section { padding: 60px 0; }
  .band, .cta-final .band { padding: 40px 26px; }
  .app-side { width: 200px; }
  .app-ui { height: 380px; }
}
@media (max-width: 560px) {
  .app-side { display: none; }
  .app-rail { width: 52px; }
  .app-ui { height: 300px; }
  .browser__url { font-size: .72rem; }
}
@media (max-width: 520px) {
  .grid--3, .grid--4, .grid--2, .footer__grid { grid-template-columns: 1fr; }
  .more-list { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .hero__phone { display: none; }
  body { font-size: 16px; }
}
