/* ==========================================================================
   WebsiteWensen.nl - Design System (Warm Premium)
   Statische maatwerk site. Eén bron voor tokens, componenten en motion.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Kleuren */
  --bg: #0B1120;
  --bg-deep: #070B16;
  --surface: #0F172A;
  --surface-2: #16213D;
  --surface-3: #1C2A4A;
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(148, 163, 184, 0.28);

  --cream: #FDF6EC;
  --cream-soft: #FBF1E4;

  --text: #F6F8FC;
  --text-soft: #C5CFE0;
  --text-muted: #8A97AE;

  --coral: #FB7185;
  --coral-deep: #F43F6E;
  --amber: #F59E0B;
  --amber-soft: #FBBF24;

  --grad-warm: linear-gradient(135deg, #FB7185 0%, #F59E0B 100%);
  --grad-warm-soft: linear-gradient(135deg, rgba(251,113,133,0.18) 0%, rgba(245,158,11,0.18) 100%);
  --grad-glow: radial-gradient(60% 60% at 50% 40%, rgba(251,113,133,0.35) 0%, rgba(245,158,11,0.10) 45%, transparent 75%);

  /* Typografie */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Maatvoering */
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --shadow-sm: 0 4px 16px rgba(3, 7, 18, 0.35);
  --shadow: 0 18px 50px rgba(3, 7, 18, 0.45);
  --shadow-glow: 0 18px 60px rgba(244, 63, 110, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.btn, .nav-toggle, .lang-toggle, .faq-item summary { touch-action: manipulation; }
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 1; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 3px solid var(--amber-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--amber); color: #1a1205; padding: 12px 18px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section-tight { padding-block: clamp(44px, 6vw, 72px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber-soft);
  padding: 7px 14px; border-radius: 100px;
  background: rgba(245, 158, 11, 0.10); border: 1px solid rgba(245, 158, 11, 0.22);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-warm); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-top: 18px; }
.section-head p { color: var(--text-soft); font-size: clamp(1.02rem, 2vw, 1.18rem); margin-top: 16px; }

.text-grad {
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-warm); color: #2a0f12; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 70px rgba(244, 63, 110, 0.42); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--coral); background: rgba(255,255,255,0.07); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-arrow svg { transition: transform 0.3s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 17, 32, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand-mark { width: 40px; height: 40px; flex: none; display: block; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand span { color: var(--amber-soft); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a, .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px; color: var(--text-soft);
  font-size: 0.96rem; font-weight: 500; background: none; border: none;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-cta-mobile { display: none; }
.nav-menu > li > a:hover, .nav-trigger:hover, .nav-menu > li > a[aria-current="page"] { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-trigger svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }

.has-dropdown { position: relative; }
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 16px; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: 560px; max-width: 92vw; padding: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .nav-trigger svg { transform: rotate(180deg); }
.dropdown a { display: flex; gap: 12px; padding: 11px 13px; border-radius: 12px; transition: background 0.2s ease; }
.dropdown a:hover { background: rgba(255,255,255,0.05); }
.dd-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-warm-soft); display: grid; place-items: center; flex: none; color: var(--amber-soft); }
.dd-ico svg { width: 19px; height: 19px; }
.dd-txt strong { display: block; font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; color: var(--text); }
.dd-txt span { font-size: 0.82rem; color: var(--text-muted); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px; border-radius: 100px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); color: var(--text-soft);
  font-size: 0.82rem; font-weight: 600; font-family: var(--font-head); min-height: 40px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.lang-toggle:hover { border-color: var(--coral); color: var(--text); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(70px, 11vw, 140px); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% 0 auto 0; height: 90%; z-index: 0; pointer-events: none;
  background: var(--grad-glow); filter: blur(30px);
  animation: glowfloat 14s ease-in-out infinite;
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0; pointer-events: none; }
.blob-1 { width: 380px; height: 380px; background: rgba(251,113,133,0.4); top: -80px; right: -60px; animation: float 16s ease-in-out infinite; }
.blob-2 { width: 320px; height: 320px; background: rgba(245,158,11,0.32); bottom: -120px; left: -80px; animation: float 20s ease-in-out infinite reverse; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
.hero-lead { color: var(--text-soft); font-size: clamp(1.08rem, 2.2vw, 1.3rem); margin-top: 22px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; color: var(--text-muted); font-size: 0.9rem; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--amber-soft); }

