*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  color-scheme: dark;
  --bg:       #2b2d2f;
  --bg-dark:  #1e2021;
  --bg-deep:  #17191a;
  --ink:      #f0ece4;
  --dim:      #d4d0c8;
  --muted:    #aaa8a2;
  --border:   rgba(255,255,255,0.11);
  --border-h: rgba(255,255,255,0.20);
  --card:     rgba(255,255,255,0.055);
  --card-h:   rgba(255,255,255,0.09);
  --orange:   #e8500a;
  --orange2:  #ff6b2b;
  --teal:     #008080;
  --teal2:    #00a8a8;
  --radius:   10px;
  --nav-h:    64px;
  --banner-h: 52px;

  /* LIGHT sections */
  --light-bg:   #ffffff;
  --light-text: #0d0d0d;
  --light-dim:  #2d2d2d;
  --light-muted:#555555;
  --light-border: rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  padding-top: calc(var(--nav-h) + var(--banner-h));
  overflow-x: hidden;
}

/* ── SCROLL ANIMATIONS ── */
[data-a] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,.68,0,1.2), transform .6s cubic-bezier(.22,.68,0,1.2);
}
[data-a="left"]  { transform: translateX(-24px); }
[data-a="right"] { transform: translateX(24px); }
[data-a].vis { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: .08s; }
[data-d="2"] { transition-delay: .16s; }
[data-d="3"] { transition-delay: .24s; }
[data-d="4"] { transition-delay: .32s; }
[data-d="5"] { transition-delay: .40s; }

/* ── NAV ── */
nav {
  position: fixed;
  inset: var(--banner-h) 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(23,25,26,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
}
nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.4); }

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo .o { color: var(--orange); }
.logo .t { color: var(--teal); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px; color: var(--dim); text-decoration: none;
  padding: 7px 14px; border-radius: 5px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--card-h); }
.nav-links .cta {
  background: var(--orange); color: #fff; font-weight: 600;
  margin-left: 6px; padding: 9px 20px;
  box-shadow: 0 3px 12px rgba(232,80,10,.3);
}
.nav-links .cta:hover { background: var(--orange2); color: #fff; }

/* NAV phone number */
.nav-tel {
  font-size: 13px; font-weight: 500; color: var(--teal2) !important;
  background: none !important;
}
.nav-tel:hover { color: var(--teal) !important; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob {
  display: none; position: fixed;
  top: calc(var(--nav-h) + var(--banner-h)); left: 0; right: 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 8px 6vw 20px;
  flex-direction: column; gap: 0; z-index: 99;
  animation: slideDown .2s ease;
}
.mob.open { display: flex; }
.mob a {
  font-size: 16px; color: var(--dim); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color .2s; font-weight: 400;
}
.mob a:last-child { border: none; color: var(--orange); font-weight: 600; padding-top: 18px; }
.mob .mob-tel { color: var(--teal2) !important; font-weight: 500; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 820px) { .nav-links { display: none; } .burger { display: flex; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 18px rgba(232,80,10,.35);
}
.btn-primary:hover { background: var(--orange2); box-shadow: 0 6px 24px rgba(232,80,10,.45); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--ink);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* dark-bg ghost on light bg */
.btn-ghost-dark {
  background: transparent; color: var(--light-text);
  border: 1.5px solid rgba(0,0,0,.2); font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; cursor: pointer;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.btn-ghost-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 6vw 64px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: 'DURF';
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(130px, 26vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.032);
  position: absolute; right: -1vw; top: 50%;
  transform: translateY(-50%);
  line-height: 1; pointer-events: none; user-select: none;
}

.hero-top {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.brand-logo-img {
  width: 110px; height: 110px; object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0,128,128,.22));
  flex-shrink: 0;
}
.hero-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal);
  opacity: 0; animation: heroUp .6s .05s forwards;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 8vw, 108px);
  line-height: .93; max-width: 780px;
  color: var(--teal2);
  opacity: 0; animation: heroUp .65s .18s forwards;
}
.hero h1 em { color: var(--orange); font-style: italic; }

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px); font-weight: 400;
  line-height: 1.65; color: var(--dim);
  max-width: 520px; margin-top: 20px;
  opacity: 0; animation: heroUp .6s .35s forwards;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-actions {
  display: flex; gap: 14px; margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0; animation: heroUp .6s .5s forwards;
}

