/* ============================================
   M.A. Bouwbedrijf — Drachten
   Antraciet + Safety Orange
   ============================================ */

:root {
  --color-dark:      #1F2937;
  --color-dark-2:    #111827;
  --color-accent:    #E65100;
  --color-accent-hover: #C2410C;
  --color-light:     #F7F7F5;
  --color-border:    #E5E7EB;
  --color-text:      #1F2937;
  --color-muted:     #6B7280;
  --color-white:     #FFFFFF;
  --color-success:   #16A34A;
  --color-wa:        #25D366;
  --color-star:      #F59E0B;

  --font-heading:    'Montserrat', sans-serif;
  --font-body:       'Inter', sans-serif;

  --max-width:       1200px;
  --section-pad:     96px;
  --radius:          12px;
  --radius-sm:       8px;
  --shadow-sm:       0 1px 2px rgba(0,0,0,0.05);
  --shadow:          0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:       0 12px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p {
  color: var(--color-muted);
  font-size: 1.0625rem;
  margin-top: 16px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(230, 81, 0, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-border);
}
.btn-ghost-dark:hover { background: var(--color-light); }
.btn-full { width: 100%; }
.btn .icon { width: 18px; height: 18px; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.header.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
}
.header .logo-light { display: none; }
.header.transparent .logo-dark { display: none; }
.header.transparent .logo-light { display: block; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--color-accent); }
.header.transparent .nav a { color: var(--color-white); }
.header.transparent .nav a:hover { color: var(--color-accent); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-dark);
  font-size: 0.9375rem;
}
.header-phone .icon { width: 18px; height: 18px; color: var(--color-accent); }
.header.transparent .header-phone { color: var(--color-white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
}
.hamburger .icon { width: 28px; height: 28px; }
.header.transparent .hamburger { color: var(--color-white); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 160px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 20, 28, 0.88) 0%, rgba(15, 20, 28, 0.72) 35%, rgba(15, 20, 28, 0.45) 65%, rgba(15, 20, 28, 0.55) 100%),
    radial-gradient(ellipse at top right, rgba(230, 81, 0, 0.22) 0%, transparent 55%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content h1 { color: var(--color-white); }
.hero-content h1 .accent { color: var(--color-accent); }
.hero-content .sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin: 20px 0 28px;
  max-width: 520px;
}
.hero-eyebrow-micro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-eyebrow-micro::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(230, 81, 0, 0.6);
}

.hero-trust-badge--lead {
  display: inline-flex;
  margin-bottom: 22px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-trust-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 16px;
  background: rgba(15, 19, 28, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.45);
}
.hero-trust-badge:hover {
  border-color: rgba(245, 158, 11, 0.55);
  background: rgba(15, 19, 28, 0.7);
  transform: translateY(-1px);
}
.hero-trust-badge-stars {
  color: var(--color-star);
  font-size: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}
.hero-trust-badge-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.hero-trust-badge-text strong {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-trust-badge-text span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.01em;
}
.hero-trust-badge-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--color-accent);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}
.hero-trust-badge-corner-tl {
  top: -1px;
  left: -1px;
  border-top-width: 1.5px;
  border-left-width: 1.5px;
}
.hero-trust-badge-corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-trust-pill .icon {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
}

@media (max-width: 640px) {
  .hero-trust { gap: 8px; margin-bottom: 24px; }
  .hero-trust-pill { display: none; }
  .hero-trust-badge { padding: 8px 14px; }
  .hero-trust-badge-text strong { font-size: 1rem; }
  .hero-trust-badge-text span { font-size: 0.75rem; }
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.form-card {
  background: var(--color-white);
  color: var(--color-text);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
.form-card .form-sub {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-fine {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 14px;
}

/* ============ TRUSTBAR (subtiele strip) ============ */
.trustbar {
  background: var(--color-white);
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trustbar-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
}

.trustbar-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 16px;
}

.trustbar-item + .trustbar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--color-border);
}

.trustbar-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-dark);
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.trustbar-star {
  color: var(--color-star);
  margin-right: 4px;
}

.trustbar-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 4px;
  line-height: 1.3;
}