/* Hero visual card stack */
.hero-visual { position: relative; }
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-card { padding: 26px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.hero-card-top { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.dot-row { display: flex; gap: 6px; }
.dot-row i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dot-row i:nth-child(1){ background:#FB7185; } .dot-row i:nth-child(2){ background:#F59E0B; } .dot-row i:nth-child(3){ background:#34D399; }
.hero-bars { margin-top: 20px; display: grid; gap: 14px; }
.bar-row { display: grid; gap: 7px; }
.bar-row span { font-size: 0.82rem; color: var(--text-muted); display: flex; justify-content: space-between; }
.bar { height: 9px; border-radius: 100px; background: rgba(255,255,255,0.07); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 100px; background: var(--grad-warm); width: 0; transition: width 1.4s var(--ease); }
.float-badge {
  position: absolute; z-index: 3; padding: 12px 16px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.float-badge .fb-ico { width: 32px; height: 32px; border-radius: 9px; background: var(--grad-warm); display: grid; place-items: center; color: #2a0f12; flex: none; }
.float-badge.b-a { top: -22px; left: -26px; animation: float 7s ease-in-out infinite; }
.float-badge.b-b { bottom: -24px; right: -20px; animation: float 9s ease-in-out infinite reverse; }

/* ---------- Marquee / logos ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 26px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; animation: scrollx 28s linear infinite; will-change: transform; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--text-muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; margin-right: 56px; }
.marquee-track span::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--grad-warm); }

/* ---- Zwevende knoppen rechtsonder (WhatsApp + naar boven) ---- */
.float-btn { position: fixed; right: clamp(16px, 4vw, 28px); z-index: 80; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; border: 1px solid transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.35); transition: transform 0.25s var(--ease), box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.3s ease, visibility 0.3s ease; }
.float-btn:hover { transform: translateY(-3px); }
.float-wa { bottom: clamp(16px, 4vw, 28px); background: #25D366; color: #fff; }
.float-wa svg { width: 30px; height: 30px; }
.float-wa:hover { box-shadow: 0 14px 34px rgba(37,211,102,0.45); }
.float-top { bottom: calc(clamp(16px, 4vw, 28px) + 66px); background: var(--surface); border-color: var(--line-strong); color: var(--text); opacity: 0; visibility: hidden; pointer-events: none; }
.float-top svg { width: 22px; height: 22px; }
.float-top:hover { border-color: var(--amber); color: var(--amber-soft); }
.float-top.show { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-wa-mobile { display: none; }

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

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: var(--grad-warm); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
/* Leesbare opties in de native select-dropdown (fallback zonder JS) */
select option { background-color: #0F172A; color: #F6F8FC; }

/* ---- Custom dropdown (progressive enhancement van .ww-select) ---- */
.ww-select-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.ww-select-wrap { position: relative; }
.ww-select-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03); color: var(--text); font: inherit; text-align: left; cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ww-select-btn:hover { border-color: var(--amber-soft); background: rgba(255,255,255,0.05); }
.ww-select-btn:focus-visible { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,0.25); }
.ww-select-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ww-select-chev { display: grid; place-items: center; color: var(--text-muted); flex-shrink: 0; transition: transform 0.25s var(--ease), color 0.2s ease; }
.ww-select-chev svg { width: 18px; height: 18px; }
.ww-select-wrap.open .ww-select-chev { transform: rotate(180deg); color: var(--amber-soft); }
.ww-select-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 40; margin: 0; padding: 6px; list-style: none;
  background: #0F172A; border: 1px solid var(--line-strong); border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  max-height: 340px; overflow-y: auto; opacity: 0; transform: translateY(-6px) scale(0.98); transform-origin: top center;
  pointer-events: none; transition: opacity 0.18s ease, transform 0.18s var(--ease);
}
.ww-select-wrap.open .ww-select-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.ww-select-opt {
  padding: 11px 13px; border-radius: 9px; cursor: pointer; color: var(--text-soft); font-size: 0.96rem;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.ww-select-opt:hover, .ww-select-opt.is-active { background: rgba(245,158,11,0.10); color: var(--text); }
.ww-select-opt.is-selected { color: var(--amber-soft); font-weight: 600; }
.ww-select-opt.is-selected::after {
  content: ""; width: 16px; height: 16px; flex-shrink: 0; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.card-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-warm-soft); display: grid; place-items: center; color: var(--amber-soft); margin-bottom: 18px; }
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.98rem; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--amber-soft); font-weight: 600; font-family: var(--font-head); font-size: 0.92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-list { margin-top: 16px; display: grid; gap: 9px; }
.card-list li { display: flex; gap: 10px; color: var(--text-soft); font-size: 0.95rem; }
.card-list svg { width: 18px; height: 18px; color: var(--coral); flex: none; margin-top: 2px; }

/* Feature row (image/text alternating) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split.rev .split-media { order: 2; }
.split h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.split p { color: var(--text-soft); margin-top: 16px; }
.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .ck { width: 24px; height: 24px; border-radius: 7px; background: var(--grad-warm); display: grid; place-items: center; flex: none; color: #2a0f12; }
.check-list .ck svg { width: 14px; height: 14px; }
.check-list strong { display: block; font-family: var(--font-head); }
.check-list span { color: var(--text-muted); font-size: 0.92rem; }

.media-frame { border-radius: var(--radius-lg); border: 1px solid var(--line-strong); padding: 20px; background: linear-gradient(160deg, var(--surface-2), var(--surface)); box-shadow: var(--shadow); }

/* ---------- Stockfoto's (lazy, geoptimaliseerd) ---------- */
.photo-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.photo-band img { width: 100%; aspect-ratio: 16 / 6; object-fit: cover; display: block; }
.photo-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(11,17,32,0.10) 0%, transparent 30%, rgba(11,17,32,0.55) 100%); }
.hero-photo { position: absolute; inset: 0; z-index: 0; background-position: center; background-size: cover; pointer-events: none; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.82) 42%, rgba(11,17,32,0.52) 100%); }
.photo-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); position: relative; }
.photo-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
@media (max-width: 700px) { .photo-band img { aspect-ratio: 16 / 9; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 24px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); font-variant-numeric: tabular-nums; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--text-muted); margin-top: 6px; font-size: 0.95rem; }