/* Direct contact in hero */
.hero-contact {
  margin-top: 28px; display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  opacity: 0; animation: heroUp .6s .62s forwards;
}
.hero-contact-label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim); font-weight: 500;
}
.hero-tel {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px;
  color: var(--teal2); text-decoration: none; letter-spacing: .05em;
  transition: color .2s;
}
.hero-tel:hover { color: var(--teal); }
.hero-tel-sep { color: var(--border); font-size: 20px; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── HERO PRODUCTKEUZE ── */
.hero-keuze {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 980px; margin-top: 30px;
  opacity: 0; animation: heroUp .6s .5s forwards;
}
@media (max-width: 860px) { .hero-keuze { grid-template-columns: 1fr; max-width: 660px; } }
.keuze-kaart {
  display: flex; flex-direction: column; gap: 7px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
.keuze-kaart:hover {
  background: var(--card-h); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}
.keuze-kaart.ka:hover { border-color: var(--teal); }
.keuze-kaart.kv:hover { border-color: var(--orange); }
.keuze-icon { font-size: 26px; align-self: center; }
.keuze-titel { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--ink); text-align: center; align-self: center; }
.keuze-sub { font-size: 13.5px; color: var(--dim); line-height: 1.55; flex: 1; }
.keuze-pijl { font-size: 13px; font-weight: 600; margin-top: 8px; }
.ka .keuze-pijl { color: var(--teal2); }
.kv .keuze-pijl { color: var(--orange2); }
@media (max-width: 500px) {
  .brand-logo-img { width: 80px; height: 80px; }
  .hero-tel { font-size: 22px; }
}

/* ── TRUST STRIP ── */
.trust {
  background: var(--bg-dark);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 6vw;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 60px); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; text-align: left;
}
.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; line-height: 1; color: var(--orange);
}
.trust-num.t { color: var(--teal2); }
.trust-label { font-size: 12px; color: var(--muted); line-height: 1.4; max-width: 110px; }
.trust-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
@media (max-width: 560px) { .trust-sep { display: none; } }

/* ── SECTION LABEL ── */
.section-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-label.dark-bg { color: var(--teal); }
.section-label.light-bg { color: var(--teal); }

/* ── WAT WE DOEN — DARK BG ── */
.wat {
  padding: 80px 6vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.wat h1, .wat h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  color: var(--ink); margin-bottom: 10px;
}
.wat h1 em, .wat h2 em { color: var(--orange); font-style: italic; }
.wat-lead {
  font-size: 16px; font-weight: 400; line-height: 1.65;
  color: var(--dim); max-width: 560px; margin-bottom: 48px;
}