/* ============ STATS HUD ============ */
.stats-hud {
  background: var(--color-dark-2);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-hud::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.stats-hud-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.stats-hud-orb-1 {
  width: 420px; height: 420px;
  background: rgba(230, 81, 0, 0.13);
  top: -120px; left: -80px;
}
.stats-hud-orb-2 {
  width: 300px; height: 300px;
  background: rgba(230, 81, 0, 0.09);
  bottom: -60px; right: 8%;
}
.stats-hud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stat-hud {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 28px 22px 24px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: background 0.3s;
}
.stat-hud:hover {
  background: rgba(255,255,255,0.07);
}
.stat-hud-figure {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
  line-height: 1;
}
.stat-hud-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-hud-suffix {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-left: 1px;
}
.stat-hud-prefix {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-star);
  line-height: 1;
  margin-right: 3px;
}
.stat-hud-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.stat-hud-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

/* ============ DIENSTEN HUD ============ */
.diensten-dark { background: var(--color-dark-2); }
.diensten-dark .eyebrow { color: var(--color-accent); }
.diensten-dark h2 { color: var(--color-white); }
.diensten-dark .section-head p { color: rgba(255,255,255,0.6); }

.hud-diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hud-dienst-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.hud-dienst-card:hover {
  border-color: rgba(230,81,0,0.55);
  box-shadow: 0 0 0 1px rgba(230,81,0,0.2), 0 8px 32px rgba(230,81,0,0.18);
  transform: translateY(-4px);
}

.hud-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
  transition: width 0.3s ease, height 0.3s ease;
}
.hud-corner::before,
.hud-corner::after {
  content: '';
  position: absolute;
  background: var(--color-accent);
  transition: box-shadow 0.3s ease;
}
.hud-corner::before { width: 100%; height: 1.5px; top: 0; left: 0; }
.hud-corner::after  { width: 1.5px; height: 100%; top: 0; left: 0; }

.hud-corner--tl { top: 0; left: 0; }
.hud-corner--tr { top: 0; right: 0; }
.hud-corner--tr::after  { left: auto; right: 0; }
.hud-corner--bl { bottom: 0; left: 0; }
.hud-corner--bl::before { top: auto; bottom: 0; }
.hud-corner--br { bottom: 0; right: 0; }
.hud-corner--br::before { top: auto; bottom: 0; }
.hud-corner--br::after  { left: auto; right: 0; }

.hud-dienst-card:hover .hud-corner { width: 28px; height: 28px; }
.hud-dienst-card:hover .hud-corner::before,
.hud-dienst-card:hover .hud-corner::after { box-shadow: 0 0 6px rgba(230,81,0,0.6); }

.hud-dienst-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-dark);
}
.hud-dienst-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.85);
}
.hud-dienst-card:hover .hud-dienst-img img {
  transform: scale(1.05);
  filter: brightness(1);
}
.hud-dienst-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230,81,0,0.07) 0%, rgba(17,24,39,0.95) 100%);
  border-bottom: 1px solid rgba(230,81,0,0.12);
}
.hud-placeholder-icon {
  width: 52px !important;
  height: 52px !important;
  color: rgba(230,81,0,0.28);
}

.hud-dienst-content {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hud-dienst-icon {
  width: 38px; height: 38px;
  background: rgba(230,81,0,0.1);
  border: 1px solid rgba(230,81,0,0.18);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  transition: background 0.3s ease;
}
.hud-dienst-card:hover .hud-dienst-icon { background: rgba(230,81,0,0.2); }
.hud-dienst-icon .icon { width: 20px; height: 20px; }
.hud-dienst-content h3 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.hud-dienst-content p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.hud-dienst-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 9px 14px;
  border: 1px solid rgba(230,81,0,0.3);
  align-self: flex-start;
  transition: all 0.25s ease;
}
.hud-dienst-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  gap: 10px;
}
.hud-dienst-cta .icon { width: 13px; height: 13px; }

/* ============ DIENSTEN CLEAN ============ */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dienst-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.dienst-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dienst-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-dark);
}
.dienst-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.95);
}
.dienst-card:hover .dienst-img img {
  transform: scale(1.04);
  filter: brightness(1);
}

