/* =============================================================
   SELDER — ELECTRO & VERLICHTING
   Volledige stylesheet, mobile-first, vanilla CSS3
   Brand: night #0F172A, amber #FBBF24
   ============================================================= */

:root {
  /* Brand */
  --night: #0F172A;
  --night-2: #1E293B;
  --night-3: #334155;
  --amber: #FBBF24;
  --amber-soft: #FCD34D;
  --copper: #D97706;
  --ink: #0B1220;
  --paper: #F8FAFC;
  --line: #E2E8F0;
  --line-2: #CBD5E1;
  --muted: #64748B;
  --body: #1E293B;
  --success: #16A34A;
  --danger: #DC2626;

  /* Type */
  --display: 'Manrope', system-ui, -apple-system, sans-serif;
  --body-font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.19, 1, .22, 1);
  --duration: 1400ms;
  --stagger: 220ms;

  /* Layout */
  --container: 1280px;
  --pad: 16px;
  --section-y: 48px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow:    0 4px 6px rgba(15,23,42,.04), 0 10px 15px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 25px rgba(15,23,42,.10), 0 10px 10px rgba(15,23,42,.04);
}

@media (min-width: 768px) {
  :root { --pad: 32px; --section-y: 80px; }
}
@media (min-width: 1024px) {
  :root { --pad: 48px; --section-y: 120px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--display); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
[dir="rtl"] body { text-align: right; }

/* ---------- Typography scale ---------- */
.h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); }
.h2 { font-size: clamp(1.75rem, 3vw + 1rem, 3rem); }
.h3 { font-size: clamp(1.25rem, 1.4vw + 1rem, 1.75rem); }
.lead { font-size: 1.125rem; line-height: 1.55; color: var(--muted); }
.eyebrow {
  font-family: var(--body-font);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 32px; height: 2px; background: var(--amber); border-radius: 2px;
}

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: var(--section-y); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(251,191,36,.35), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(251,191,36,.45); background: var(--amber-soft); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(248,250,252,.4);
}
.btn-ghost:hover { background: rgba(248,250,252,.08); border-color: var(--amber); color: var(--amber); }
.btn-dark {
  background: var(--night);
  color: var(--paper);
}
.btn-dark:hover { background: var(--night-2); transform: translateY(-2px); }
.btn-arrow::after {
  content: "→";
  transition: transform .25s var(--ease);
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Top notification bar (above nav) ---------- */
.top-bar {
  background: var(--night);
  color: var(--paper);
  font-size: .8rem;
  padding: 8px 16px;
  text-align: center;
}
.top-bar a { color: var(--amber); font-weight: 600; }

/* ---------- Sticky NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: border-bottom-color .2s ease, background .2s ease, padding .2s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(248, 250, 252, 0.95);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  color: var(--ink);
  display: inline-flex; align-items: center;
  height: 32px;
}
.nav-logo svg { height: 32px; width: auto; }
@media (min-width: 1024px) {
  .nav-logo, .nav-logo svg { height: 44px; }
}
.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  font-family: var(--display);
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  position: relative;
  transition: color .15s ease;
}
.nav-menu a:hover { color: var(--copper); }
.nav-menu a.is-current::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--amber); border-radius: 2px;
}
@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}
.nav-cta { display: none; }
@media (min-width: 768px) {
  .nav-cta { display: inline-flex; min-height: 42px; padding: 10px 20px; font-size: .85rem; }
}
.nav-burger {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--ink);
}
.nav-burger:hover { background: rgba(15,23,42,.05); }
.nav-burger svg { width: 24px; height: 24px; }
@media (min-width: 1024px) {
  .nav-burger { display: none; }
}

/* Mobile menu drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  padding: 24px;
  color: var(--paper);
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.mobile-drawer-head .nav-logo { color: var(--paper); }
.mobile-drawer-close {
  width: 44px; height: 44px; color: var(--paper); border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-drawer-close:hover { background: rgba(255,255,255,.08); }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}
.mobile-menu a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 14px 8px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-drawer-cta {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: var(--night);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-img { transform: scale(1.12); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,23,42,0.85) 10%, rgba(15,23,42,0.55) 50%, rgba(15,23,42,0.40) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-text {
  max-width: 720px;
  color: var(--paper);
}
.hero-eyebrow {
  color: var(--amber);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(-80px);
}
.hero-slide.active .hero-eyebrow {
  animation: heroFadeRight var(--duration) var(--ease) 200ms forwards;
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5rem);
  color: var(--paper);
  line-height: 1.0;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-80px);
}
.hero-slide.active .hero-title {
  animation: heroFadeRight var(--duration) var(--ease) 400ms forwards;
}
.hero-title em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 32px;
  color: rgba(248,250,252,.85);
  opacity: 0;
  transform: translateX(-80px);
}
.hero-slide.active .hero-sub {
  animation: heroFadeRight var(--duration) var(--ease) 600ms forwards;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(-80px);
}
.hero-slide.active .hero-ctas {
  animation: heroFadeRight var(--duration) var(--ease) 800ms forwards;
}
@keyframes heroFadeRight {
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 767px) {
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; }
  .hero-text { text-align: left; }
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: rgba(248,250,252,.3);
  transition: background .3s ease, transform .3s ease;
  cursor: pointer;
}
.hero-dot.active { background: var(--amber); width: 48px; }

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(248,250,252,.1);
  backdrop-filter: blur(8px);
  color: var(--paper);
  display: none;
  align-items: center; justify-content: center;
  z-index: 3;
  transition: background .25s ease;
}
.hero-arrow:hover { background: rgba(251,191,36,.9); color: var(--ink); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
@media (min-width: 1024px) {
  .hero-arrow { display: inline-flex; }
}

/* ============================================================
   SUBPAGE HERO BANNER (50vh)
   ============================================================ */
.subhero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  background: var(--night);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.subhero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.0);
  animation: kenburns 14s ease-out forwards;
}
@keyframes kenburns { to { transform: scale(1.10); } }
.subhero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.4) 0%, rgba(15,23,42,.85) 100%);
}
.subhero-content {
  position: relative;
  z-index: 2;
  color: var(--paper);
  padding-block: 48px;
  width: 100%;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: .85rem;
  color: rgba(248,250,252,.7);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span.sep { opacity: .5; }
.subhero-title { color: var(--paper); margin-bottom: 12px; }
.subhero-sub { color: rgba(248,250,252,.85); max-width: 640px; font-size: 1.1rem; }

/* ============================================================
   OVER-ONS INTRO (homepage section 3)
   ============================================================ */
.intro-section {
  position: relative;
}
.intro-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .intro-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}
.intro-text h2 { margin-bottom: 16px; }
.intro-text .eyebrow { margin-bottom: 18px; }
.intro-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }
.usp-list { display: flex; flex-direction: column; gap: 18px; }
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s var(--ease);
}
.usp-item:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: var(--shadow); }
.usp-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--copper));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.usp-icon svg { width: 22px; height: 22px; }
.usp-item h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--display); }
.usp-item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ============================================================
   WAAROM ONS — 6-grid
   ============================================================ */
