/* =========================================================
   Esbach Service — Design System
   High-tech, premium, dark palette for a modern electrotechnical
   & installation company.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  /* Core palette */
  --c-bg:            #05070c;
  --c-bg-alt:        #080b12;
  --c-surface:       #10141d;
  --c-surface-2:     #161c28;
  --c-surface-border:#232a38;
  --c-anthracite:    #1a2029;

  /* Accents */
  --c-blue:          #2f6bff;
  --c-blue-dim:      #1e4bd1;
  --c-cyan:          #33d6e0;
  --c-cyan-soft:     rgba(51,214,224,.14);
  --c-blue-soft:     rgba(47,107,255,.16);

  /* Text */
  --c-text:          #f3f6fb;
  --c-text-dim:      #a9b3c4;
  --c-text-faint:    #6f7889;

  /* Feedback */
  --c-success:       #33e0a1;
  --c-error:         #ff5d6c;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--c-blue) 0%, var(--c-cyan) 100%);
  --grad-bg-glow: radial-gradient(60% 50% at 50% 0%, rgba(47,107,255,.16) 0%, rgba(47,107,255,0) 70%);

  /* Type */
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', 'Manrope', sans-serif;

  /* Sizing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --header-h: 84px;
  --header-h-compact: 64px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .5s;

  /* Shadow */
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.55);
  --shadow-glow: 0 0 0 1px rgba(51,214,224,.15), 0 10px 40px -12px rgba(47,107,255,.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  margin:0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-head); font-weight:600; line-height:1.15; margin:0 0 .5em; letter-spacing:-.01em; }
p{ margin:0 0 1em; color: var(--c-text-dim); }
button{ font-family: inherit; }
input, textarea, select{ font-family: inherit; }