.dienst-content {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dienst-content h3 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.dienst-content p {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.dienst-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  align-self: flex-start;
  transition: gap 0.2s ease;
}
.dienst-cta:hover { gap: 10px; }
.dienst-cta .icon { width: 13px; height: 13px; }

@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .diensten-grid { grid-template-columns: 1fr; }
}

/* ============ WHY / TRUST ============ */
.why { background: var(--color-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-dark);
}
.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-image .placeholder {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  text-align: center;
  padding: 24px;
}
.why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.why-badge .icon { width: 22px; height: 22px; color: var(--color-accent); }
.usp-list {
  list-style: none;
  margin: 24px 0;
}
.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}
.usp-list li:last-child { border-bottom: none; }
.usp-list .icon-wrap {
  width: 28px;
  height: 28px;
  background: rgba(230,81,0,0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.usp-list .icon { width: 16px; height: 16px; }

/* ============ PROCESS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  text-align: left;
  position: relative;
  padding-top: 24px;
}
.step::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 56px;
  right: -12px;
  height: 2px;
  background: var(--color-border);
  z-index: -1;
}
.step:last-child::before { display: none; }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.step p { color: var(--color-muted); font-size: 0.9375rem; }

/* ============ PROJECTS ============ */
.projects { background: var(--color-light); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-dark);
  cursor: pointer;
}
.project img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project:hover img { transform: scale(1.05); }
.project .placeholder {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  text-align: center;
  padding: 16px;
}
.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(31,41,55,0.92);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-tag .icon { width: 14px; height: 14px; color: var(--color-accent); }
.project-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 45%, transparent 100%);
  color: var(--color-white);
}
.project-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-accent);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.project-overlay .muted {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* ============ REVIEWS ============ */
.rating-summary {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  background: var(--color-light);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.rating-big .num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}
.rating-big .stars {
  color: var(--color-star);
  font-size: 1.25rem;
  margin: 8px 0;
  letter-spacing: 2px;
}
.rating-big .meta {
  color: var(--color-muted);
  font-size: 0.9375rem;
}
.rating-bars { display: grid; gap: 14px; }
.rating-bar {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
}
.bar-track {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 4px;
}
.rating-bar .score { font-weight: 700; text-align: right; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 28px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
}
.review-card .stars {
  color: var(--color-star);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.review-card blockquote {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 18px;
}
.review-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--color-muted);
  font-weight: 500;
}
.review-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.platform-badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.platform-badge .stars { color: var(--color-star); }

/* ============ WERKGEBIED ============ */
.werkgebied {
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.werkgebied .eyebrow { color: var(--color-accent); }
.werkgebied h2 { color: var(--color-white); }
.werkgebied .section-head p { color: rgba(255,255,255,0.7); }

/* Ambient background orbs */
.werkgebied-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.werkgebied-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.werkgebied-orb--1 {
  top: -10%; left: -5%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(230,81,0,0.45), transparent 70%);
}
.werkgebied-orb--2 {
  bottom: -15%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(230,81,0,0.3), transparent 70%);
}
.werkgebied .container { position: relative; z-index: 1; }

/* Layout grid */
.werkgebied-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* Map panel */
.werkgebied-map {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px;
  min-height: 520px;
}
.map-svg {
  width: 100%;
  height: 100%;
  min-height: 488px;
  display: block;
}