.waarom { background: var(--ink); color: var(--paper); }
.waarom .eyebrow { color: var(--amber); }
.waarom .eyebrow::before { background: var(--amber); }
.waarom h2 { color: var(--paper); }
.waarom .lead { color: rgba(248,250,252,.7); max-width: 640px; }
.waarom-head { display: grid; gap: 16px; margin-bottom: 48px; }
@media (min-width: 768px) { .waarom-head { grid-template-columns: auto 1fr; align-items: end; gap: 64px; } }
.waarom-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .waarom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .waarom-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.waarom-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(248,250,252,.04);
  border: 1px solid rgba(248,250,252,.1);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}
.waarom-card:hover { transform: translateY(-4px); border-color: var(--amber); background: rgba(251,191,36,.05); }
.waarom-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(251,191,36,.18), rgba(217,119,6,.10));
  border: 1px solid rgba(251,191,36,.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.waarom-card-icon svg { width: 28px; height: 28px; }
.waarom-card h3 { color: var(--paper); font-size: 1.2rem; margin-bottom: 8px; }
.waarom-card p { color: rgba(248,250,252,.7); font-size: .95rem; }

/* ============================================================
   EXPERTISE TICKER
   ============================================================ */
.ticker { background: var(--paper); padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.ticker-track {
  display: flex; gap: 48px;
  animation: tick 60s linear infinite;
  width: max-content;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  color: var(--ink);
  white-space: nowrap;
}
.ticker-item::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (min-width: 768px) { .ticker-item { font-size: 2rem; } }

/* ============================================================
   DIENSTEN — cards
   ============================================================ */
.diensten-section .container > .eyebrow { margin-bottom: 16px; }
.diensten-head { margin-bottom: 48px; max-width: 720px; }
.diensten-head h2 { margin-bottom: 16px; }
.diensten-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .diensten-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .diensten-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.dienst-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.dienst-card:hover { transform: translateY(-6px); border-color: var(--amber); box-shadow: var(--shadow-lg); }
.dienst-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dienst-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dienst-card:hover .dienst-card-img img { transform: scale(1.06); }
.dienst-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.dienst-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.dienst-card p { color: var(--muted); margin-bottom: 16px; flex-grow: 1; font-size: .95rem; }
.dienst-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  color: var(--copper); transition: gap .25s ease, color .25s ease;
}
.dienst-card .more:hover { gap: 12px; color: var(--ink); }

/* ============================================================
   WERKWIJZE — 5 stappen
   ============================================================ */
.werkwijze { background: linear-gradient(180deg, var(--paper) 0%, #F1F5F9 100%); }
.werkwijze-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 1024px) { .werkwijze-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.stap {
  position: relative;
  padding: 24px;
  text-align: center;
}
.stap-num {
  font-family: var(--display);
  font-size: 4rem; font-weight: 800; color: var(--amber);
  line-height: 1; margin-bottom: 12px;
  -webkit-text-stroke: 1px var(--copper);
  letter-spacing: -0.04em;
}
.stap h4 { font-size: 1.05rem; margin-bottom: 6px; }
.stap p { font-size: .9rem; color: var(--muted); }
.stap:not(:last-child)::after {
  content: "";
  display: none;
  position: absolute;
  top: 50px;
  right: -16px;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
@media (min-width: 1024px) {
  .stap:not(:last-child)::after { display: block; }
}

/* ============================================================
   PROJECTEN — uniform 3-col grid
   ============================================================ */
.projecten-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .projecten-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projecten-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.project-card:hover { transform: translateY(-4px); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project-card:hover img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,18,32,.85) 100%);
}
.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--paper);
}
.project-card h3 { color: var(--paper); font-size: 1.15rem; margin-bottom: 4px; }
.project-card p { color: rgba(248,250,252,.7); font-size: .85rem; display: flex; align-items: center; gap: 6px; }
.project-card p::before { content: "📍"; }

