/* ============================================
   Webknallers.nl — Design System
   ============================================ */

:root {
  --primary: #FF873D;
  --primary-dark: #E86F20;
  --primary-light: #FFF4ED;
  --primary-glow: rgba(255, 135, 61, 0.25);
  --success: #1F9D6A;
  --success-dark: #178058;
  --success-light: #E8F7F0;
  --dark: #0F1117;
  --dark-soft: #1A1D27;
  --dark-muted: #2A2E3D;
  --text: #1A1D27;
  --text-muted: #5C6370;
  --text-light: #8B939F;
  --white: #FFFFFF;
  --bg: #F3F5F8;
  --bg-alt: #ECEEF2;
  --bg-warm: #F7F4F1;
  --border: #DDE2E8;
  --section-pad: 72px;
  --shadow-sm: 0 2px 8px rgba(15, 17, 23, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 17, 23, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 17, 23, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'JetBrains Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-height: 38px;
  --header-height: 84px;
  --site-head-height: calc(var(--topbar-height) + var(--header-height));
  --check-green: #16a34a;
  --check-green-bright: #22c55e;
  --check-green-bg: #f0fdf4;
  --check-green-border: rgba(22, 163, 74, 0.22);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(165deg, #F5F6F9 0%, #FFFFFF 22%, #FFFFFF 78%, #F0F2F6 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 900px;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.section-label::before {
  content: '// ';
  color: var(--text-light);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 16px;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.8125rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   Topbar
   ============================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: #1a1d27;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.topbar__message {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin: 0;
}

.topbar__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.topbar__dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); opacity: 0.85; }
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: color var(--transition);
}

.topbar__link:hover {
  color: var(--white);
}

.topbar__link--accent {
  color: var(--primary);
}

.topbar__link--accent:hover {
  color: #ffb07a;
}

/* ============================================
   Header — licht & premium
   ============================================ */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.header__glow {
  display: none;
}

.header__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 5%,
    rgba(255, 135, 61, 0.35) 35%,
    var(--primary) 50%,
    rgba(255, 135, 61, 0.35) 65%,
    transparent 95%
  );
  pointer-events: none;
  opacity: 0.65;
}

.header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.header--scrolled,
.header--transparent {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(15, 17, 23, 0.06);
}

.header.header--elevated {
  box-shadow: 0 8px 32px rgba(15, 17, 23, 0.1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  transition: all 0.2s ease;
}

.header__phone svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.header__phone:hover {
  color: var(--text);
  border-color: rgba(255, 135, 61, 0.4);
  background: var(--primary-light);
}

.header__phone span {
  display: none;
}

@media (min-width: 1100px) {
  .header__phone span {
    display: inline;
  }
}

.logo__text {
  display: inline;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--text);
  flex-shrink: 0;
  justify-self: start;
}

.logo:hover {
  color: var(--text);
}

.logo--header .logo__mark {
  width: 38px;
  height: 38px;
  font-size: 0.875rem;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1px solid var(--primary-dark);
  box-shadow: 0 4px 14px rgba(255, 135, 61, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo--header:hover .logo__mark {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 135, 61, 0.35);
}

.logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1;
  border: 1px solid var(--primary-dark);
}

.logo__icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.logo__accent {
  color: var(--primary);
}

.header__nav {
  justify-self: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__island {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.nav__island .nav__link {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav__island .nav__link::after {
  display: none;
}

.nav__island .nav__link:hover {
  color: var(--text);
  background: var(--white);
}

.nav__island .nav__link--active,
.nav__island .nav__dropdown-btn.nav__link--active {
  color: var(--primary-dark);
  background: var(--primary-light);
  box-shadow: none;
}

.nav__island .nav__chevron {
  width: 14px;
  height: 14px;
  color: currentColor;
  opacity: 0.7;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text);
}

.header .nav__cta {
  margin-left: 0;
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
  gap: 8px;
}

.header .nav__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.header .nav__cta::before {
  display: none;
}

.header .nav__cta:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.header .nav__cta:hover svg {
  transform: translateX(2px);
}

.nav__cta {
  margin-left: 4px;
  flex-shrink: 0;
}

.nav-toggle {
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mega menu */
.nav__dropdown {
  position: static;
}

.nav__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.nav__dropdown-btn .nav__chevron {
  transition: transform var(--transition);
}

.nav__dropdown.is-open .nav__chevron,
.nav__dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px 0 28px;
  background: linear-gradient(180deg, #f6f7f9 0%, #fafbfc 45%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  box-shadow:
    0 4px 0 rgba(255, 135, 61, 0.12),
    0 24px 56px rgba(15, 17, 23, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  pointer-events: none;
  overflow: hidden;
}

.mega-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 135, 61, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 135, 61, 0.09) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 120% at 30% 0%, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 120% at 30% 0%, black 25%, transparent 75%);
  pointer-events: none;
}

.mega-menu::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 10%,
    rgba(255, 135, 61, 0.5) 40%,
    var(--primary) 50%,
    rgba(255, 135, 61, 0.5) 60%,
    transparent 90%
  );
  pointer-events: none;
}