/* ---------- Process ---------- */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); position: relative; transition: transform 0.4s var(--ease), border-color 0.4s ease; }
.step:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.step .step-n { counter-increment: step; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; width: 46px; height: 46px; border-radius: 13px; background: var(--grad-warm-soft); color: var(--amber-soft); display: grid; place-items: center; margin-bottom: 16px; border: 1px solid rgba(245,158,11,0.25); }
.step .step-n::before { content: "0" counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border-color: rgba(245,158,11,0.4); background: linear-gradient(180deg, rgba(245,158,11,0.07), var(--surface)); box-shadow: var(--shadow-glow); }
.price-tag-pop { align-self: flex-start; font-size: 0.78rem; font-weight: 700; font-family: var(--font-head); letter-spacing: 0.08em; text-transform: uppercase; color: #2a0f12; background: var(--grad-warm); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.price-card h3 { font-size: 1.3rem; }
.price-card .price { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; margin: 14px 0 4px; }
.price-card .price small { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.price-card .price .from { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; display: block; margin-bottom: 2px; }
.price-desc { color: var(--text-soft); font-size: 0.95rem; min-height: 48px; }
.price-card ul { margin: 22px 0; display: grid; gap: 12px; }
.price-card li { display: flex; gap: 11px; color: var(--text-soft); font-size: 0.95rem; }
.price-card li svg { width: 19px; height: 19px; color: var(--coral); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-note { color: var(--text-muted); font-size: 0.92rem; text-align: center; margin-top: 26px; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform 0.4s var(--ease), border-color 0.4s ease; }
.quote-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.stars { display: flex; gap: 3px; color: var(--amber-soft); margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--text); line-height: 1.6; }
.quote-author { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.quote-author .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-warm); display: grid; place-items: center; color: #2a0f12; font-weight: 700; font-family: var(--font-head); flex: none; }
.quote-author strong { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.quote-author span { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.3s ease; }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--text); }
.bg-cream .faq-item summary { color: var(--text); }
.bg-cream .faq-body { color: var(--text-soft); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 28px; height: 28px; border-radius: 8px; background: var(--grad-warm-soft); display: grid; place-items: center; flex: none; transition: transform 0.3s var(--ease); color: var(--amber-soft); }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--text-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); text-align: center; background: linear-gradient(150deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); }
.cta-band .hero-glow { opacity: 0.7; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: var(--text-soft); max-width: 580px; margin: 16px auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-block: clamp(48px, 7vw, 84px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-family: var(--font-head); font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-grid ul { display: grid; gap: 11px; }
.footer-grid a { color: var(--text-soft); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--coral); }
.footer-about p { color: var(--text-soft); margin: 16px 0; font-size: 0.95rem; max-width: 320px; }
.footer-contact li { display: flex; gap: 10px; color: var(--text-soft); font-size: 0.95rem; margin-bottom: 10px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber-soft); flex: none; margin-top: 2px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 0.86rem; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- Breadcrumb ---------- */
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--text-muted); font-size: 0.86rem; padding-top: 22px; }
.crumb a:hover { color: var(--coral); }
.crumb svg { width: 14px; height: 14px; opacity: 0.6; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 90px) clamp(40px, 6vw, 70px); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 760px; margin-top: 18px; }
.page-hero .lead { color: var(--text-soft); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 620px; margin-top: 18px; }
.page-hero .hero-cta { margin-top: 30px; }