/* ============================================================
   TIPS
   ============================================================ */
.tips-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .tips-grid { grid-template-columns: repeat(3, 1fr); } }
.tip-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .3s ease, box-shadow .35s ease;
}
.tip-card:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: var(--shadow); }
.tip-card-img { aspect-ratio: 16/10; overflow: hidden; }
.tip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tip-card:hover .tip-card-img img { transform: scale(1.06); }
.tip-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.tip-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--muted);
  margin-bottom: 10px;
}
.tip-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tip-card p { color: var(--muted); margin-bottom: 16px; flex-grow: 1; font-size: .92rem; }
.tip-card .more { color: var(--copper); font-family: var(--display); font-weight: 700; font-size: .9rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--ink); color: var(--paper); }
.reviews .eyebrow { color: var(--amber); }
.reviews .eyebrow::before { background: var(--amber); }
.reviews h2 { color: var(--paper); }
.reviews-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: rgba(248,250,252,.04);
  border: 1px solid rgba(248,250,252,.1);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--amber); }
.review-stars svg { width: 18px; height: 18px; fill: var(--amber); }
.review-quote { font-size: 1rem; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; color: rgba(248,250,252,.9); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 48px; height: 48px; border-radius: 50%; }
.review-author strong { display: block; color: var(--paper); }
.review-author span { font-size: .85rem; color: rgba(248,250,252,.6); }