.nav__dropdown.is-open .mega-menu,
.nav__dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mega-menu__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 226, 232, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(15, 17, 23, 0.04);
  transition: all var(--transition);
}

.mega-menu__item:hover {
  background: var(--white);
  border-color: rgba(255, 135, 61, 0.35);
  box-shadow: 0 8px 24px rgba(255, 135, 61, 0.12);
  transform: translateY(-2px);
}

.mega-menu__item:hover .mega-menu__arrow {
  opacity: 1;
  transform: translateX(0);
}

.mega-menu__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--primary-light) 0%, var(--white) 100%);
  border: 1px solid rgba(255, 135, 61, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}

.mega-menu__item:hover .mega-menu__icon {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 135, 61, 0.35);
}

.mega-menu__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.mega-menu__text strong {
  font-size: 0.9375rem;
  color: var(--text);
}

.mega-menu__text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.mega-menu__arrow {
  width: 18px;
  height: 18px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
  flex-shrink: 0;
  margin-top: 4px;
}

.mega-menu__aside {
  padding: 24px;
  background: linear-gradient(155deg, #12141c 0%, var(--dark-soft) 55%, #1e2230 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 32px rgba(15, 17, 23, 0.2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mega-menu__aside::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 135, 61, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.mega-menu__aside-label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.mega-menu__aside h3,
.mega-menu__aside-title {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mega-menu__aside p {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.5;
}

.mega-menu__aside .btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 8px;
}

.mega-menu__aside .btn:last-child {
  margin-bottom: 0;
}

.mega-menu__aside .btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.mega-menu__aside .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Mobile nav diensten submenu */
.mobile-nav__group {
  border-bottom: 1px solid var(--border);
}

.mobile-nav__group summary {
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.mobile-nav__group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__sub {
  padding: 0 8px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav__sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
}

.mobile-nav__sublink:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-nav__overview {
  margin-top: 8px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: rgba(15, 17, 23, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav--open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  height: 100dvh;
  background: var(--white);
  padding:
    max(20px, env(safe-area-inset-top))
    max(20px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mobile-nav--open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-top: 4px;
}

.mobile-nav__links a {
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-nav__links a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-nav__cta {
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.mobile-nav__cta .btn {
  width: 100%;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--site-head-height) + 56px) 0 72px;
  overflow: hidden;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}

/* Gedeeld raster — alleen hero-secties */
.hero__grid-bg,
.page-hero__grid,
.service-page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 135, 61, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 135, 61, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 40%, black 45%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 40%, black 45%, transparent 88%);
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}

.service-page-hero::before {
  content: '';
}

.hero__grid-bg::after,
.page-hero__grid::after,
.service-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#c8cdd6 1px, transparent 1px),
    linear-gradient(90deg, #c8cdd6 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 40%, black 50%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 40%, black 50%, transparent 88%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__text {
  max-width: 520px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  margin-bottom: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease;
}

.hero__eyebrow:hover {
  border-color: var(--text);
  color: var(--text);
}

.hero__eyebrow-mark {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 800;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
}

.hero__badge-dot {
  display: none;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 420px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero__actions {
  margin-bottom: 20px;
}

.hero__footnote {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero__stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero__stack-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--text-light);
  margin-right: 4px;
}

.hero__stack-badge {
  padding: 5px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text);
}

/* CMS tags (service pages) */
.hero__tech {
  margin-bottom: 24px;
}

.hero__tech-label {
  display: none;
}

.hero__tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 0;
  transition: border-color 0.15s ease;
}

.tech-tag:hover {
  border-color: var(--text);
  box-shadow: none;
}

.tech-tag--accent {
  background: var(--white);
  border-color: var(--primary);
  color: var(--text);
}

.tech-tag svg {
  flex-shrink: 0;
  opacity: 0.7;
  width: 14px !important;
  height: 14px !important;
}

.hero__tech-note {
  display: none;
}

.hero__stats {
  display: none;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero__image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero__image-wrap::after {
  display: none;
}

/* Floating code elements */
.code-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.code-float--1 {
  top: 10%;
  left: -40px;
  animation-delay: 0s;
}

.code-float--2 {
  bottom: 15%;
  right: -30px;
  animation-delay: 2s;
}

.code-float--3 {
  top: 50%;
  right: -50px;
  animation-delay: 4s;
}

.code-float .tag { color: var(--primary); }
.code-float .attr { color: #7C3AED; }
.code-float .val { color: #059669; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.browser-mockup {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 4;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.browser-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.browser-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.browser-mockup__dot:nth-child(1) { background: #FF5F57; }
.browser-mockup__dot:nth-child(2) { background: #FFBD2E; }
.browser-mockup__dot:nth-child(3) { background: #28CA41; }

.browser-mockup__content {
  padding: 16px;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.browser-mockup__line {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  margin-bottom: 8px;
}

.browser-mockup__line--accent {
  width: 60%;
  background: var(--primary-light);
}

/* ============================================
   USP Bar
   ============================================ */
.usp-bar {
  background: var(--dark);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.usp-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 135, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 135, 61, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}

.usp-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.usp-item {
  text-align: center;
  padding: 16px 8px;
}

.usp-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(255, 135, 61, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.usp-item h4,
.usp-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.usp-item p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--alt {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--warm {
  background: var(--bg-warm);
  border-top: 1px solid rgba(255, 135, 61, 0.12);
  border-bottom: 1px solid var(--border);
}

.section--grid > .container {
  position: relative;
  z-index: 1;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

/* Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card {
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 135, 61, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 100%);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,17,23,0.4) 0%, transparent 60%);
}

.service-card__icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--white) 0%, #FAFBFD 100%);
}

.service-card__body h3 {
  margin-bottom: 10px;
}

.service-card__body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
}

.service-card__link:hover {
  gap: 10px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--border), var(--primary), transparent);
  z-index: 0;
  opacity: 0.5;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step {
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.process-step__number {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 135, 61, 0.12);
}

.process-step h4,
.process-step__title {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 17, 23, 0.94) 0%,
    rgba(15, 17, 23, 0.55) 38%,
    rgba(15, 17, 23, 0.12) 68%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  opacity: 1;
  pointer-events: none;
}

.portfolio-item__overlay h4,
.portfolio-item__title {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.portfolio-item__overlay span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portfolio-item:hover .portfolio-item__overlay span {
  background: var(--primary-dark);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 135, 61, 0.25);
  border-left-color: var(--primary-dark);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-card__author span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-item__answer p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner__code {
  position: absolute;
  font-family: monospace;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}

.cta-banner__code--1 { top: 20px; left: 30px; }
.cta-banner__code--2 { bottom: 20px; right: 30px; }

/* ============================================
   Page Hero (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--site-head-height) + 40px) 0 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Dienstenpagina — secties & twee-koloms layout */
.service-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.service-section > .container {
  position: relative;
  z-index: 1;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-section--reverse .service-detail__visual {
  order: -1;
}

/* Snelle navigatie onder hero */
.services-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.services-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.services-nav a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.services-nav a svg {
  color: var(--primary);
}

.page-hero--services .page-hero__content {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.page-hero--services .services-nav {
  justify-content: center;
}

/* Visuele kolom — decoratie + afbeelding */

.service-detail__extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.service-detail__stat {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-section.section--alt .service-detail__stat {
  background: var(--white);
}

.service-detail__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.service-detail__stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.service-detail__content {
  max-width: 520px;
}

.service-section--reverse .service-detail__content {
  margin-left: auto;
}

.service-detail__visual {
  position: relative;
  min-width: 0;
}

.service-detail__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail__icon-wrap {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.service-detail__content .section-label {
  margin-bottom: 8px;
}

.service-detail__content h2 {
  margin-bottom: 16px;
}

.service-detail__content > p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.0625rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.feature-list li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

/* Diensten overzicht — kaarten naar subpagina's */
.diensten-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.diensten-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.diensten-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 135, 61, 0.35);
}

.diensten-card__image {
  height: 160px;
  overflow: hidden;
}

.diensten-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.diensten-card:hover .diensten-card__image img {
  transform: scale(1.06);
}

.diensten-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.diensten-card__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.diensten-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.diensten-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.diensten-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.service-detail__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.service-detail__cta-row .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Breadcrumb — hero & dienstenpagina's */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb__sep {
  color: var(--text-light);
  user-select: none;
}

.breadcrumb__current {
  color: var(--primary-dark);
  font-weight: 600;
}

.page-hero .breadcrumb,
.service-page-hero .breadcrumb {
  margin-bottom: 24px;
}

.page-hero h1,
.service-page-hero__content h1 {
  margin-top: 0;
}

.page-hero--services .breadcrumb {
  justify-content: center;
}

.service-page-hero {
  padding: calc(var(--site-head-height) + 32px) 0 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-page-hero > .container {
  position: relative;
  z-index: 1;
}

.service-page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-page-hero__content h1 {
  margin-bottom: 16px;
}

.service-page-hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.service-page-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-page-hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.service-page-hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Service pages — compact feature grid */
.service-blocks {
  padding: 64px 0;
  background: var(--bg);
}

.service-blocks .section-header {
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: center;
}

.service-blocks .section-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-bottom: 10px;
}

.service-blocks .section-header p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.service-blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-block {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-block::before,
.service-block::after {
  display: none;
}

.service-block:hover {
  border-color: rgba(255, 135, 61, 0.25);
  box-shadow: var(--shadow-sm);
  transform: none;
}

.service-block__icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  margin: 0;
  background: var(--primary-light);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-block__icon i,
.service-block__icon svg {
  width: 20px !important;
  height: 20px !important;
}

.service-block:hover .service-block__icon {
  background: var(--primary);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.service-block h3 {
  grid-column: 2;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  align-self: end;
}

.service-block p {
  grid-column: 2;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.service-includes {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.service-includes__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.15fr);
  gap: 40px 64px;
  align-items: center;
}

.service-includes__intro h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 12px;
}

.service-includes__intro p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-includes__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: none;
  border-radius: 0;
}

.service-includes__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-includes__check svg,
.service-includes__check [data-lucide] {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 2.75px;
}

.service-includes__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.35;
}

.service-includes__text span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.related-services {
  padding: 48px 0;
}

.related-services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-services__grid a {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}

.related-services__grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Pricing */
.pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.pricing-intro__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.pricing-intro__vat {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding: 16px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  list-style: none;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-legend strong {
  color: var(--text);
  font-weight: 600;
}

.pricing-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-legend__dot--starter {
  background: var(--border);
  box-shadow: inset 0 0 0 2px var(--text-light);
}

.pricing-legend__dot--plus {
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.pricing-footnote {
  text-align: center;
  max-width: 520px;
  margin: 40px auto 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-footnote a {
  color: var(--primary-dark);
  font-weight: 600;
}

.pricing-footnote a:hover {
  text-decoration: underline;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border);
  transition: background 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 135, 61, 0.25);
}

.pricing-card:hover::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.pricing-card__top {
  padding: 28px 28px 0;
}

.pricing-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: linear-gradient(145deg, var(--primary-light) 0%, var(--white) 100%);
  border: 1px solid rgba(255, 135, 61, 0.2);
  border-radius: var(--radius-md);
  color: var(--primary);
}

.pricing-card__icon svg {
  width: 24px;
  height: 24px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.pricing-card__price-block {
  margin: 24px 28px;
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.pricing-card__price-block--custom {
  padding: 22px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 4px;
  line-height: 1;
}

.pricing-card__currency {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-card__price strong {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.pricing-card__price--custom strong {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.pricing-card__period {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.pricing-card__vat {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow:
    0 0 0 1px var(--primary),
    0 20px 48px rgba(255, 135, 61, 0.18);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-card--featured::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card--featured::after {
  content: 'Meest gekozen';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 135, 61, 0.35);
}

.pricing-card--featured .pricing-card__price-block {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  border-color: rgba(255, 135, 61, 0.25);
}

.pricing-card--featured .pricing-card__icon {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: var(--white);
}

.pricing-card--starter::before {
  background: var(--border);
}

.pricing-card__features {
  flex: 1;
  margin: 0 28px 28px;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-card__features li strong {
  color: var(--text);
  font-weight: 600;
}

.pricing-card__feature--muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-card__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--check-green-bg);
  border: 1px solid var(--check-green-border);
  border-radius: 50%;
  color: var(--check-green);
}

.pricing-card__check svg {
  width: 13px;
  height: 13px;
}

.pricing-card__check--muted {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text-light);
}

.pricing-card .btn {
  width: calc(100% - 56px);
  margin: 0 28px 28px;
}

.pricing-note {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 135, 61, 0.22);
}

.pricing-note p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.pricing-note strong {
  color: var(--primary-dark);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-image__badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
}

.about-image__badge span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(255, 135, 61, 0.3);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.contact-method a,
.contact-method span {
  font-weight: 600;
  color: var(--text);
}

.contact-method a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success--visible {
  display: block;
}

.form-success svg {
  color: var(--primary);
  margin-bottom: 16px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 135, 61, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 135, 61, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-muted);
}

.footer .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer .logo__accent {
  color: var(--primary);
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__address {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.footer__social a svg,
.footer__social a [data-lucide] {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

.footer__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social-link--whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.footer__social a.footer__social-link--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

/* Zwevende WhatsApp-knop */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 16px;
  background: #25d366;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #1fb855;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: currentColor;
}

.whatsapp-float__label {
  line-height: 1;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float__label {
    display: none;
  }
}

.footer h4,
.footer__col-title {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 16px;
}

.footer__share-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  width: 100%;
}

.footer__share-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: color var(--transition), border-color var(--transition);
}

.footer__share-link:hover {
  color: var(--primary);
  border-color: rgba(255, 135, 61, 0.45);
}

.trust-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.trust-section__inner h2 {
  margin-bottom: 16px;
}

.trust-section__inner p {
  color: var(--text-muted);
  line-height: 1.7;
}

.trust-section__inner a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8125rem;
}

.footer__bottom a {
  color: var(--primary);
}

.footer__bottom a:hover {
  text-decoration: underline;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Tech decorations */
.tech-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .mega-menu { display: none; }
  .header__phone { display: none; }
  .header__inner {
    grid-template-columns: 1fr auto;
  }
  .header__nav,
  .header .nav__cta {
    display: none;
  }
  .header__glow {
    width: 100%;
    opacity: 0.5;
  }
  .diensten-cards { grid-template-columns: repeat(2, 1fr); }
  .service-page-hero__grid { grid-template-columns: 1fr; }
  .service-blocks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-includes__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-includes__list {
    grid-template-columns: 1fr;
  }
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 600px; margin: 0 auto; }
  .hero__text { max-width: 100%; text-align: center; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__badge { margin-left: auto; margin-right: auto; }
  .hero__stack { justify-content: center; }
  .hero__footnote { text-align: center; }
  .btn-group { justify-content: center; }

  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-section--reverse .service-detail__visual { order: 0; }
  .service-section--reverse .service-detail__content { margin-left: 0; }
  .service-detail__content { max-width: 100%; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar__actions { display: none; }
  .topbar__message { font-size: 0.75rem; }
  .nav, .header__actions .nav__cta { display: none; }
  .header__actions { gap: 0; }
  .nav-toggle { display: inline-flex; }

  .btn,
  .mobile-nav__links a,
  .mobile-nav__sublink,
  .faq-item__question {
    min-height: 44px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .container {
    padding: 0 20px;
  }
  .diensten-cards { grid-template-columns: 1fr; }
  .service-blocks__grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 56px 0; }
  :root { --section-pad: 56px; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero__image-wrap img { height: 320px; }
  .code-float { display: none; }
  .browser-mockup { display: none; }

  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .cta-banner__inner { padding: 40px 24px; }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .hero__eyebrow { margin-left: auto; margin-right: auto; }
}

/* Legal pages */
.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Contact form privacy */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #c0392b;
}

.contact-company {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-company p {
  margin: 0 0 6px;
}

.contact-company p:last-child {
  margin-bottom: 0;
}
