/* ─── RESET & KLEUREN/VARIABELEN ─── */
/* Basis-reset (marges weghalen) + de goud/donker kleuren als CSS-variabelen. */
:root {
  --bg: #060810;
  --bg2: #0a0d16;
  --gold: #c9a84c;
  --gold2: #e8d5a0;
  --gold3: rgba(201,168,76,.15);
  --gold4: rgba(201,168,76,.06);
  --text: #f0ece4;
  --muted: rgba(240,236,228,.6);
  --muted2: rgba(240,236,228,.35);
  --line: rgba(255,255,255,.07);
  --line2: rgba(201,168,76,.18);
  --panel: rgba(255,255,255,.04);
  --panel2: rgba(255,255,255,.06);
  --radius: 20px;
  --shell: min(1220px, calc(100% - 48px));
  --transition: .7s cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.shell { width: var(--shell); margin: 0 auto; }

/* ─── INTRO (openingsscherm) ─── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030508;
  transition: opacity .8s ease, visibility .8s ease;
}
.intro.out { opacity: 0; visibility: hidden; pointer-events: none; }

.intro__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.intro__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Animated rings */
.ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid transparent;
  animation: spinRing linear infinite;
}
.ring--1 { width: 560px; height: 560px; border-color: rgba(201,168,76,.10); animation-duration: 40s; }
.ring--2 { width: 440px; height: 440px; border-color: rgba(201,168,76,.08); animation-duration: 30s; animation-direction: reverse; }
.ring--3 { width: 320px; height: 320px; border-color: rgba(255,255,255,.05); animation-duration: 22s; }
.ring--4 { width: 200px; height: 200px; border-color: rgba(201,168,76,.12); animation-duration: 16s; animation-direction: reverse; }
@keyframes spinRing {
  from { transform: translate(-50%,-50%) rotate(0); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.intro__logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.intro__logo {
  width: min(640px, 72vw);
  filter: drop-shadow(0 0 60px rgba(201,168,76,.3)) drop-shadow(0 20px 60px rgba(0,0,0,.5));
  opacity: 0;
  transform: scale(.92);
  animation: logoReveal 1.4s cubic-bezier(.16,1,.3,1) .3s forwards;
}
@keyframes logoReveal {
  to { opacity: 1; transform: scale(1); }
}

.intro__tagline {
  position: relative;
  z-index: 2;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted2);
  opacity: 0;
  animation: fadeInUp .8s ease 1.4s forwards;
}

.intro__scroll-hint {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp .8s ease 2s forwards;
}
.intro__mouse {
  width: 26px; height: 40px;
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.intro__wheel {
  width: 4px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: wheelScroll 1.8s ease-in-out infinite;
}
@keyframes wheelScroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80%       { transform: translateY(8px); opacity: 0; }
}
.intro__scroll-hint span {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted2);
}

.intro__progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: rgba(255,255,255,.04);
}
.intro__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width .1s linear;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── ACHTERGROND CANVAS (animatie achter de hele site) ─── */
.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}

/* ─── NAVIGATIEBALK ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, border-bottom .4s ease;
}
.nav.scrolled {
  background: rgba(6,8,16,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}
.nav__brand img {
  width: 90px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s;
}
.nav__links a:hover { color: var(--text); }

.btn-nav {
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #8f6a2e);
  color: #05060e !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: transform .25s, box-shadow .25s !important;
  box-shadow: 0 8px 24px rgba(201,168,76,.25);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,168,76,.3); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: .3s;
}

/* ─── KNOPPEN (goud en ghost-stijl) ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #8f6a2e);
  color: #05060e;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(201,168,76,.25);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201,168,76,.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(201,168,76,.05);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, background .3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(201,168,76,.1); }

.mag { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s; }

/* ─── FADE-UP (elementen faden in bij scrollen) ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0s);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── ALGEMENE SECTIE-STIJL ─── */
.section { padding: 120px 0; position: relative; z-index: 2; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 { margin-bottom: 20px; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.0;
  letter-spacing: -.02em;
}
h1 {
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 600;
  line-height: .95;
}
h1 em { font-style: italic; color: var(--gold); }
h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.0;
}
h2 em { font-style: italic; color: var(--gold); }
h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── HERO (grote titel bovenaan) ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  z-index: 2;
}

.hero__left { display: flex; flex-direction: column; gap: 0; }

.hero h1 { margin: 8px 0 24px; }

.hero__lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  max-width: fit-content;
  backdrop-filter: blur(10px);
}
.hero__avs { display: flex; }
.hero__avs span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--gold), #6b4f1e);
  margin-left: -10px;
}
.hero__avs span:first-child { margin-left: 0; }
.hero__proof strong { display: block; font-size: 14px; font-weight: 700; }
.hero__proof p { font-size: 12px; color: var(--muted); }