.diensten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.dienst {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px 28px;
  transition: border-color .25s, background .25s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.dienst::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.dienst.c1::before { background: linear-gradient(90deg, var(--teal), var(--teal2)); }
.dienst.c2::before { background: linear-gradient(90deg, var(--orange), var(--orange2)); }
.dienst.c3::before { background: linear-gradient(90deg, var(--teal2), #00d0d0); }
.dienst.c4::before { background: linear-gradient(90deg, var(--orange2), #ffaa55); }
.dienst:hover {
  background: var(--card-h); border-color: var(--border-h);
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.dienst-icon { font-size: 28px; margin-bottom: 14px; display: block; text-align: center; }
.dienst h3 {
  font-family: 'DM Serif Display', serif; font-size: 20px;
  margin-bottom: 8px; color: var(--ink); text-align: center;
}
.dienst p {
  font-size: 14px; font-weight: 400; line-height: 1.6; color: var(--dim);
}
.dienst-wins {
  list-style: none; margin-top: 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.dienst-wins li {
  font-size: 13px; color: var(--dim);
  padding-left: 18px; position: relative; line-height: 1.45;
}
.dienst-wins li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--teal); font-size: 11px; top: 2px;
}
.dienst.c2 .dienst-wins li::before,
.dienst.c4 .dienst-wins li::before { color: var(--orange); }

/* ── TIJDWINST — LIGHT BG ── */
.tijdwinst {
  background: var(--light-bg);
  padding: 80px 6vw;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.tijdwinst .section-label { color: var(--teal); }
.tijdwinst h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  margin-bottom: 18px; color: var(--light-text);
}
.tijdwinst h2 em { color: var(--orange); font-style: italic; }
.tijdwinst p {
  font-size: 16px; font-weight: 400; line-height: 1.75;
  color: var(--light-dim); margin-bottom: 14px;
}
.tijdwinst p strong { color: var(--light-text); font-weight: 700; }

.tijdwinst-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 740px) { .tijdwinst-inner { grid-template-columns: 1fr; gap: 40px; } }

.uren-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.uur-blok {
  background: #fff; border: 1px solid #ddd;
  border-radius: 8px; padding: 22px 18px; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.uur-blok:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateY(-2px); }
.uur-blok .num {
  font-family: 'Bebas Neue', sans-serif; font-size: 50px;
  line-height: 1; color: var(--orange); display: block;
}
.uur-blok.t .num { color: var(--teal); }
.uur-blok .lbl {
  font-size: 12px; font-weight: 500; color: var(--light-muted);
  display: block; margin-top: 5px; line-height: 1.4;
}

/* ── REVIEWS — DARK BG ── */
.reviews {
  padding: 80px 6vw;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}
.reviews h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  color: var(--ink); margin-bottom: 10px;
}
.reviews h2 em { color: var(--teal); font-style: italic; }
.reviews-sub {
  font-size: 15px; font-weight: 400; color: var(--dim);
  margin-bottom: 44px; max-width: 440px; line-height: 1.65;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s, background .25s, transform .2s;
}
.review-card:hover {
  background: var(--card-h); border-color: var(--border-h); transform: translateY(-2px);
}
.review-quote {
  font-family: 'DM Serif Display', serif; font-size: 44px;
  line-height: .7; color: var(--orange); opacity: .45; user-select: none;
}
.review-text {
  font-size: 15px; font-weight: 400; line-height: 1.7;
  color: var(--dim); font-style: italic; flex: 1;
}
.review-text strong { color: var(--ink); font-weight: 600; font-style: normal; }
.review-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 15px;
  letter-spacing: .04em; flex-shrink: 0;
  color: var(--ink);
}
.review-avatar.o { background: rgba(232,80,10,.2); color: var(--orange2); }
.review-avatar.t { background: rgba(0,128,128,.2); color: var(--teal2); }
.review-name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.review-bedrijf { font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 1px; }
.review-besparing {
  margin-left: auto; background: rgba(0,128,128,.12);
  border: 1px solid rgba(0,128,128,.22); border-radius: 4px;
  padding: 4px 9px; font-size: 11px; font-weight: 600;
  color: var(--teal2); white-space: nowrap; letter-spacing: .04em;
}

/* ── TRUSTPILOT ── */
.trustpilot-blok {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.tp-ster {
  width: 54px; height: 54px; border-radius: 8px; flex-shrink: 0;
  background: #00b67a; color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
}
.tp-tekst { flex: 1; min-width: 200px; }
.tp-tekst strong { font-size: 17px; color: var(--ink); display: block; margin-bottom: 4px; }
.tp-tekst p { font-size: 14px; color: var(--dim); line-height: 1.6; margin: 0; }
.tp-acties { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .trustpilot-blok { flex-direction: column; align-items: flex-start; }
  .tp-acties, .tp-acties .btn { width: 100%; justify-content: center; }
}

/* ── KOSTEN — LIGHT BG ── */
.kosten {
  padding: 80px 6vw;
  border-top: 1px solid #ddd;
  background: var(--light-bg);
}
.kosten .section-label { color: var(--teal); }
.kosten h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  color: var(--light-text); margin-bottom: 10px;
}
.kosten h2 em { color: var(--orange); font-style: italic; }
.kosten-sub {
  font-size: 16px; font-weight: 400; color: var(--light-dim);
  margin-bottom: 44px; max-width: 500px; line-height: 1.65;
}

.prijs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-bottom: 20px;
}
.prijs {
  background: #fff; border: 1.5px solid #ddd;
  border-radius: var(--radius); padding: 34px 26px;
  position: relative;
  transition: border-color .25s, transform .2s, box-shadow .2s;
  color: var(--light-text);
}
.prijs:hover {
  border-color: #bbb; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
}
.prijs.uitgelicht {
  border-color: var(--orange);
  background: #fff8f5;
}
.prijs.uitgelicht:hover { border-color: var(--orange2); }
.prijs.uitgelicht::before {
  content: 'Meest gekozen';
  position: absolute; top: -11px; left: 20px;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 3px;
}
.prijs-naam {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.prijs-bedrag {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px;
  line-height: 1; color: var(--light-text);
}
.prijs-periode {
  font-size: 13px; color: var(--light-muted); margin-bottom: 24px; margin-top: 2px;
}
.prijs ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prijs ul li {
  font-size: 14px; font-weight: 400; color: var(--light-dim);
  padding-left: 20px; position: relative; line-height: 1.45;
}
.prijs ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--teal); font-size: 12px; top: 1px; font-weight: 700;
}