/* ============================================================
   OFFERTE-FORM
   ============================================================ */
.offerte-section { background: var(--paper); }
.offerte-grid {
  display: grid; gap: 40px;
}
@media (min-width: 1024px) { .offerte-grid { grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; } }
.offerte-info h2 { margin-bottom: 16px; }
.offerte-info p { color: var(--muted); margin-bottom: 24px; }
.offerte-points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.offerte-point { display: flex; gap: 14px; align-items: flex-start; }
.offerte-point svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--success); margin-top: 2px; }
.offerte-point strong { font-family: var(--display); }
.offerte-point span { color: var(--muted); font-size: .92rem; }

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form h3 { margin-bottom: 6px; font-size: 1.4rem; }
.form > p { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label {
  font-family: var(--display); font-weight: 600; font-size: .85rem;
  color: var(--ink);
}
.form-row label .req { color: var(--danger); margin-left: 4px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(251,191,36,.15);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-grid-2 { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; gap: 16px; } .form-grid-2 .form-row { margin-bottom: 0; } }
.form-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.form-actions .btn { width: 100%; }
.form-fineprint { color: var(--muted); font-size: .8rem; margin-top: 12px; text-align: center; }
.urgency-radios { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.urgency-radios label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-size: .9rem;
}
.urgency-radios input { accent-color: var(--amber); }
.urgency-radios label:hover { border-color: var(--amber-soft); }
.urgency-radios input:checked + span { color: var(--copper); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: linear-gradient(180deg, #F1F5F9 0%, var(--paper) 100%); }
.faq-grid {
  display: grid; gap: 32px;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1.4fr; gap: 64px; } }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--amber); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  color: var(--ink);
}
.faq-toggle {
  flex-shrink: 0; width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform .4s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--amber);
  border-color: var(--amber);
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding: 0 24px 20px 24px; color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* ============================================================
   CTA-BAND (subpages)
   ============================================================ */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--ink) 0%, var(--night-2) 50%, var(--copper) 130%);
  color: var(--paper);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(251,191,36,.25), transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  display: grid; gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-band-inner { grid-template-columns: 1fr auto; text-align: left; }
}
.cta-band h2 { color: var(--paper); margin-bottom: 8px; }
.cta-band p { color: rgba(248,250,252,.85); }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 768px) { .cta-band-actions { justify-content: flex-end; } }

/* ============================================================
   CONTENT-SECTIE 2-koloms (subpages)
   ============================================================ */
.content-2col {
  display: grid; gap: 32px; align-items: start;
}
@media (min-width: 1024px) {
  .content-2col { grid-template-columns: 1fr 1fr; gap: 64px; }
  .content-2col.reverse { direction: rtl; }
  .content-2col.reverse > * { direction: ltr; }
}
.content-2col img { border-radius: var(--radius); width: 100%; box-shadow: var(--shadow); }
.content-2col h2 { margin-bottom: 16px; }
.content-2col p { color: var(--muted); margin-bottom: 16px; }
.content-2col ul { margin-block: 16px; display: flex; flex-direction: column; gap: 10px; }
.content-2col ul li {
  position: relative; padding-left: 30px;
  color: var(--ink); font-weight: 500;
}
.content-2col ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
}

/* ============================================================
   CONTACT — map + info
   ============================================================ */
.contact-grid {
  display: grid; gap: 32px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; } }