/* Hint pill */
.map-hint {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.map-hint-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(230,81,0,0.8);
  animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Map land */
.map-land {
  fill: rgba(255,255,255,0.05);
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1.5;
  transition: fill 0.3s ease;
}
.werkgebied-map:hover .map-land { fill: rgba(255,255,255,0.07); }

/* Region labels */
.map-region {
  fill: rgba(255,255,255,0.18);
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 28px;
  letter-spacing: 0.18em;
  pointer-events: none;
  user-select: none;
}
.map-region--sub {
  fill: rgba(255,255,255,0.12);
  font-size: 22px;
}

/* Compass */
.map-compass-text {
  fill: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Concentric rings */
.map-rings {
  animation: ringsBreathe 8s ease-in-out infinite;
}
@keyframes ringsBreathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Connection line */
.map-connection {
  stroke: var(--color-accent);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.map-connection.is-active { opacity: 0.7; }

/* Pins */
.map-pin {
  cursor: pointer;
  outline: none;
}
.map-pin:focus-visible .pin-dot {
  stroke: #fff;
  stroke-width: 3;
}
.pin-hit {
  fill: transparent;
  pointer-events: all;
}
.pin-dot {
  fill: var(--color-accent);
  stroke: rgba(255,255,255,0.9);
  stroke-width: 2;
  transition: r 0.25s cubic-bezier(.34,1.56,.64,1), fill 0.2s ease;
}
.pin-glow {
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.pin-ring {
  stroke: var(--color-accent);
  stroke-width: 2;
  opacity: 0.6;
}

/* HQ pin */
.map-pin--hq .pin-dot { fill: var(--color-accent); }
.map-pin--hq .pin-ring {
  animation: hqPulse 2.4s ease-in-out infinite;
  transform-origin: 426px 280px;
}
@keyframes hqPulse {
  0%   { r: 18; opacity: 0.7; }
  70%  { r: 30; opacity: 0; }
  100% { r: 30; opacity: 0; }
}
.map-pin--hq .pin-label-bg { fill: var(--color-accent); }
.map-pin--hq .pin-label-text {
  fill: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Pin hover / active */
.map-pin:hover .pin-dot,
.map-pin.is-active .pin-dot {
  r: 10;
  fill: #fff;
}
.map-pin:hover .pin-glow,
.map-pin.is-active .pin-glow {
  opacity: 1;
}
/* HQ keeps its accent fill */
.map-pin--hq:hover .pin-dot,
.map-pin--hq.is-active .pin-dot {
  fill: var(--color-accent);
  r: 11;
}

/* Dim non-active pins when one is active */
.werkgebied-map.has-active .map-pin:not(.is-active):not(.map-pin--hq) .pin-dot {
  opacity: 0.55;
}
.werkgebied-map.has-active .map-pin:not(.is-active):not(.map-pin--hq) .pin-glow {
  opacity: 0.15;
}

/* Tooltip */
.map-tooltip { transition: opacity 0.18s ease; pointer-events: none; }
.map-tooltip-bg { fill: var(--color-accent); }
.map-tooltip-text {
  fill: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.map-tooltip-arrow { fill: var(--color-accent); }

/* Cities panel */
.werkgebied-cities {
  display: flex;
  flex-direction: column;
}
.cities-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(230,81,0,0.18), rgba(230,81,0,0.04));
  border: 1px solid rgba(230,81,0,0.3);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.cities-stat-num {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.cities-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  font-weight: 500;
}

.cities-list {
  list-style: none;
  padding: 0; margin: 0 0 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.cities-list .city-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}
.cities-list .city-link:hover,
.cities-list .city-link.is-active {
  background: rgba(230,81,0,0.18);
  border-color: var(--color-accent);
  transform: translateX(2px);
}
.cities-list .city-link .icon {
  width: 14px; height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.city-tag {
  margin-left: auto;
  padding: 2px 7px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

.werkgebied-note {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin: 0;
  padding-top: 4px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .werkgebied-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .werkgebied-map { min-height: 380px; padding: 12px; }
  .map-svg { min-height: 360px; }
  .map-region { font-size: 32px; }
  .map-region--sub { font-size: 26px; }
}

@media (max-width: 560px) {
  .werkgebied-map { min-height: 320px; padding: 10px; }
  .map-svg { min-height: 300px; }
  .map-hint { font-size: 0.7rem; padding: 5px 10px 5px 9px; top: 14px; left: 14px; }
  .cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .cities-list li { display: contents; }
  .cities-list .city-link {
    padding: 7px 11px;
    font-size: 0.8rem;
    gap: 6px;
    border-radius: 999px;
    transform: none;
  }
  .cities-list .city-link:hover,
  .cities-list .city-link.is-active { transform: none; }
  .cities-list .city-link .icon { width: 12px; height: 12px; }
  .city-tag {
    margin-left: 4px;
    padding: 1px 5px;
    font-size: 0.55rem;
  }
  .cities-stat { padding: 14px 16px; gap: 12px; }
  .cities-stat-num { font-size: 2.75rem; }
  .map-region { font-size: 36px; }
  .map-region--sub { font-size: 30px; }
  .pin-dot { stroke-width: 2.5; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .map-rings,
  .map-pin--hq .pin-ring,
  .map-hint-dot { animation: none; }
}

/* ============ MID-PAGE FORM ============ */
.midform {
  background: var(--color-light);
}
.midform-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.usp-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.usp-pill .icon { width: 14px; height: 14px; color: var(--color-accent); }

/* ============ PRIJZEN ============ */
.prijzen-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.prijzen-table th,
.prijzen-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.prijzen-table th {
  background: var(--color-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.prijzen-table td:last-child {
  font-weight: 700;
  color: var(--color-accent);
  text-align: right;
}
.prijzen-table tr:last-child td { border-bottom: none; }
.btw-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(230, 81, 0, 0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.btw-callout .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.btw-callout .icon { width: 22px; height: 22px; }
.btw-callout h4 { margin-bottom: 4px; font-size: 1rem; }
.btw-callout p { color: var(--color-muted); font-size: 0.9375rem; }

/* ============ ZAKELIJK ============ */
.zakelijk {
  background: var(--color-dark);
  color: var(--color-white);
}
.zakelijk .eyebrow { color: var(--color-accent); }
.zakelijk h2 { color: var(--color-white); }
.zakelijk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.zakelijk-list {
  list-style: none;
  margin: 24px 0 32px;
}
.zakelijk-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
.zakelijk-list .icon { width: 18px; height: 18px; color: var(--color-accent); }
.zakelijk-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-dark-2);
}
.zakelijk-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.zakelijk-image .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
}

/* ============ FAQ ============ */
/* ============ GARANTIE ============ */
.garantie-section {
  background: var(--color-white);
}

.garantie-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .garantie-split { grid-template-columns: 1fr; }
}

/* Left dark panel */
.garantie-split-left {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 56px 48px;
  position: relative;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(230,81,0,0.12), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.04), transparent 40%);
}

.garantie-split-left .eyebrow {
  color: var(--color-accent);
}

.garantie-split-left h2 {
  color: var(--color-white);
  margin-top: 14px;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
}

.garantie-split-left > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 16px 0 28px;
}

.garantie-seal {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 28px;
}

.garantie-seal-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(230,81,0,0.18);
  color: var(--color-accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.garantie-seal-icon .icon { width: 18px; height: 18px; }

.garantie-seal strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.garantie-seal span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}

.garantie-cta {
  display: inline-flex;
}

/* Right light panel */
.garantie-split-right {
  background: var(--color-light);
  padding: 56px 48px;
  display: flex;
  align-items: center;
}

.garantie-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 520px) {
  .garantie-cards { grid-template-columns: 1fr; }
}

.garantie-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.garantie-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.garantie-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(230,81,0,0.1);
  color: var(--color-accent);
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.garantie-card-icon .icon { width: 18px; height: 18px; }

.garantie-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.garantie-card p {
  font-size: 0.84375rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .garantie-split-left,
  .garantie-split-right { padding: 40px 32px; }
}

/* ============ BOTTOM CTA ============ */
.bottom-cta { background: var(--color-light); }
.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.contact-list {
  list-style: none;
  margin-top: 24px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-weight: 500;
}
.contact-list .icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-list .icon-wrap .icon { width: 18px; height: 18px; color: var(--color-accent); }

/* ============ FOOTER ============ */
.footer {
  background: var(--color-dark-2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { transition: color 0.2s ease; }
.footer ul a:hover { color: var(--color-accent); }
.footer-brand .logo-block { margin-bottom: 16px; }
.footer-brand .logo-img { height: 60px; }
.footer-brand p { margin-bottom: 16px; max-width: 280px; }
.footer-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ STICKY MOBILE BAR ============ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 8px;
  gap: 6px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-white);
}
.mobile-bar .mb-call { background: var(--color-dark); }
.mobile-bar .mb-wa { background: var(--color-wa); }
.mobile-bar .mb-offerte { background: var(--color-accent); }
.mobile-bar .icon { width: 16px; height: 16px; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  opacity: 0;
  transform: translateY(-12px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast .icon {
  width: 22px; height: 22px;
  color: var(--color-success);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--color-dark);
  padding: 100px 24px 32px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { margin-top: 24px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hud-diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-hud-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat { border-right: none; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
  }
  .trustbar { padding: 20px 0; }
  .trustbar-row { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .trustbar-item { padding: 4px 8px; }
  .trustbar-item:nth-child(3)::before { display: none; }
  .why-grid, .zakelijk-grid, .midform-grid, .bottom-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav, .header-phone { display: none; }
  .hamburger { display: block; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  body { padding-bottom: 72px; }
  .mobile-bar { display: flex; }
  .header { padding: 12px 0; }
  .hero { padding: 120px 0 64px; }
  .hud-diensten-grid, .projects-grid { grid-template-columns: 1fr; }
  .stats-hud-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 24px; }
  .hero-ctas .btn { flex: 1; }
  .btw-callout { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ DIENSTEN SHOWCASE (scroll-pinned) ============ */
.diensten-showcase {
  position: relative;
  background: #000;
  padding: 0;
  color: var(--color-white);
}

.ds-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 16px 36px;
  position: relative;
}
.ds-divider-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(230, 81, 0, 0.7);
}
.ds-divider-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.ds-pin {
  position: relative;
  /* height is set by JS = services.length * 100vh */
}
.ds-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* ----- Service stages ----- */
.ds-service {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.ds-service.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ds-image-wrap {
  position: absolute;
  inset: 0;
  bottom: 50%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ds-image-wrap { bottom: 0; }
}

.ds-image-zoom {
  position: absolute;
  inset: 0;
  transform: scale(1) translate(0, 0);
  transition: transform 1.2s cubic-bezier(0.16, 0.84, 0.44, 1);
  will-change: transform;
}
.ds-pin.is-entered .ds-service.is-active .ds-image-zoom {
  transform: scale(1.14) translate(-30px, -12px);
  transition: transform 8s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.ds-image-zoom picture,
.ds-image-zoom img {
  width: 100%;
  height: 100%;
  display: block;
}
.ds-image-zoom img {
  object-fit: cover;
  object-position: center 50%;
}

/* Neon corner accents — mobile only */
.ds-corner {
  position: absolute;
  z-index: 5;
  background: var(--color-accent);
  pointer-events: none;
}
.ds-corner-tl-h,
.ds-corner-tl-v {
  box-shadow: 0 0 10px rgba(230, 81, 0, 0.85);
}
.ds-corner-tl-h { top: 12px; left: 12px; width: 22px; height: 1px; }
.ds-corner-tl-v { top: 12px; left: 12px; width: 1px; height: 22px; }
.ds-corner-br-h { bottom: 12px; right: 12px; width: 22px; height: 1px; }
.ds-corner-br-v { bottom: 12px; right: 12px; width: 1px; height: 22px; }
@media (min-width: 1024px) {
  .ds-corner { display: none; }
}

/* Mobile separator line */
.ds-mobile-sep {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 5;
}
@media (min-width: 1024px) {
  .ds-mobile-sep { display: none; }
}

/* Mobile category tag */
.ds-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--color-white);
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.ds-tag-dot {
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-accent);
}
@media (min-width: 1024px) {
  .ds-tag { display: none; }
}

/* Desktop legibility gradients */
.ds-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .ds-grad {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 35%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.05) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.55) 100%);
  }
}

/* Top fade — bleeds prior section into stage */
.ds-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  z-index: 7;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .ds-top-fade { height: 110px; }
}

/* ----- Content panel ----- */
.ds-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  z-index: 4;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .ds-content {
    top: 0;
    display: flex;
    align-items: center;
  }
}