.setup-strip {
  background: #fff3ee; border: 1.5px solid rgba(232,80,10,.25);
  border-radius: 8px; padding: 24px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-top: 20px;
}
.setup-strip p { font-size: 15px; font-weight: 400; color: var(--light-dim); line-height: 1.6; }
.setup-strip p strong { color: var(--light-text); font-weight: 700; }
.setup-prijs {
  font-family: 'Bebas Neue', sans-serif; font-size: 42px;
  color: var(--orange); white-space: nowrap; line-height: 1; text-align: right;
}
.setup-prijs small {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  font-weight: 400; color: var(--light-muted); display: block; margin-top: 2px;
}

/* ── CONTACT — DARK BG ── */
.contact {
  padding: 80px 6vw;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}
.contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  color: var(--ink); margin-bottom: 10px;
}
.contact h2 em { color: var(--orange); font-style: italic; }
.contact-sub {
  font-size: 16px; font-weight: 400; color: var(--dim);
  margin-bottom: 44px; max-width: 480px; line-height: 1.65;
}

/* Big phone block */
.contact-phones {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px;
}
.phone-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 28px;
  text-decoration: none; transition: border-color .2s, background .2s, transform .2s;
  display: flex; flex-direction: column; gap: 4px; min-width: 200px;
}
.phone-block:hover {
  border-color: var(--teal); background: var(--card-h); transform: translateY(-2px);
}
.phone-name { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.phone-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: .04em;
  color: var(--teal2); line-height: 1.1;
  text-decoration: none; transition: color .2s;
}
a.phone-num:hover { color: var(--teal); }
.phone-mail {
  font-size: 13px; color: var(--dim); text-decoration: none;
  margin-top: 2px; transition: color .2s;
}
.phone-mail:hover { color: var(--orange); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.ci-label {
  font-size: 10px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px; display: block;
}
.ci-val {
  font-size: 16px; color: var(--ink); text-decoration: none;
  display: block; transition: color .2s; font-weight: 400;
}
.ci-val:hover { color: var(--orange); }

/* ── FORM ── */
.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.ff { display: flex; flex-direction: column; gap: 5px; }
.ff label {
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 3px;
}
.ff label .req { color: var(--orange); }
.ff input, .ff textarea, .ff select {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 5px; padding: 13px 14px; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400;
  outline: none; width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.ff input:focus, .ff textarea:focus, .ff select:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(0,128,128,.13);
}
.ff input::placeholder, .ff textarea::placeholder { color: #666; }
.ff select { appearance: none; cursor: pointer; }
.ff select option { background: #2b2d2f; color: var(--ink); }
.ff textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.ff .err-msg { font-size: 11px; color: var(--orange); display: none; }
.ff.invalid .err-msg { display: block; }
.ff.invalid input, .ff.invalid textarea { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,80,10,.12); }

.form-success {
  display: none; background: rgba(0,128,128,.1);
  border: 1px solid rgba(0,128,128,.3); border-radius: 8px;
  padding: 32px; text-align: center;
  flex-direction: column; gap: 8px;
}
.form-success.show { display: flex; }
.form-success h4 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--ink); }
.form-success p { font-size: 15px; color: var(--dim); }