/* Focus states — keyboard accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible{
  outline: 2px solid var(--c-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section{ padding: 96px 0; position: relative; }
.section--tight{ padding: 64px 0; }
@media (max-width: 780px){
  .section{ padding: 64px 0; }
  .section--tight{ padding: 44px 0; }
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color: var(--c-cyan); margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width:18px; height:2px; background: var(--grad-brand); display:inline-block; border-radius:2px;
}
.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.section-head p{ font-size: 17px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; flex:none; }
.btn-primary{
  background: var(--grad-brand);
  color:#050914;
  box-shadow: 0 8px 30px -8px rgba(47,107,255,.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(47,107,255,.7); }
.btn-secondary{
  background: rgba(255,255,255,.03);
  color: var(--c-text);
  border-color: var(--c-surface-border);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover{ border-color: var(--c-cyan); color: var(--c-cyan); transform: translateY(-2px); }
.btn-ghost{
  background: transparent; color: var(--c-cyan); padding: 10px 4px;
}
.btn-ghost:hover{ color: var(--c-text); }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none !important; }

/* ---------- Zwevende WhatsApp-knop (zelfde stijl als Vakmontage Zuid) ---------- */
.whatsapp-float{
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: #25D366;
  color: #0b0a08;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.6);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 36px -10px rgba(0,0,0,0.65); }
.whatsapp-float svg{ width:30px; height:30px; }
body.nav-open .whatsapp-float{ opacity:0; pointer-events:none; }
@media (max-width:480px){
  .whatsapp-float{ width:50px; height:50px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}
@media (prefers-reduced-motion: reduce){
  .header-actions .btn-primary{ animation:none; }
}

/* ---------- Header ---------- */
/* Note: the translucent blur lives on a ::before pseudo-element rather than
   directly on .site-header. backdrop-filter (like filter/transform) on an
   element creates a new containing block for any position:fixed descendant —
   and .main-nav (the fixed-position mobile menu) lives inside this header.
   Keeping backdrop-filter off .site-header itself means .main-nav still
   sizes itself against the viewport, as position:fixed requires. */
.site-header{
  position: sticky; top:0; z-index: 100;
  height: var(--header-h);
  display:flex; align-items:center;
  background: rgba(13,20,38,.88);
  border-bottom: 1px solid rgba(47,107,255,.22);
  transition: height .3s var(--ease), background .3s var(--ease);
}
.site-header::before{
  content:""; position:absolute; inset:0;
  background: rgba(13,20,38,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index:0; pointer-events:none;
}
.site-header.is-compact{ height: var(--header-h-compact); background: rgba(10,16,31,.97); }
.site-header .container{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:24px; }

.brand{ display:flex; align-items:center; gap:12px; flex:none; }
.brand-mark{
  display:flex; align-items:center; justify-content:center;
  padding:4px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 0 16px -2px rgba(47,107,255,.55), 0 0 22px -6px rgba(51,214,224,.4);
  transition: height .3s var(--ease);
}
.brand-mark img{ height: 40px; width:auto; border-radius: 8px; display:block; transition: height .3s var(--ease); }
.site-header.is-compact .brand-mark img{ height: 32px; }
.brand-mark--footer{
  display:inline-flex; flex:none; padding:4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 0 18px -8px rgba(47,107,255,.5);
}
.brand-mark--footer img{ height: 34px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing:.01em;
  color: var(--c-text);
}
.brand-text span{ font-size: 11.5px; font-weight:600; color: #5b93ff; letter-spacing:.06em; text-transform:uppercase; }

.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  padding: 10px 16px; border-radius: 100px; font-size: 14.5px; font-weight:500;
  color: var(--c-text-dim);
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover{ color: var(--c-text); background: rgba(255,255,255,.05); }
.main-nav a.active{ color: var(--c-text); background: var(--c-blue-soft); }
.main-nav a .nav-ic, .main-nav a .nav-arrow{ display:none; }

.header-actions{ display:flex; align-items:center; gap:14px; }
.header-actions .btn{ padding: 12px 22px; font-size:14px; }
.header-actions .btn-primary{
  box-shadow: 0 8px 26px -6px rgba(47,107,255,.6), 0 0 0 1px rgba(255,255,255,.08);
  animation: cta-glow 2.6s ease-in-out infinite;
}
.header-actions .btn-primary:hover{ animation-play-state: paused; }
@keyframes cta-glow{
  0%, 100%{ box-shadow: 0 8px 26px -6px rgba(47,107,255,.55), 0 0 0 1px rgba(255,255,255,.08); }
  50%{ box-shadow: 0 10px 36px -4px rgba(51,214,224,.9), 0 0 0 1px rgba(255,255,255,.16); }
}

.nav-toggle{
  display:none; flex:none; width:44px; height:44px; border-radius: 10px;
  align-items:center; justify-content:center; background: var(--c-surface); border:1px solid var(--c-surface-border);
  cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background: var(--c-text); border-radius:2px; position:relative;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }
.nav-toggle.is-open span{ background: transparent; }
.nav-toggle.is-open span::before{ top:0; transform: rotate(45deg); background:var(--c-text); }
.nav-toggle.is-open span::after{ top:0; transform: rotate(-45deg); background:var(--c-text); }

@media (max-width: 980px){
  .main-nav{
    position: fixed; inset: var(--header-h-compact) 0 0 0; top: var(--header-h);
    flex-direction: column; align-items:stretch; gap:4px;
    background: rgba(5,7,12,.98); backdrop-filter: blur(10px);
    padding: 18px; transform: translateY(-12px); opacity:0; pointer-events:none;
    transition: opacity .25s ease, transform .25s ease;
    overflow-y:auto;
  }
  .main-nav.is-open{ opacity:1; transform: translateY(0); pointer-events:auto; }
  .main-nav a{
    display:flex; align-items:center; gap:14px;
    padding:12px 14px; font-size:16px; border-radius: var(--radius-md);
    background: var(--c-surface); border:1px solid var(--c-surface-border);
    margin-bottom:8px;
  }
  .main-nav a:last-child{ margin-bottom:0; }
  .main-nav a:hover{ background: var(--c-surface-2); }
  .main-nav a.active{ background: var(--c-blue-soft); border-color: rgba(47,107,255,.4); }
  .main-nav a .nav-ic{
    display:flex; align-items:center; justify-content:center; flex:none;
    width:38px; height:38px; border-radius:10px;
    background: rgba(255,255,255,.05); color: var(--c-cyan);
  }
  .main-nav a .nav-ic svg{ width:18px; height:18px; }
  .main-nav a .nav-label{ flex:1; font-weight:600; }
  .main-nav a .nav-arrow{ display:flex; flex:none; color: var(--c-text-faint); }
  .main-nav a .nav-arrow svg{ width:15px; height:15px; }
  .header-actions .btn-text-hide{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions{ gap:10px; }
}
@media (max-width: 560px){
  .brand-text strong{ font-size:14.5px; }
  .brand-text span{ font-size:9.5px; }
  .brand-mark{ padding:3px; }
  .brand-mark img{ height:32px; }
  /* Keep the whole header row inside narrow phone screens: the brand may
     shrink (and truncate) so the CTA and the menu button always fit. */
  .site-header .container{ gap:10px; }
  .brand{ flex:0 1 auto; min-width:0; gap:9px; }
  .brand-text{ min-width:0; }
  .brand-text strong, .brand-text span{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .header-actions{ flex:none; gap:8px; }
  .header-actions .btn{ padding:11px 16px; }
}
@media (max-width: 430px){
  .brand-text span{ font-size:8.8px; letter-spacing:.02em; }
}
@media (max-width: 380px){
  /* Op smalle telefoons alles een maatje kleiner, zodat de bedrijfsnaam
     volledig blijft staan in plaats van afgekapt te worden. */
  .site-header .container{ padding-left:12px; padding-right:12px; gap:8px; }
  .brand{ gap:8px; }
  .brand-mark{ padding:3px; }
  .brand-mark img{ width:34px; height:34px; }
  .brand-text strong{ font-size:13.5px; }
  .brand-text span{ font-size:8px; letter-spacing:.01em; }
  .header-actions{ gap:6px; }
  .header-actions .btn{ padding:10px 12px; }
}
@media (max-width: 340px){
  /* Ondertitel blijft altijd staan, alleen kleiner. */
  .brand-text strong{ font-size:12.5px; }
  .brand-text span{ font-size:7.2px; letter-spacing:0; }
  .brand-mark img{ width:30px; height:30px; }
  .header-actions .btn{ padding:9px 10px; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 40px 0 84px;
  overflow: hidden;
  background:
    var(--grad-bg-glow),
    var(--c-bg);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(60% 60% at 50% 20%, black, transparent 80%);
  pointer-events:none;
}
.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center;
}
@media (max-width: 980px){ .hero-grid{ grid-template-columns:1fr; gap:48px; } }

.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 14px; border-radius:100px;
  background: var(--c-surface); border:1px solid var(--c-surface-border);
  font-size:13px; color: var(--c-text-dim); margin-bottom:22px;
}
.hero-badge .dot{ width:7px; height:7px; border-radius:50%; background: var(--c-cyan); box-shadow: 0 0 10px var(--c-cyan); }

.hero h1{ font-size: clamp(36px, 5vw, 60px); margin-bottom:22px; }
.hero h1 .accent{
  color: var(--c-cyan);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead{ font-size: 18px; max-width: 540px; margin-bottom: 34px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-visual{
  position:relative; aspect-ratio: 1/1; width: 100%; max-width: 480px; margin: 0 auto;
}
.hero-visual .glow{
  position:absolute; inset: 8%;
  background: radial-gradient(closest-side, rgba(47,107,255,.35), rgba(51,214,224,.08) 60%, transparent 75%);
  filter: blur(6px);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow{
  0%,100%{ opacity:.75; transform: scale(1); }
  50%{ opacity:1; transform: scale(1.06); }
}
.hero-visual svg{ position:relative; z-index:1; width:100%; height:100%; }
.hero-visual .ring{
  position:absolute; border:1px solid rgba(51,214,224,.25); border-radius:50%;
  inset: 0; animation: spin 34s linear infinite;
}
.hero-visual .ring.r2{ inset: 12%; border-color: rgba(47,107,255,.22); animation-duration: 26s; animation-direction: reverse; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero-photo{
  position:absolute; inset: 13%; z-index:1;
  border-radius: 22px; overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.65), 0 0 0 1px rgba(51,214,224,.14);
}
.hero-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---------- Hero-illustratie: groepenkast in de huisstijl ---------- */
.hero-graphic{ position:absolute; inset:9%; z-index:1; width:82%; height:82%; }
.hero-graphic .hg-floor{ fill:#4fc9ff; filter: blur(9px); }
.hero-graphic .hg-floor--1{ opacity:.06; }
.hero-graphic .hg-floor--2{ opacity:.08; }
.hero-graphic .hg-floor--3{ opacity:.1; }
.hero-graphic .hg-frame{ fill:#1b2c45; stroke: rgba(150,215,255,.34); stroke-width:1.2; }
.hero-graphic .hg-bevel{ fill:none; stroke: rgba(255,255,255,.1); stroke-width:1; }
.hero-graphic .hg-face{ fill:#0a1526; stroke: rgba(0,0,0,.5); stroke-width:1; }
.hero-graphic .hg-topline{ stroke: rgba(126,224,255,.42); stroke-width:1.2; stroke-linecap:round; }
.hero-graphic .hg-rail{ stroke: rgba(255,255,255,.11); stroke-width:2.2; stroke-linecap:round; }
.hero-graphic .hg-breaker{ fill:#17273f; stroke: rgba(150,215,255,.26); stroke-width:1; }
.hero-graphic .hg-label{ fill: rgba(255,255,255,.13); }
.hero-graphic .hg-lever{ fill: rgba(226,236,248,.25); }
.hero-graphic .hg-lever--on{ fill:#2ea8e6; }
.hero-graphic .hg-lever-top{ fill:#8bebff; }
.hero-graphic .hg-led{ fill: rgba(226,236,248,.16); }
.hero-graphic .hg-led--on{ fill:#9df4ff; }
.hero-graphic .hg-screen{ fill:#07111f; stroke: rgba(150,215,255,.22); stroke-width:1; }
.hero-graphic .hg-bars rect{ fill: rgba(140,224,255,.62); }
.hero-graphic .hg-plate{ fill: rgba(255,255,255,.05); stroke: rgba(255,255,255,.08); stroke-width:1; }
.hero-graphic .hg-plate-dot{ fill: rgba(126,224,255,.55); }
.hero-graphic .hg-kast{ opacity:.95; }
.hero-graphic .hg-skin{ fill:#d8b394; }
.hero-graphic .hg-neck{ fill:#c39c7c; }
.hero-graphic .hg-arm{ fill:#d8b394; }
.hero-graphic .hg-hand{ fill:#c9a486; }
.hero-graphic .hg-hair{ fill:#d9b45e; }
.hero-graphic .hg-shirt{ fill:#0e141d; stroke: rgba(150,215,255,.26); stroke-width:1.2; }
.hero-graphic .hg-shirt-edge{ fill:none; stroke: rgba(255,255,255,.16); stroke-width:1.4; stroke-linecap:round; }
.hero-graphic .hg-logo-shield{ fill:none; stroke:#eaf4ff; stroke-width:2.6; stroke-linejoin:round; }
.hero-graphic .hg-logo-bolt{ fill:#eaf4ff; }
.hero-graphic .hg-broek{ fill:#16202e; stroke: rgba(150,215,255,.18); stroke-width:1; }
.hero-graphic .hg-riem{ fill:#0b1119; }
.hero-graphic .hg-shoe{ fill:#0a0f16; }
.hero-graphic .hg-cables path{
  fill:none; stroke: rgba(96,186,255,.34); stroke-width:2.4; stroke-linecap:round;
}
.hero-graphic .hg-current{
  fill:none; stroke:#d9f4ff; stroke-width:2.4; stroke-linecap:round;
  stroke-dasharray: 14 150; animation: hg-flow 3s linear infinite;
}
.hero-graphic .hg-current--b{ animation-duration:3.6s; animation-delay:1.1s; }
@keyframes hg-flow{ from{ stroke-dashoffset:164; } to{ stroke-dashoffset:0; } }
@media (prefers-reduced-motion: reduce){
  .hero-graphic .hg-current{ animation:none; opacity:.4; }
}
}

/* ---------- Real photo frame (e.g. over-ons) ---------- */
.photo-frame{
  border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--c-surface-border);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
}
.photo-frame img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---------- Trust bar ---------- */
.trust-bar{ border-top:1px solid var(--c-surface-border); border-bottom:1px solid var(--c-surface-border); background: var(--c-bg-alt); }
.trust-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 28px; padding: 34px 0; }
@media (max-width: 860px){ .trust-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px){ .trust-grid{ grid-template-columns: 1fr; gap:18px; } }
.trust-item{ display:flex; align-items:center; gap:14px; min-width:0; }
.trust-item > div{ min-width:0; }
.trust-item .ic{
  flex:none; width:42px; height:42px; border-radius: 11px; background: var(--c-surface); border:1px solid var(--c-surface-border);
  display:flex; align-items:center; justify-content:center; color: var(--c-cyan);
}
.trust-item .ic svg{ width:20px; height:20px; }
.trust-item strong{ display:block; font-size:14.5px; font-weight:600; }
.trust-item span{ font-size:13px; color: var(--c-text-faint); }

/* ---------- Cards ---------- */
.card{
  background: var(--c-surface);
  border: 1px solid var(--c-surface-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  position:relative;
}
.card:hover{ transform: translateY(-4px); border-color: rgba(51,214,224,.35); box-shadow: var(--shadow-glow); }

/* Service cards */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .services-grid{ grid-template-columns: 1fr; } }
/* Vier vakgebieden: op een groot scherm altijd naast elkaar op een rij */
@media (min-width: 1024px){ .services-grid--four{ grid-template-columns: repeat(4, 1fr); gap:18px; } }
@media (max-width: 1023px){ .services-grid--four{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .services-grid--four{ grid-template-columns: 1fr; } }

.service-card{ display:flex; flex-direction:column; gap:16px; }
.service-card .ic{
  width:48px; height:48px; border-radius:12px;
  background: var(--c-blue-soft); border:1px solid rgba(47,107,255,.3);
  display:flex; align-items:center; justify-content:center; color: var(--c-cyan);
}
.service-card .ic svg{ width:22px; height:22px; }
.service-card h3{ font-size:18px; margin-bottom:6px; }
.service-card p{ font-size:14.5px; margin-bottom:0; flex:1; }
.service-card .card-link{
  display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:600; color: var(--c-cyan); margin-top:4px;
}
.service-card .card-link svg{ width:14px; height:14px; transition: transform .2s ease; }
.service-card:hover .card-link svg{ transform: translateX(3px); }
.service-card .cat-tag{
  position:absolute; top:20px; right:20px; font-size:10.5px; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color: var(--c-text-faint);
}

/* Reviews */
.review-summary{
  display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap;
  margin-top:12px;
}
.review-summary-score{ font-family: var(--font-head); font-size:19px; font-weight:700; color: var(--c-text); }
.star{ width:14px; height:14px; }
.star-filled{ color:#ffb42e; }
.star-empty{ color: var(--c-surface-border); }
.review-summary-stars{ display:flex; gap:2px; }
.review-summary-count{ font-size:12.5px; color: var(--c-text-faint); }
.review-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
@media (max-width: 980px){ .review-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .review-grid{ grid-template-columns: 1fr; } }
.review-grid--teaser{ grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; gap:18px; }
@media (max-width: 980px){ .review-grid--teaser{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .review-grid--teaser{ grid-template-columns: 1fr; } }
.review-card{ display:flex; flex-direction:column; gap:10px; padding:18px 20px; }
.review-card .review-stars{ display:flex; gap:2px; }
.review-card .review-stars .star{ width:13px; height:13px; }
.review-text{
  font-size:13px; line-height:1.5; color: var(--c-text-dim); flex:1;
  display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden;
}
.review-meta{ display:flex; flex-direction:column; gap:1px; font-size:12px; }
.review-meta strong{ color: var(--c-text); font-size:13px; }
.review-meta span{ color: var(--c-text-faint); }
.review-card--full{ padding:22px 24px; }
.review-card--full .review-text{ -webkit-line-clamp:unset; overflow:visible; font-size:14px; }

/* Diensten overview controls */
.diensten-toolbar{
  display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between;
  margin-bottom: 34px; padding: 18px; border-radius: var(--radius-md);
  background: var(--c-surface); border:1px solid var(--c-surface-border);
}
.search-field{
  display:flex; align-items:center; gap:10px; flex:1; min-width: 220px;
  background: var(--c-bg-alt); border:1px solid var(--c-surface-border); border-radius: 100px; padding: 12px 18px;
}
.search-field svg{ width:17px; height:17px; color: var(--c-text-faint); flex:none; }
.search-field input{ background:none; border:none; outline:none; color: var(--c-text); font-size:14.5px; width:100%; }
.search-field input::placeholder{ color: var(--c-text-faint); }

.filter-tabs{ display:flex; flex-wrap:wrap; gap:8px; }
.filter-tabs button{
  background: var(--c-bg-alt); border:1px solid var(--c-surface-border); color: var(--c-text-dim);
  padding: 10px 16px; border-radius:100px; font-size:13.5px; font-weight:500; cursor:pointer;
  transition: all .2s ease;
}
.filter-tabs button:hover{ color: var(--c-text); border-color: var(--c-cyan); }
.filter-tabs button.active{ background: var(--grad-brand); color:#050914; border-color:transparent; }

.services-empty{ display:none; text-align:center; padding: 60px 20px; color: var(--c-text-faint); }
.services-empty.is-visible{ display:block; }

.category-block{ margin-bottom: 56px; scroll-margin-top: calc(var(--header-h) + 24px); }
.category-block h2{ font-size:24px; display:flex; align-items:center; gap:12px; margin-bottom:24px; }
.category-block h2 .count{ font-size:13px; font-weight:500; color: var(--c-text-faint); background: var(--c-surface); border:1px solid var(--c-surface-border); padding:4px 12px; border-radius:100px; }

/* ---------- Werkwijze timeline ---------- */
.timeline{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; position:relative; }
.timeline::before{
  content:""; position:absolute; top:26px; left:6%; right:6%; height:1px;
  background: linear-gradient(90deg, transparent, var(--c-surface-border) 15%, var(--c-surface-border) 85%, transparent);
}
@media (max-width: 900px){
  .timeline{ grid-template-columns:1fr; gap:0; }
  .timeline::before{ display:none; }
}
.timeline-step{ position:relative; padding-top:0; }
@media (max-width: 900px){
  .timeline-step{ display:grid; grid-template-columns:56px 1fr; gap:18px; padding: 0 0 34px; }
  .timeline-step::before{ content:""; position:absolute; left:27px; top:56px; bottom:0; width:1px; background: var(--c-surface-border); }
  .timeline-step:last-child::before{ display:none; }
}
.timeline-num{
  width:54px; height:54px; border-radius:16px; background: var(--c-surface); border:1px solid var(--c-surface-border);
  display:flex; align-items:center; justify-content:center; font-family: var(--font-head); font-weight:600; font-size:16px;
  color: var(--c-cyan); margin-bottom: 22px; position:relative; z-index:1;
}
.timeline-step h3{ font-size:17px; margin-bottom:8px; }
.timeline-step p{ font-size:14.5px; margin-bottom:0; }

/* ---------- Portfolio ---------- */
.portfolio-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
@media (max-width: 980px){ .portfolio-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .portfolio-grid{ grid-template-columns: 1fr; } }
.portfolio-card{ border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--c-surface-border); background: var(--c-surface); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.portfolio-card:hover{ transform: translateY(-4px); border-color: rgba(51,214,224,.35); }
.portfolio-media{
  aspect-ratio: 4/3; position:relative; overflow:hidden;
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(47,107,255,.35), transparent 60%),
    radial-gradient(120% 120% at 85% 100%, rgba(51,214,224,.28), transparent 60%),
    var(--c-anthracite);
  display:flex; align-items:center; justify-content:center;
}
.portfolio-media svg{ width:64px; height:64px; color: rgba(255,255,255,.55); }
.portfolio-media.is-placeholder::after{
  content:"Voorbeeldproject"; position:absolute; top:14px; left:14px;
  font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; font-weight:600;
  background: rgba(5,7,12,.65); border:1px solid rgba(255,255,255,.12); padding:5px 10px; border-radius:100px;
  backdrop-filter: blur(4px);
}
.portfolio-media.has-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.portfolio-media.has-pair{ display:flex; padding:0; }
.portfolio-half{ position:relative; flex:1 1 0; width:auto; height:100%; overflow:hidden; }
.portfolio-half + .portfolio-half{ border-left:2px solid var(--c-bg); }
.portfolio-half img{ width:100%; height:100%; object-fit:cover; display:block; }
.portfolio-half .ba-label{
  position:absolute; bottom:10px; left:10px;
  font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; font-weight:700;
  background: rgba(5,7,12,.7); color: var(--c-cyan); border:1px solid rgba(255,255,255,.14); padding:4px 10px; border-radius:100px;
  backdrop-filter: blur(4px);
}
.portfolio-body{ padding: 22px; }
.portfolio-body .cat{ font-size:12px; color: var(--c-cyan); font-weight:600; letter-spacing:.04em; text-transform:uppercase; margin-bottom:8px; }
.portfolio-body h3{ font-size:17px; margin-bottom:8px; }
.portfolio-body p{ font-size:14px; margin-bottom:0; }
.portfolio-body .card-link{
  display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:600; color: var(--c-cyan); margin-top:14px;
}
.portfolio-body .card-link svg{ width:14px; height:14px; transition: transform .2s ease; }
.portfolio-card:hover .portfolio-body .card-link svg{ transform: translateX(3px); }

/* Project detail gallery */
.project-gallery{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin: 18px 0 8px; }
@media (max-width: 640px){ .project-gallery{ grid-template-columns: repeat(2,1fr); } }
.project-gallery figure{
  position:relative; margin:0; border-radius: var(--radius-md); overflow:hidden;
  aspect-ratio: 4/3; border:1px solid var(--c-surface-border); background: var(--c-anthracite);
}
.project-gallery img{ width:100%; height:100%; object-fit:cover; display:block; }
.project-gallery figcaption{
  position:absolute; bottom:10px; left:10px; right:10px;
  font-size:11px; letter-spacing:.03em; font-weight:600; color: var(--c-text);
  background: rgba(5,7,12,.72); border:1px solid rgba(255,255,255,.12); padding:5px 10px; border-radius:100px;
  backdrop-filter: blur(4px); display:inline-flex; width:fit-content; max-width:100%;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

/* ---------- Forms ---------- */
.form-card{
  background: var(--c-surface); border:1px solid var(--c-surface-border); border-radius: var(--radius-lg);
  padding: 40px; position:relative; overflow:hidden;
}
.form-card::before{
  content:""; position:absolute; top:-40%; right:-20%; width:60%; height:100%;
  background: radial-gradient(closest-side, rgba(51,214,224,.12), transparent 70%);
  pointer-events:none;
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; position:relative; }
@media (max-width: 640px){ .form-grid{ grid-template-columns:1fr; } }
.form-field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.form-field.full{ grid-column: 1/-1; }
.form-field label{ font-size:13.5px; font-weight:600; color: var(--c-text-dim); }
.form-field .req{ color: var(--c-cyan); }
.form-field input, .form-field select, .form-field textarea{
  background: var(--c-bg-alt); border: 1px solid var(--c-surface-border); border-radius: var(--radius-sm);
  padding: 13px 16px; color: var(--c-text); font-size:14.5px; width:100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color: var(--c-cyan); box-shadow: 0 0 0 3px rgba(51,214,224,.14); outline:none;
}
.form-field textarea{ resize: vertical; min-height: 120px; }
.form-field small{ color: var(--c-text-faint); font-size:12.5px; }
.form-field select{ appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 16px center; padding-right: 40px; }

.file-drop{
  border: 1.5px dashed var(--c-surface-border); border-radius: var(--radius-sm);
  padding: 22px; text-align:center; color: var(--c-text-faint); font-size:13.5px;
  background: var(--c-bg-alt); cursor:pointer; transition: border-color .2s ease;
}
.file-drop:hover{ border-color: var(--c-cyan); }
.file-drop input{ display:none; }

.checkbox-field{ display:flex; align-items:flex-start; gap:10px; }
.checkbox-field input{ margin-top:3px; accent-color: var(--c-cyan); width:16px; height:16px; flex:none; }
.checkbox-field label{ font-size:13.5px; color: var(--c-text-dim); font-weight:400; }
.checkbox-field a{ color: var(--c-cyan); text-decoration: underline; text-underline-offset:2px; }

.form-msg{ display:none; padding:16px 18px; border-radius: var(--radius-sm); font-size:14px; margin-bottom:20px; align-items:flex-start; gap:10px; }
.form-msg.is-visible{ display:flex; }
.form-msg.success{ background: rgba(51,224,161,.1); border:1px solid rgba(51,224,161,.3); color:#8ef4cf; }
.form-msg.error{ background: rgba(255,93,108,.1); border:1px solid rgba(255,93,108,.3); color:#ffb3ba; }
.field-error{ color: var(--c-error); font-size:12.5px; display:none; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea{ border-color: var(--c-error); }
.form-field.has-error .field-error{ display:block; }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ background: var(--c-surface); border:1px solid var(--c-surface-border); border-radius: var(--radius-sm); overflow:hidden; }
.faq-item summary{
  list-style:none; cursor:pointer; padding: 18px 22px; display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-weight:600; font-size:15px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{ flex:none; width:22px; height:22px; position:relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after{
  content:""; position:absolute; background: var(--c-cyan); border-radius:2px; transition: transform .25s ease;
}
.faq-item summary .plus::before{ left:0; top:50%; width:100%; height:2px; margin-top:-1px; }
.faq-item summary .plus::after{ top:0; left:50%; height:100%; width:2px; margin-left:-1px; }
.faq-item[open] summary .plus::after{ transform: rotate(90deg); opacity:0; }
.faq-item .faq-body{ padding: 0 22px 20px; font-size:14.5px; color: var(--c-text-dim); }

/* ---------- Detail page layout ---------- */
.breadcrumbs{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:13px; color: var(--c-text-faint); margin-bottom:26px; }
.breadcrumbs a{ color: var(--c-text-faint); transition: color .2s ease; }
.breadcrumbs a:hover{ color: var(--c-cyan); }
.breadcrumbs .sep{ opacity:.5; }
.breadcrumbs .current{ color: var(--c-text-dim); }

.page-hero{ padding: 56px 0 48px; border-bottom:1px solid var(--c-surface-border); background: var(--grad-bg-glow), var(--c-bg); }
.page-hero .cat-badge{ display:inline-block; font-size:12px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color: var(--c-cyan); background: var(--c-blue-soft); border:1px solid rgba(47,107,255,.3); padding:6px 14px; border-radius:100px; margin-bottom:18px; }
.page-hero h1{ font-size: clamp(28px, 4vw, 44px); max-width: 780px; }
.page-hero p.lead{ font-size:17px; max-width:660px; }

.detail-layout{ display:grid; grid-template-columns: 1fr 340px; gap:56px; align-items:start; }
.detail-layout > *{ min-width:0; }
@media (max-width: 940px){ .detail-layout{ grid-template-columns:1fr; } }
.detail-body h2{ font-size:22px; margin-top:44px; }
.detail-body h2:first-child{ margin-top:0; }
.detail-body ul.check-list{ display:flex; flex-direction:column; gap:12px; margin: 18px 0; }
.detail-body ul.check-list li{ display:flex; gap:12px; align-items:flex-start; color: var(--c-text-dim); font-size:15px; }
.detail-body ul.check-list li svg{ flex:none; width:19px; height:19px; color: var(--c-cyan); margin-top:2px; }
.note-box{
  margin-top:28px; padding:18px 20px; border-radius: var(--radius-sm);
  background: var(--c-surface); border:1px solid var(--c-surface-border); border-left:3px solid var(--c-cyan);
  font-size:13.5px; color: var(--c-text-dim);
}

.sidebar-card{ position: sticky; top: calc(var(--header-h) + 24px); background: var(--c-surface); border:1px solid var(--c-surface-border); border-radius: var(--radius-md); padding:28px; }
.sidebar-card h3{ font-size:17px; margin-bottom:10px; }
.sidebar-card p{ font-size:14px; margin-bottom:22px; }

/* ---------- Sidebar stack (contact page: form sidebar + coverage map) ---------- */
.sidebar-stack{ display:flex; flex-direction:column; gap:24px; position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-stack .sidebar-card{ position: static; }

/* ---------- Werkgebiedkaart (echte kaart, groen met wit 'electrisch') ---------- */
.coverage-card{
  background: var(--c-surface); border:1px solid var(--c-surface-border); border-radius: var(--radius-md);
  padding: 26px; text-align:center;
  --map-water:#03101f; --map-shore:#2f7fc9; --map-coast:#4fc9ff;
  --map-spark:#eaf7ff; --map-spark-soft: rgba(110,208,255,.7);
}
.coverage-map{ position:relative; aspect-ratio:1/1; max-width:100%; margin:0 auto 18px; }
.coverage-glow{
  position:absolute; inset:-4%; border-radius:22px;
  background: radial-gradient(closest-side, rgba(79,201,255,.24), rgba(24,80,150,.08) 62%, transparent 82%);
  filter: blur(12px); animation: pulse-glow 6s ease-in-out infinite;
}
.coverage-map svg{ position:relative; z-index:1; width:100%; height:100%; overflow:visible; }

/* land, zee en rivieren */
.coverage-map .geo-landmass{ fill: url(#geo-land); }
.coverage-map .geo-bank path{ stroke: rgba(70,150,230,.45); }
.coverage-map .geo-sea-fill path{ fill: var(--map-water); }
.coverage-map .geo-river path{ stroke: var(--map-water); }
.coverage-map .geo-coast{ fill:none; stroke: var(--map-coast); stroke-width:1.2; stroke-opacity:.75; }

/* het 'electrische' net vanuit Hellevoetsluis */
.coverage-map .geo-links line{
  stroke: var(--map-spark); stroke-width:.7; stroke-opacity:.22;
  stroke-dasharray: 3 6; animation: geo-spark 7s linear infinite;
}
@keyframes geo-spark{ to{ stroke-dashoffset:-90; } }

.coverage-map .geo-compass{
  fill: rgba(234,247,255,.78); font-size:10px; font-weight:700; letter-spacing:.08em;
  font-family: var(--font-body);
}
.coverage-map .geo-dot{ fill: rgba(234,247,255,.72); }
.coverage-map .geo-dot--major{
  fill:#fff; filter: drop-shadow(0 0 4px var(--map-spark-soft));
}
.coverage-map .geo-label{
  fill: rgba(240,250,255,.93); font-size:9px; font-family: var(--font-body); letter-spacing:.01em;
  paint-order: stroke fill; stroke: rgba(3,10,20,.88); stroke-width:3px; stroke-linejoin:round;
}
.coverage-map .geo-label--center{ fill:#fff; font-size:10px; font-weight:700; }
.coverage-map .geo-center{ fill:#fff; filter: drop-shadow(0 0 6px rgba(160,225,255,.95)); }
.coverage-map .geo-pulse{
  fill:none; stroke: var(--map-spark); stroke-width:2;
  transform-origin: 180px 180px; animation: coverage-pulse 2.6s ease-out infinite;
}
@keyframes coverage-pulse{ 0%{ r:6; stroke-opacity:.8; } 100%{ r:74; stroke-opacity:0; } }
@media (prefers-reduced-motion: reduce){
  .coverage-map .geo-pulse, .coverage-glow, .coverage-map .geo-links line{ animation:none; }
}
.coverage-caption{ display:flex; flex-direction:column; gap:3px; }
.coverage-caption strong{ font-family: var(--font-head); font-size:15px; }
.coverage-caption span{ font-size:13px; color: var(--c-text-dim); }
.coverage-caption .coverage-cities{ font-size:12px; color: var(--c-text-faint); line-height:1.5; margin-top:2px; }
@media (max-width: 940px){ .sidebar-stack{ position:static; } }
.sidebar-list{ display:flex; flex-direction:column; gap:10px; margin-top:26px; padding-top:22px; border-top:1px solid var(--c-surface-border); }
.sidebar-list a{ font-size:14px; color: var(--c-text-dim); padding:8px 0; display:flex; justify-content:space-between; align-items:center; gap:10px; transition: color .2s ease; }
.sidebar-list a:hover{ color: var(--c-cyan); }
.sidebar-list a svg{ width:15px; height:15px; flex:none; }
.sidebar-list .label{ font-size:12px; text-transform:uppercase; letter-spacing:.05em; color: var(--c-text-faint); margin-bottom:6px; display:block; }

.related-services{ margin-top:16px; }

/* ---------- CTA band ---------- */
.cta-band{
  position:relative; overflow:hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0c1830 0%, #0a1e2a 100%);
  border:1px solid rgba(51,214,224,.25);
  padding: 56px; text-align:center;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(47,107,255,.28), transparent 70%);
}
.cta-band > *{ position:relative; }
.cta-band h2{ font-size: clamp(24px,3vw,34px); margin-bottom:14px; text-wrap: balance; }
.cta-band p{ max-width:520px; margin:0 auto 30px; font-size:16px; text-wrap: pretty; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-band--photo{
  display:grid; grid-template-columns: .82fr 1.18fr; gap:44px; align-items:center;
  text-align:left; padding:34px;
}
.cta-band--photo .cta-photo{
  border-radius: var(--radius-md); overflow:hidden; aspect-ratio:4/3;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 44px -22px rgba(0,0,0,.7);
}
.cta-band--photo .cta-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.cta-band--photo p{ max-width:none; margin:0 0 28px; }
.cta-band--photo .cta-actions{ justify-content:flex-start; }
@media (max-width: 820px){
  .cta-band--photo{ grid-template-columns:1fr; gap:26px; text-align:center; padding:26px; }
  .cta-band--photo p{ margin-left:auto; margin-right:auto; }
  .cta-band--photo .cta-actions{ justify-content:center; }
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--c-bg-alt); border-top:1px solid var(--c-surface-border); padding: 72px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1fr 1.6fr 1.2fr; gap:40px; margin-bottom:56px; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; flex-direction:column; align-items:flex-start; gap:18px; }
.footer-logo{ display:inline-flex; align-items:center; gap:12px; }
.footer-logo-text{ display:flex; flex-direction:column; line-height:1.2; }
.footer-logo-text strong{ font-family: var(--font-head); font-size:16px; font-weight:700; color: var(--c-text); }
.footer-logo-text > span{ font-size:10.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:#5b93ff; }
.footer-logo:hover .footer-logo-text strong{ color: var(--c-cyan); }
.footer-tagline{
  color: var(--c-text-dim);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: -.012em;
  max-width: 340px;
  margin: 0;
  text-wrap: pretty;   /* voorkomt een los woord op de laatste regel */
}
.footer-tagline strong{ color: var(--c-cyan); font-weight: 600; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; color: var(--c-text-faint); margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color: var(--c-text-dim); transition: color .2s ease; }
.footer-col a:hover{ color: var(--c-cyan); }
.footer-col .placeholder{ color: var(--c-text-faint); font-style:italic; }
.footer-contact ul{ gap:16px; }
.footer-contact ul li{ display:flex; align-items:flex-start; gap:12px; }
.footer-contact .ic{
  flex:none; width:32px; height:32px; margin-top:1px; border-radius:9px;
  background: rgba(51,214,224,.08); border:1px solid rgba(51,214,224,.2);
  display:flex; align-items:center; justify-content:center; color: var(--c-cyan);
}
.footer-contact .ic svg{ width:15px; height:15px; }
.footer-contact .ic--fb svg{ width:19px; height:19px; }
.footer-contact ul li > a, .footer-contact ul li > span{ padding-top:6px; }
.hours{ display:flex; flex-direction:column; gap:4px; }
.hours-row{
  display:flex; align-items:baseline; justify-content:space-between; gap:18px;
  min-width:190px; font-variant-numeric: tabular-nums;
}
.hours-row > span:first-child{
  font-size:11.5px; letter-spacing:.09em; text-transform:uppercase;
  color: var(--c-text-faint); font-weight:600;
}
.hours-row > span:last-child{ font-size:14px; color: var(--c-text); font-weight:500; }
.hours-row--closed > span:last-child{ color: var(--c-text-faint); font-weight:400; }
.kv .hours{ margin-top:4px; }
.kv .hours-row{ min-width:180px; }
.footer-cta{ margin-top:22px; padding:12px 22px; font-size:14px; }
.footer-sub{ display:block; margin-top:3px; font-size:12.5px; color: var(--c-text-faint); opacity:.8; }
.footer-bottom{ display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--c-surface-border); font-size:13px; color: var(--c-text-faint); }
.footer-bottom .links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom a{ color: var(--c-text-faint); }
.footer-bottom a:hover{ color: var(--c-cyan); }

/* ---------- Utility ---------- */
/* Reveal-on-scroll is progressive enhancement: content is visible by default
   (in case JS fails to load or errors) and only animates in when the JS in
   main.js confirms it can run the IntersectionObserver-based reveal. */
html.js-reveal .reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js-reveal .reveal.is-visible{ opacity:1; transform:none; }
.stagger .reveal:nth-child(1){ transition-delay: .02s; }
.stagger .reveal:nth-child(2){ transition-delay: .08s; }
.stagger .reveal:nth-child(3){ transition-delay: .14s; }
.stagger .reveal:nth-child(4){ transition-delay: .2s; }
.stagger .reveal:nth-child(5){ transition-delay: .26s; }
.stagger .reveal:nth-child(6){ transition-delay: .32s; }

.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
@media (max-width: 860px){ .two-col{ grid-template-columns:1fr; gap:36px; } }

.kv-list{ display:flex; flex-direction:column; gap:16px; margin: 24px 0; }
.kv-list .kv{ display:flex; gap:14px; align-items:flex-start; padding:16px; background: var(--c-surface); border:1px solid var(--c-surface-border); border-radius: var(--radius-sm); }
.kv-list .kv .ic{ flex:none; width:38px; height:38px; border-radius:10px; background: var(--c-blue-soft); display:flex; align-items:center; justify-content:center; color: var(--c-cyan); }
.kv-list .kv .ic svg{ width:18px; height:18px; }
.kv-list .kv strong{ display:block; font-size:14.5px; margin-bottom:2px; }
.kv-list .kv span{ font-size:13.5px; color: var(--c-text-faint); line-height:1.5; }
.kv-list .kv .kv-sub{ display:block; margin-top:3px; font-size:12px; letter-spacing:.02em; color: var(--c-cyan); opacity:.85; }
.kv-list .kv .kv-sub--cities{ color: var(--c-text-faint); opacity:.75; font-size:11.5px; letter-spacing:0; }
.kv-list .kv span a{ color: var(--c-text-dim); text-decoration:underline; text-underline-offset:2px; transition: color .2s ease; }
.kv-list .kv span a:hover{ color: var(--c-cyan); }

.badge-soon{ display:inline-block; font-size:11.5px; color: var(--c-text-faint); border:1px dashed var(--c-surface-border); padding:4px 10px; border-radius:100px; font-style:italic; }

.legal-content h2{ font-size:20px; margin-top:36px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ font-size:15px; color: var(--c-text-dim); }
.legal-content ul{ list-style:disc; padding-left:22px; margin-bottom:1em; }
.legal-content ul li{ margin-bottom:6px; }

.map-placeholder{
  aspect-ratio: 16/8; border-radius: var(--radius-md); border:1px solid var(--c-surface-border);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 14px), var(--c-surface);
  display:flex; align-items:center; justify-content:center; text-align:center; padding:24px;
  color: var(--c-text-faint); font-size:14px;
}

.footer-credit{ color: var(--c-text-dim); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.18); }
.footer-credit:hover{ color: var(--c-cyan); border-bottom-color: var(--c-cyan); }

.review-badge{
  display:inline-block; margin-top:8px; font-size:11px; letter-spacing:.06em;
  text-transform:uppercase; color: var(--c-text-faint);
  border:1px solid var(--c-surface-border); border-radius:999px; padding:3px 9px;
}
.review-source-link{ color: var(--c-cyan); text-decoration:none; border-bottom:1px solid rgba(51,214,224,.4); }
.review-source-link:hover{ border-bottom-color: var(--c-cyan); }

/* ---------- Veelgestelde vragen ---------- */
.container--narrow{ max-width: 820px; }
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{
  background: var(--c-surface); border:1px solid var(--c-surface-border);
  border-radius: var(--radius-md); overflow:hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item[open]{ border-color: rgba(51,214,224,.32); }
.faq-item summary{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:18px 22px; cursor:pointer; list-style:none;
  font-family: var(--font-head); font-size:16.5px; font-weight:600; color: var(--c-text);
  text-wrap: balance;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:hover{ color: var(--c-cyan); }
.faq-plus{
  position:relative; flex:none; width:18px; height:18px;
}
.faq-plus::before, .faq-plus::after{
  content:""; position:absolute; left:50%; top:50%; background: var(--c-cyan);
  transform: translate(-50%,-50%); border-radius:2px;
  transition: transform .25s var(--ease), opacity .25s ease;
}
.faq-plus::before{ width:15px; height:2px; }
.faq-plus::after{ width:2px; height:15px; }
.faq-item[open] .faq-plus::after{ transform: translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-answer{ padding:0 22px 20px; }
.faq-answer p{ margin:0; color: var(--c-text-dim); font-size:15px; line-height:1.72; text-wrap: pretty; }
@media (max-width:560px){
  .faq-item summary{ padding:16px 18px; font-size:15.5px; }
  .faq-answer{ padding:0 18px 18px; }
}

.footer-meta{ display:flex; flex-wrap:wrap; align-items:baseline; gap:2px 8px; }
.footer-meta-item{ white-space:nowrap; }
.footer-meta-sep{ color: var(--c-text-faint); }
@media (max-width:560px){
  .footer-meta{ gap:2px 15px; }
  .footer-meta-sep{ display:none; }
}

/* ---------- Vakinhoudelijke geloofsbrieven ---------- */
.cred-band{
  background: var(--c-bg-alt);
  border-top:1px solid var(--c-surface-border); border-bottom:1px solid var(--c-surface-border);
}
.cred-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:24px; }
@media (max-width: 780px){ .cred-grid{ grid-template-columns:1fr; gap:20px; } }
.cred-item{ display:flex; align-items:flex-start; gap:16px; }
.cred-item .ic{
  flex:none; width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(51,214,224,.1); border:1px solid rgba(51,214,224,.28); color: var(--c-cyan);
}
.cred-item .ic svg{ width:21px; height:21px; }
.cred-item strong{
  display:block; font-family: var(--font-head); font-size:16px; color: var(--c-text); margin-bottom:5px;
}
.cred-item span{ display:block; font-size:14.5px; color: var(--c-text-dim); line-height:1.65; text-wrap: pretty; }

@media (max-width: 980px){ .hero{ padding: 26px 0 60px; } }
@media (max-width: 560px){ .hero{ padding: 18px 0 48px; } }