.ds-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 22px 56px;
  width: 100%;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .ds-content-inner {
    padding: 0 48px;
  }
}

.ds-service .ds-content-inner > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0s, transform 0s;
}
.ds-service.is-active .ds-content-inner > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.ds-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .ds-meta { margin-bottom: 20px; gap: 16px; }
}
.ds-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-accent);
  text-shadow: 0 0 18px rgba(230, 81, 0, 0.7);
}
@media (min-width: 1024px) {
  .ds-num { font-size: 2.5rem; }
}
.ds-meta-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
}
@media (min-width: 1024px) {
  .ds-meta-rule { width: 44px; }
}
.ds-cat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .ds-cat { font-size: 12px; }
}

.ds-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 14px;
  max-width: 520px;
}
@media (min-width: 640px) {
  .ds-name { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
  .ds-name { font-size: 4rem; margin-bottom: 22px; }
}

.ds-intro {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 560px;
}
@media (min-width: 1024px) {
  .ds-intro { font-size: 1.0625rem; margin-bottom: 22px; }
}

.ds-bullets {
  list-style: none;
  display: none;
  margin: 0 0 22px;
  padding: 0;
}
@media (min-width: 640px) {
  .ds-bullets { display: block; }
}
.ds-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 4px 0;
}
.ds-bullets li::before {
  content: '';
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex-shrink: 0;
  background-color: var(--color-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5L6 11.5L13 4.5' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5L6 11.5L13 4.5' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

.ds-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.ds-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #E8B976;
}
@media (min-width: 1024px) {
  .ds-price { font-size: 1.75rem; }
}
.ds-duration {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ds-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .ds-cta { padding: 12px 22px; font-size: 11px; }
}
.ds-cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 0 24px -4px var(--color-accent);
  transform: translateY(-1px);
}
.ds-cta-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.ds-cta:hover .ds-cta-arrow {
  transform: translateX(4px);
}