/* ---------- Misc ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { padding: 8px 15px; border-radius: 100px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); font-size: 0.88rem; color: var(--text-soft); font-weight: 500; }
.note-box { border-left: 3px solid var(--amber); background: rgba(245,158,11,0.07); padding: 20px 24px; border-radius: 0 14px 14px 0; color: var(--text-soft); }
.note-box strong { color: var(--text); font-family: var(--font-head); }

.bg-cream { background: var(--cream); color: #2A2118; }
.bg-cream .eyebrow { color: #B45309; background: rgba(180,83,9,0.08); border-color: rgba(180,83,9,0.2); }
.bg-cream h2, .bg-cream h3 { color: #1C140B; }
.bg-cream p { color: #5C5142; }
.bg-cream .card { background: #fff; border-color: rgba(0,0,0,0.07); }
.bg-cream .card p { color: #5C5142; }
.bg-cream .step h3 { color: var(--text); }
.bg-cream .step p { color: var(--text-soft); }
.bg-cream .note-box { color: #5C5142; }
.bg-cream .note-box strong { color: #1C140B; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; } .reveal-d4 { transition-delay: 0.32s; }

/* ---------- Keyframes ---------- */
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-22px) translateX(10px); } }
@keyframes glowfloat { 0%,100% { transform: translateY(0) scale(1); opacity: 0.9; } 50% { transform: translateY(20px) scale(1.05); opacity: 1; } }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }

  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 76px 0 0 0; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); padding: 24px clamp(20px, 5vw, 40px); overflow-y: auto;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  body.nav-open .nav-menu { display: flex; transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  /* Op mobiel GEEN backdrop-filter op de header: een blur-filter vangt het position:fixed
     menu (ook op iOS Safari), waardoor het menu na scrollen niet goed tevoorschijn komt.
     Daarom hier altijd een vaste achtergrond zonder blur. */
  .site-header.scrolled {
    background: rgba(11, 17, 32, 0.96) !important;
    backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
    transition: none;
  }
  body.nav-open .site-header { background: var(--bg) !important; border-bottom-color: var(--line); }
  .nav-menu > li > a, .nav-trigger { width: 100%; padding: 14px 16px; font-size: 1.05rem; }
  .nav-cta-mobile { display: block; margin-top: 18px; }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; padding: 15px 28px; border-radius: 100px; }
  .nav-cta-mobile .btn-primary { background: var(--grad-warm); color: #2a0f12; }
  .nav-cta-mobile .btn-primary:hover { background: var(--grad-warm); color: #2a0f12; }
  /* WhatsApp-knop: ook op mobiel de zwevende logo-knop rechtsonder (net als desktop) */
  .dropdown { position: static; width: 100%; transform: none; opacity: 1; visibility: visible; grid-template-columns: 1fr; box-shadow: none; background: transparent; border: none; padding: 4px 0 4px 10px; display: none; }
  .has-dropdown.open .dropdown { display: grid; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .steps, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta, .cta-actions { flex-direction: column; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .float-badge { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .blob, .hero-glow { animation: none; }
  /* De marquee mag blijven doorlopen */
  .marquee-track { animation-duration: 28s !important; animation-iteration-count: infinite !important; }
}