.contact-info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-info-card h3 { margin-bottom: 6px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .ico {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(251,191,36,.18), rgba(217,119,6,.10));
  color: var(--copper);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info-item .ico svg { width: 20px; height: 20px; }
.contact-info-item strong { display: block; font-family: var(--display); font-size: .95rem; }
.contact-info-item span,
.contact-info-item a { color: var(--muted); font-size: .92rem; }
.contact-info-item a:hover { color: var(--copper); }
.map-frame {
  width: 100%;
  aspect-ratio: 16/12;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 1024px) { .map-frame { aspect-ratio: auto; height: 520px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(248,250,252,.75);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid; gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
.footer h5 {
  color: var(--paper);
  font-family: var(--display); font-size: .92rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand .nav-logo { color: var(--paper); height: 50px; margin-bottom: 16px; }
.footer-brand .nav-logo svg { height: 50px; width: auto; }
.footer-brand p { font-size: .92rem; line-height: 1.55; }
.footer-list { display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.footer-list a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(248,250,252,.1);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: .82rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom .links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer-bottom .links a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 8px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(248,250,252,.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--amber); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }

/* ============================================================
   WHATSAPP WIDGET (rechtsonder)
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-fab::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 3px solid #25D366;
  opacity: 0.6;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1.0); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
.wa-fab svg { width: 30px; height: 30px; color: white; }
.wa-fab .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  background: var(--ink);
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .85rem; font-family: var(--display); font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.wa-fab .tooltip::after {
  content: "";
  position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--ink);
}
@media (min-width: 1024px) {
  .wa-fab { width: 60px; height: 60px; bottom: 28px; right: 28px; }
  .wa-fab:hover .tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }
}

/* ============================================================
   LANG SWITCHER (linksonder)
   ============================================================ */
.lang-switch {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9998;
}
.lang-current {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.lang-current:hover { transform: translateY(-2px); }
.lang-flag { font-size: 1.1rem; line-height: 1; }
.lang-list {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--ink);
  border-radius: 12px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  display: none;
  flex-direction: column;
  border: 1px solid rgba(248,250,252,.1);
}
.lang-switch.open .lang-list { display: flex; }
.lang-list button {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--paper);
  font-family: var(--body-font);
  font-size: .9rem;
  text-align: left;
  transition: background .15s ease;
}
.lang-list button:hover { background: rgba(248,250,252,.06); }
.lang-list button.is-current { background: rgba(251,191,36,.15); color: var(--amber); }

/* ============================================================
   SCROLL ANIMATIONS — base reveal (added by JS via .in-view)
   ============================================================ */
.reveal-text,
.reveal-img,
.reveal-card {
  opacity: 0;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
  will-change: opacity, transform;
}
.reveal-text { transform: translateX(-80px); }
.reveal-img  { transform: translateX(80px); }
.reveal-card { transform: translateY(40px) scale(0.96); }

.reveal-text.in-view,
.reveal-img.in-view,
.reveal-card.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0ms !important; transition-duration: 0ms !important; }
  .hero-slide-img { transform: scale(1.0) !important; }
  .ticker-track { animation: none; }
}

/* ============================================================
   RTL polish
   ============================================================ */
[dir="rtl"] .breadcrumb { direction: ltr; justify-content: flex-end; }
[dir="rtl"] .reveal-text { transform: translateX(80px); }
[dir="rtl"] .reveal-img  { transform: translateX(-80px); }
[dir="rtl"] .lang-switch { left: auto; right: 24px; }
[dir="rtl"] .wa-fab { right: auto; left: 24px; }
[dir="rtl"] .wa-fab .tooltip { right: auto; left: calc(100% + 12px); }
[dir="rtl"] .wa-fab .tooltip::after { left: auto; right: 100%; border-left-color: transparent; border-right-color: var(--ink); }
[dir="rtl"] .nav-logo svg { /* logo blijft links-naar-rechts */ }

/* Print */
@media print { .wa-fab, .lang-switch, .nav, .hero-arrow, .top-bar { display: none !important; } }