/* ── FLOATING WA ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waIn .5s 2s both;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waIn {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: scale(1); }
}


.maatwerk-note {
  margin-top: 20px;
  background: #fff;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.maatwerk-icon { font-size: 28px; flex-shrink: 0; }
.maatwerk-note div { flex: 1; min-width: 200px; }
.maatwerk-note strong {
  font-size: 16px; font-weight: 700; color: var(--light-text);
  display: block; margin-bottom: 4px;
}
.maatwerk-note p {
  font-size: 14px; font-weight: 400; color: var(--light-dim);
  line-height: 1.6; margin: 0;
}
@media (max-width: 600px) {
  .maatwerk-note { flex-direction: column; align-items: flex-start; }
  .maatwerk-note .btn { width: 100%; justify-content: center; }
}

/* ── FOOTER ── */
footer {
  background: var(--bg-deep); border-top: 1px solid var(--border);
  padding: 26px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
footer .logo { font-size: 20px; opacity: .55; transition: opacity .2s; }
footer .logo:hover { opacity: 1; }
footer p { font-size: 13px; font-weight: 400; color: #666; }

/* ── PRINT / PDF ── */
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  nav, .wa-float, .burger, .mob { display: none !important; }
  body { padding-top: 0 !important; background: #fff !important; color: #111 !important; }

  .hero, .wat, .reviews, .contact, .bg-dark {
    background: #fff !important;
    color: #111 !important;
    border-color: #ddd !important;
  }
  .hero::after { display: none; }
  .hero h1, .wat h2, .reviews h2, .contact h2 { color: #111 !important; }
  .hero h1 em, .wat h2 em, .reviews h2 em, .contact h2 em { color: var(--orange) !important; }
  .hero-sub, .wat-lead, .reviews-sub, .contact-sub { color: #333 !important; }
  .hero-sub strong, .wat-lead strong { color: #111 !important; }

  .trust { background: #f5f5f5 !important; border-color: #ddd !important; }
  .trust-label { color: #555 !important; }

  .dienst { background: #f9f9f9 !important; border-color: #ddd !important; }
  .dienst h3 { color: #111 !important; }
  .dienst p, .dienst-wins li { color: #333 !important; }

  .review-card { background: #f9f9f9 !important; border-color: #ddd !important; break-inside: avoid; }
  .review-text { color: #333 !important; }
  .review-text strong { color: #111 !important; }
  .review-name { color: #111 !important; }
  .review-bedrijf { color: #555 !important; }
  .review-meta { border-color: #ddd !important; }

  .contact-info .ci-val { color: #111 !important; }
  .ci-label { color: #555 !important; }
  .phone-block { background: #f5f5f5 !important; border-color: #ddd !important; }
  .phone-num { color: var(--teal) !important; }

  .hero-actions, .hero-contact, form, .form-success { display: none !important; }
  .contact-phones { display: flex !important; }

  section { page-break-inside: avoid; }
  .prijs-grid { page-break-inside: avoid; }
}


/* ── AANBOUW BANNER ── */
.aanbouw-banner {
  background: #1a1a1a;
  padding: 12px 6vw;
  text-align: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 3px solid #ffcc00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.aanbouw-banner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 3.5vw, 32px);
  letter-spacing: .12em;
}
.aanbouw-banner .w1 { color: #ffcc00; }
.aanbouw-banner .w2 { color: #ff3300; }
.aanbouw-banner .icon { font-size: clamp(18px, 3vw, 28px); }

/* ── TABS: AUTOMATISERINGEN / DURFVERBINDT ── */
.wat-tabs {
  display: inline-flex; gap: 6px; padding: 6px;
  border: 1px solid var(--border); border-radius: 99px;
  background: var(--card); margin: 4px 0 34px;
}
.wat-tab {
  border: none; background: transparent; color: var(--muted);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 10px 24px; border-radius: 99px; cursor: pointer;
  transition: color .2s, background .2s;
}
.wat-tab:hover { color: var(--ink); }
.wat-tab.actief { background: var(--orange); color: #fff; }
.wat-paneel.verborgen { display: none; }
.dienst.breed { grid-column: 1 / -1; }
.verbindt-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.verbindt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.verbindt-chips span {
  padding: 6px 14px; border-radius: 99px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--teal2); color: var(--teal2);
}
.verbindt-shots-titel {
  font-family: 'DM Serif Display', serif; font-size: 24px;
  color: var(--ink); margin: 40px 0 16px;
}
.verbindt-shots {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.verbindt-shots figure {
  margin: 0; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}
.verbindt-shots figure:hover {
  border-color: var(--border-h); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.verbindt-shots img { width: 100%; display: block; }
.verbindt-shots figcaption {
  font-size: 13px; color: var(--dim); padding: 12px 14px; line-height: 1.5;
}
@media (max-width: 640px) {
  .wat-tabs { display: flex; flex-wrap: wrap; width: 100%; border-radius: 22px; }
  .wat-tab { flex: 1 1 auto; min-width: 130px; padding: 10px 8px; font-size: 13.5px; }
  .verbindt-extra { grid-template-columns: 1fr; }
}


/* ── CMS: generieke blokken ── */
.blok-tekst-inhoud { max-width: 720px; }
.blok-tekst-inhoud p { font-size: 16px; line-height: 1.75; color: var(--dim); margin: 0 0 14px; }
.blok-tekst-inhoud a { color: var(--teal2); }
.blok-tekst-inhoud ul, .blok-tekst-inhoud ol { padding-left: 22px; color: var(--dim); margin: 0 0 14px; line-height: 1.75; }
.blok-tekst-inhoud strong { color: var(--ink); }
.blok-afbeelding figure { margin: 0; max-width: 900px; }
.blok-afbeelding img { width: 100%; display: block; border-radius: var(--radius); border: 1px solid var(--border); }
.blok-afbeelding figcaption { font-size: 13px; color: var(--muted); padding-top: 10px; }
.tijdwinst-tekst p { font-size: 16px; font-weight: 400; line-height: 1.75; color: var(--light-dim); margin-bottom: 14px; }
.tijdwinst-tekst strong { color: var(--light-text); font-weight: 700; }
.blok-cta .trustpilot-blok { max-width: 860px; }

/* ── AUDIT-VERBETERINGEN ── */
/* Zichtbare toetsenbord-focus in huisstijl */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--teal2); outline-offset: 2px; border-radius: 4px;
}
/* Minder beweging voor wie dat heeft ingesteld */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-a], .hero-tag, .hero h1, .hero-sub, .hero-actions, .hero-contact, .hero-keuze, .wa-float {
    opacity: 1 !important; transform: none !important;
  }
  html { scroll-behavior: auto; }
}
/* CTA onderaan een product-tab */
.paneel-cta { margin-top: 30px; }
/* Klein label op een tab-knop (bijv. "binnenkort") */
.tab-badge {
  display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 99px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(232,80,10,.18); color: var(--orange2); vertical-align: 1px;
}
.wat-tab.actief .tab-badge { background: rgba(255,255,255,.25); color: #fff; }
/* FAQ */
.faq-lijst { max-width: 760px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange); font-size: 20px; font-weight: 700; flex-shrink: 0; }
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] { border-color: var(--border-h); background: var(--card-h); }
.faq-antwoord { padding: 0 18px 16px; font-size: 14.5px; line-height: 1.7; color: var(--dim); }
.faq-antwoord a { color: var(--teal2); }
/* Footer-link (privacyverklaring) */
footer .f-link { color: #8a8a8a; }
footer .f-link:hover { color: var(--orange); }
/* Kopieerbescherming: afbeeldingen niet sleepbaar/selecteerbaar */
img { -webkit-user-drag: none; user-select: none; }
/* Tekstblok-pagina's (o.a. Wie zijn wij): kop in huisstijlkleuren en meer lucht */
.blok-tekst h1, .blok-tekst h2 { color: var(--teal2); margin-bottom: 28px; }
.blok-tekst h1 em, .blok-tekst h2 em { color: var(--orange); }
.blok-tekst-inhoud strong { color: var(--teal2); }
.blok-tekst-inhoud p { margin-bottom: 18px; }