.hero__right { position: relative; }
.hero__device-label {
  position: absolute;
  top: -18px;
  right: 0;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: .1em;
}

.device-stage {
  position: relative;
  perspective: 1200px;
  transition: transform .3s ease;
  transform-style: preserve-3d;
}

/* ─── DEVICES (laptop/telefoon mockups) ─── */
.device--desktop {
  background: #141820;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
}
.device__bar {
  height: 32px;
  background: #1a1f2a;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.device__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.device__bar span:nth-child(1) { background: #ff5f57; }
.device__bar span:nth-child(2) { background: #ffbd2e; }
.device__bar span:nth-child(3) { background: #28c840; }
.device__screen {
  height: 460px;
  overflow: hidden;
  position: relative;
}
.device__screen iframe {
  width: 100%; height: 100%;
  border: none;
  pointer-events: none;
}

.device--phone {
  position: absolute;
  right: -60px;
  bottom: -20px;
  width: 130px;
  background: #141820;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  padding: 10px 6px;
  z-index: 3;
}
.device__notch {
  width: 36px; height: 8px;
  background: #1a1f2a;
  border-radius: 4px;
  margin: 0 auto 8px;
}
.device__screen--phone {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.device__screen--phone iframe {
  width: 300%; height: 100%;
  border: none;
  pointer-events: none;
  transform: scale(.333);
  transform-origin: 0 0;
}

/* ─── MARQUEE (doorlopende tekstband) ─── */
.marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: rgba(255,255,255,.015);
}
.marquee__inner {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee__inner span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sep { color: var(--gold) !important; font-size: 10px !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── KAARTEN-RASTER (diensten) ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  transition: border-color .3s, transform .3s, background .3s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold4), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.card:hover { border-color: var(--line2); transform: translateY(-4px); background: var(--panel2); }
.card:hover::before { opacity: 1; }

.card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  border: 1px solid var(--line2);
  background: var(--gold4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.card h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.01em; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── STATISTIEKEN-RIJ ─── */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { flex: 1; text-align: center; }
.stat strong { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 600; background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat p { font-size: 13px; color: var(--muted2); margin-top: 8px; letter-spacing: .04em; }
.stat-line { width: 1px; height: 60px; background: var(--line); flex-shrink: 0; }

/* ─── OVER ONS ─── */
.about-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.about-img-col {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}
.about-img-frame {
  position: relative;
  height: 100%;
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.7) contrast(1.05);
}
.about-badge {
  position: absolute;
  bottom: 40px;
  right: -1px;
  padding: 20px 24px;
  border-radius: 16px 0 0 16px;
  background: rgba(6,8,16,.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line2);
  border-right: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-badge__icon { font-size: 24px; color: var(--gold); }
.about-badge strong { display: block; font-weight: 700; font-size: 15px; }
.about-badge p { font-size: 12px; color: var(--muted); margin: 0; }
.about-line {
  position: absolute;
  background: var(--line2);
}
.about-line--h { bottom: 0; left: 0; right: 0; height: 1px; }
.about-line--v { top: 0; right: 0; bottom: 0; width: 1px; }

.about-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 80px;
}
.about-copy-col h2 { margin-bottom: 24px; }
.about-copy-col p { color: var(--muted); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.about-copy-col em { font-style: italic; color: var(--text); }

/* ─── VINKJES (checklist) ─── */
.ticks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.ticks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold3);
  border: 1px solid var(--line2);
  color: var(--gold);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ─── FORMULES/PAKKETTEN (prijzen) ─── */
.packages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.pkg {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .3s, transform .3s;
}
.pkg:hover { border-color: var(--line2); transform: translateY(-4px); }

.pkg--hot {
  border-color: var(--line2);
  background: rgba(201,168,76,.06);
  box-shadow: 0 0 80px rgba(201,168,76,.08);
}
.pkg--hot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,.08), transparent 60%);
  pointer-events: none;
}

.pkg__chip {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--panel2);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: fit-content;
}
.pkg__chip--gold {
  background: rgba(201,168,76,.12);
  border-color: var(--line2);
  color: var(--gold);
}
.pkg__tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pkg h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; margin-bottom: 16px; }
.pkg__desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.pkg__price-row { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.pkg__price { display: flex; align-items: baseline; gap: 8px; }
.pkg__price span { font-size: 13px; color: var(--muted2); }
.pkg__price strong { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 600; background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }

.pkg__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.pkg__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.pkg__features li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

.pkg__rush { font-size: 12px; color: var(--muted2); margin-bottom: 24px; padding: 10px 14px; border-radius: 8px; background: rgba(255,255,255,.03); border: 1px dashed var(--line); }

.pkg__btn { width: 100%; justify-content: center; margin-top: auto; }

.fine-print { text-align: center; font-size: 13px; color: var(--muted2); margin-top: 32px; line-height: 1.7; }

/* ─── DEMO-VOORBEELD ─── */
.demo-showcase {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 48px;
  overflow: hidden;
}
.demo-showcase__glow {
  position: absolute;
  width: 400px; height: 400px;
  left: 50%; top: 0;
  transform: translate(-50%, -40%);
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
  pointer-events: none;
}
.demo-showcase__devices {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
  justify-content: center;
  margin-bottom: 36px;
}
.demo-showcase__devices .device--desktop { max-width: 820px; flex: 1; }
.demo-showcase__devices .device--phone { position: relative; right: auto; bottom: auto; flex-shrink: 0; }
.demo-showcase__btn { display: flex; width: fit-content; margin: 0 auto; }

/* ─── WERKWIJZE (stappen) ─── */
.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .3s, transform .3s;
}
.step:hover { border-color: var(--line2); transform: translateY(-4px); }
.step__nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin-top: 60px;
  font-size: 22px;
  color: var(--gold);
  opacity: .4;
}