/* ----- Right rail (desktop) ----- */
.ds-rail {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  display: none;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .ds-rail { display: flex; }
}
@media (min-width: 1024px) {
  .ds-rail { right: 40px; }
}
.ds-rail-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
}
.ds-rail-bar {
  display: block;
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
}
.ds-rail-btn:hover .ds-rail-bar {
  background: rgba(255, 255, 255, 0.6);
  height: 32px;
}
.ds-rail-btn.is-active .ds-rail-bar {
  height: 48px;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}
.ds-rail-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}
.ds-rail-btn:hover .ds-rail-num { color: rgba(255, 255, 255, 0.7); }
.ds-rail-btn.is-active .ds-rail-num { color: var(--color-accent); }

/* ----- Mobile dashes ----- */
.ds-dashes {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 8px;
}
@media (min-width: 640px) {
  .ds-dashes { display: none; }
}
.ds-dash {
  display: block;
  height: 2px;
  width: 20px;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.5s ease;
}
.ds-dash.is-active {
  width: 40px;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
}

/* ============================================================
   REVIEWS DOUBLE-SCROLL
   ============================================================ */
.reviews-scroll-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.reviews-track {
  overflow: hidden;
}

.reviews-ticker {
  display: flex;
  width: max-content;
  gap: 20px;
}