/* ─── REVIEWS (klantbeoordelingen) ─── */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.review:hover { border-color: var(--line2); transform: translateY(-4px); }
.review__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
.review p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 14px; }
.review__av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #05060e;
  flex-shrink: 0;
}
.review__author strong { display: block; font-size: 14px; font-weight: 700; }
.review__author span { font-size: 12px; color: var(--muted2); }

/* ─── GESPLITSTE SECTIE ─── */
.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.split-block h2 { margin-bottom: 20px; }
.split-block p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ─── FAQ (veelgestelde vragen) ─── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.faq-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .3s, transform .3s;
}
.faq-card:hover { border-color: var(--line2); transform: translateY(-4px); }
.faq-card h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.faq-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── CONTACT/CTA-SECTIE (rond het afspraak-formulier) ─── */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 160px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .7;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cta-content h2 { margin-bottom: 20px; font-size: clamp(44px, 6vw, 80px); }
.cta-sub { color: var(--muted); font-size: 17px; line-height: 1.8; max-width: 560px; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }
.cta-logo {
  width: 180px;
  opacity: .25;
  filter: brightness(2);
}

/* ─── AFSPRAAK-FORMULIER (op de publieke website) ─── */
.afspraak-form {
  width: 100%;
  max-width: 620px;
  text-align: left;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.af-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.af-group label {
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
}
.af-group input,
.af-group select,
.af-group textarea {
  padding: 13px 15px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink, #e8e6e0);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.af-group input:focus,
.af-group select:focus,
.af-group textarea:focus { border-color: var(--gold); }
.af-group textarea { resize: vertical; min-height: 90px; }
.af-submit { width: 100%; margin-top: 6px; justify-content: center; }
.af-message { margin-top: 16px; font-size: 14px; text-align: center; min-height: 20px; }
.af-message.ok { color: #4caf82; }       /* groene bevestiging */
.af-message.error { color: #e05c5c; }    /* rode foutmelding */
.cta-alt { color: var(--muted); font-size: 14px; margin-bottom: 48px; }
.cta-alt a { color: var(--gold); }
@media (max-width: 560px) {
  .af-row { grid-template-columns: 1fr; }
  .afspraak-form { padding: 24px; }
}

/* ─── FOOTER (onderkant van de pagina) ─── */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer__brand img { width: 100px; margin-bottom: 20px; filter: brightness(.8); }
.footer__brand p { font-size: 14px; color: var(--muted2); line-height: 1.7; max-width: 280px; }
.footer__col h4 { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__col a, .footer__col span { display: block; font-size: 14px; color: var(--muted2); margin-bottom: 10px; transition: color .25s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted2);
  gap: 16px;
}
.footer__bottom div { display: flex; gap: 24px; }
.footer__bottom a { color: var(--muted2); transition: color .25s; }
.footer__bottom a:hover { color: var(--text); }

/* ─── RESPONSIVE (aanpassingen voor gsm/tablet) ─── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr 1fr; }
  .step__arrow { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 140px 0 80px; }
  .hero__right { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .about-img-col { min-height: 400px; }
  .about-copy-col { padding: 60px 24px; }
  .packages { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .section--split { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 32px; }
  .stat-line { display: none; }
  .stat { flex: 0 0 40%; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .process { grid-template-columns: 1fr; }
  .demo-showcase { padding: 24px; }
  .demo-showcase__devices .device--phone { display: none; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