/* Forward row scrolls left */
.reviews-track--fwd .reviews-ticker {
  animation: rvScrollLeft 60s linear infinite;
}

/* Reverse row scrolls right */
.reviews-track--rev .reviews-ticker {
  animation: rvScrollRight 60s linear infinite;
}

@keyframes rvScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes rvScrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Pause on hover */
.reviews-scroll-wrap:hover .reviews-ticker {
  animation-play-state: paused;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reviews-ticker {
    animation: none !important;
    flex-wrap: wrap;
  }
}

/* Individual review card */
.rv-card {
  flex-shrink: 0;
  width: 300px;
  padding: 24px 26px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .rv-card { width: 320px; }
}

@media (min-width: 1024px) {
  .rv-card { width: 340px; }
}

.rv-stars {
  color: var(--color-star);
  font-size: 0.9375rem;
  letter-spacing: 2px;
  line-height: 1;
}

.rv-card blockquote {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rv-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--color-muted);
  font-weight: 600;
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
}

/* ============================================================
   CERTIFICERINGEN
   ============================================================ */
.certs-section {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .certs-grid { grid-template-columns: 1fr; }
}

.cert-card {
  background: var(--color-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  border-top: 3px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cert-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cert-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(230,81,0,0.1);
  color: var(--color-accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cert-icon-wrap .icon {
  width: 22px;
  height: 22px;
}

.cert-norm-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.cert-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.3;
}

.cert-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.cert-points {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.cert-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.cert-points .icon {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
}
