/* ——— Valtex Digital — design tokens ——— */
:root {
  /* Iets lichter dan pitch-black — subtieler donkergrijs-blauw */
  --bg-deep: #0a0b0d;
  /* Zelfde als .hero__viewport — voorkomt zwarte strook bij overscroll bovenaan */
  --bg-root: #0e1013;
  --bg-charcoal: #0f1216;
  --surface: rgba(12, 18, 22, 0.55);
  --border-glass: rgba(0, 255, 255, 0.14);
  --border-glass-strong: rgba(0, 255, 255, 0.24);
  --teal: #00ffff;
  --teal-dim: #00cccc;
  --cyan: #66ffff;
  --white: #f4f8f8;
  --muted: rgba(244, 248, 248, 0.55);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --sidebar-w: 78px;
  --topbar-h: 68px;
  /* Cap op echte beschikbare breedte: voorkomt horizontale overflow bij resize (max(1200,80%) > viewport) */
  --content-max: min(
    1680px,
    calc(100vw - var(--sidebar-w) - 24px),
    max(1200px, calc((100vw - var(--sidebar-w)) * 0.8))
  );
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-root);
  overscroll-behavior-y: none;
  /* Safari: geen automatische tekstvergroting; gelijk met Chrome */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Voorkomt horizontale “jump” bij body overflow (menu open) door verdwijnen scrollbar */
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-deep);
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  min-height: 100vh;
  min-height: 100svh;
}

/* Alleen voor crawlers / HTML-index: niet tonen, wel in DOM (geen display:none i.v.m. sommige parsers) */
.seo-context {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

main {
  position: relative;
  z-index: 1;
  margin-left: var(--sidebar-w);
  min-width: 0;
  max-width: 100%;
  transition: margin-left 0.35s var(--ease-out);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grain--off {
  opacity: 0;
}

.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}

/* ——— Glass ——— */
.glass-panel {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 48px -24px rgba(0, 0, 0, 0.5),
    0 0 80px -40px rgba(0, 255, 255, 0.15);
}

.glass-panel--topbar {
  border-radius: 0;
  border-left: none;
  border-top: none;
  border-right: none;
  margin: 0;
  padding: 0;
  max-width: none;
  background: rgba(10, 12, 16, 0.28) !important;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 40px -20px rgba(0, 0, 0, 0.35);
}

/* Bovenaan pagina: geen glas op de topbar (eerste pixel scroll = weer glas) */
.header__top.glass-panel--topbar.header__top--at-top {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  box-shadow: none;
}

.glass-panel--inline {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.glass-panel--float {
  padding: 1.5rem;
  max-width: 220px;
  position: absolute;
  right: clamp(1rem, 6vw, 4rem);
  bottom: clamp(5rem, 18vh, 10rem);
}

/* ——— Header + sidebar (Studio Glass–style) ——— */
.header {
  position: relative;
  z-index: 100;
}

.glass-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.85rem 0.5rem 1.65rem;
  background: linear-gradient(180deg, rgba(18, 20, 24, 0.52) 0%, rgba(6, 7, 9, 0.72) 100%);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 26px 0;
  box-shadow:
    6px 0 48px -16px rgba(0, 0, 0, 0.55),
    inset -1px 0 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
}

.sidebar__menu {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.35rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  border-radius: 14px;
  transition: color 0.25s ease;
}

.sidebar__menu:hover,
.sidebar__menu:focus-visible {
  color: var(--teal);
  outline: none;
}

.sidebar__menu-burger {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 24px;
}

.sidebar__menu-burger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out);
}

.sidebar__menu-burger-line--mid {
  width: 62%;
  align-self: flex-end;
}

.sidebar__menu-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.sidebar__social {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.45rem;
}

.sidebar__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  transition:
    color 0.25s ease,
    filter 0.25s ease,
    transform 0.25s var(--ease-out);
}

.sidebar__icon-svg {
  display: block;
}

.sidebar__icon-link:hover {
  color: var(--teal);
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.45));
  transform: scale(1.06);
}

.header__top {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  z-index: 120;
  min-height: var(--topbar-h);
  transition:
    transform 0.5s var(--ease-out),
    opacity 0.4s ease;
}

.header__top.glass-panel--topbar {
  transition:
    transform 0.5s var(--ease-out),
    opacity 0.4s ease,
    background 0.22s ease,
    border-bottom-color 0.22s ease,
    box-shadow 0.22s ease,
    -webkit-backdrop-filter 0.22s ease,
    backdrop-filter 0.22s ease;
}

.header__top.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.header__top-inner {
  width: 100%;
  max-width: min(var(--content-max), 100%);
  margin: 0 auto;
  padding: 0.65rem clamp(0.75rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--topbar-h);
  min-width: 0;
  box-sizing: border-box;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo--header {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: rgba(255, 255, 255, 0.96);
}

.logo__img {
  display: block;
  height: clamp(1.2rem, 2.6vw, 1.55rem);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.logo__img--footer {
  height: clamp(1.35rem, 3vw, 1.75rem);
  max-width: 220px;
  margin: 0;
}

.logo__dot {
  color: var(--teal);
  text-shadow: 0 0 24px rgba(0, 255, 255, 0.6);
}

.nav--top {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: clamp(1rem, 1.8vw, 1.65rem);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.nav--top a {
  transition: color 0.25s ease;
}

.nav--top a:hover {
  color: rgba(255, 255, 255, 1);
}

@media (min-width: 1100px) and (max-width: 1279px) {
  .nav--top {
    gap: 0.65rem;
    font-size: 0.8125rem;
  }
}

/* Smalle desktop: gecentreerde nav mag wrappen i.p.v. over logo/CTA te vallen */
@media (min-width: 900px) and (max-width: 1199px) {
  .nav--top {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    max-width: min(36rem, calc(100vw - var(--sidebar-w) - 13.5rem));
    row-gap: 0.28rem;
    column-gap: clamp(0.4rem, 1.1vw, 0.85rem);
    line-height: 1.25;
  }
}

.header__actions {
  display: none;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.icon-btn:hover {
  color: var(--teal);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.btn--header {
  margin-left: 0.35rem;
}

.btn--header-cta {
  padding: 0.5rem 1.15rem;
  margin-left: 0.5rem;
  line-height: 1.25;
  border-radius: 14px;
}

.btn--header-cta__main {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (min-width: 900px) and (max-width: 1099px) {
  .btn--header-cta {
    padding: 0.48rem 0.95rem;
    margin-left: 0.35rem;
  }

  .btn--header-cta__main {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Fullscreen menu (mega layout) */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.menu-overlay[hidden] {
  display: none !important;
}

.menu-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.82);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  animation: menu-backdrop-in 0.55s var(--ease-out) both;
}

.menu-overlay__shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: rgba(255, 255, 255, 0.95);
}

@keyframes menu-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes menu-rail-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menu-rail-in-mobile {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menu-main-in {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menu-bar-in {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.menu-overlay__body {
  flex: 1;
  display: flex;
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-overlay__rail {
  flex-shrink: 0;
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  max-width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.35rem 0.35rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1.25rem;
  background: rgba(8, 10, 14, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: menu-rail-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.07s both;
}

.menu-overlay__rail-close {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.menu-overlay__rail-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.menu-overlay__rail-close span:first-child {
  transform: rotate(45deg);
}

.menu-overlay__rail-close span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay__rail-close:hover,
.menu-overlay__rail-close:focus-visible {
  background: rgba(0, 255, 255, 0.12);
  outline: none;
}

.menu-overlay__rail-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
}

.menu-overlay__rail-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.menu-overlay__rail-icon {
  display: flex;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.menu-overlay__rail-icon:hover,
.menu-overlay__rail-icon:focus-visible {
  color: var(--teal);
  outline: none;
}

.menu-overlay__main {
  flex: 1;
  min-width: 0;
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  -webkit-overflow-scrolling: touch;
  animation: menu-main-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.menu-overlay__main-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--content-max);
}

.menu-overlay__logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.menu-overlay__logo-link:hover,
.menu-overlay__logo-link:focus-visible {
  opacity: 0.88;
  outline: none;
}

.menu-overlay__logo-img {
  height: clamp(1.35rem, 2.8vw, 1.65rem);
  width: auto;
  max-width: min(200px, 50vw);
  object-fit: contain;
  object-position: left center;
}

.menu-overlay__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.menu-overlay__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 255, 255, 0.35);
  background: rgba(0, 255, 255, 0.06);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.menu-overlay__pill:hover,
.menu-overlay__pill:focus-visible {
  background: rgba(0, 255, 255, 0.14);
  color: var(--teal);
  border-color: rgba(0, 255, 255, 0.55);
  outline: none;
}

.menu-overlay__mega {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.65rem) clamp(1.35rem, 2.8vw, 2.35rem);
  align-content: start;
  align-items: start;
  max-width: var(--content-max);
}

/* Geen negatieve link-marges in mega: die trekken tekst visueel in de kolom-gap */
.menu-overlay__mega .menu-overlay__link-lg,
.menu-overlay__mega .menu-overlay__link-sm {
  margin-inline: 0;
}

.menu-overlay__mega-label {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0, 255, 255, 0.55);
}

.menu-overlay__mega-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.menu-overlay__mega-col--primary {
  gap: 0.5rem;
  align-self: start;
}

.menu-overlay__mega-col--services {
  align-self: start;
  min-width: 0;
}

.menu-overlay__mega-col--secondary {
  align-self: start;
}

/* Desktop: brede dienstenkolom + twee secundaire kolommen */
@media (min-width: 900px) {
  .menu-overlay__mega {
    grid-template-columns: minmax(min(100%, 22rem), 1.55fr) minmax(12.5rem, 1.08fr) minmax(10.5rem, 0.88fr);
    max-width: var(--content-max);
  }

  .menu-overlay__mega-col--services .menu-overlay__link-lg {
    white-space: nowrap;
    font-size: clamp(1.02rem, 1.95vw, 1.72rem);
    letter-spacing: 0.1em;
  }

  .menu-overlay__mega > .menu-overlay__mega-col--secondary {
    align-self: center;
    transform: translateY(clamp(0.75rem, 2.2vh, 1.65rem));
  }

  /* Eerste secundaire kolom = 2e nav (na één dienstenkolom) */
  .menu-overlay__mega > .menu-overlay__mega-col--secondary:nth-child(2) {
    position: relative;
    margin-inline-start: clamp(0.85rem, 2vw, 1.85rem);
    padding-inline-start: clamp(0.75rem, 1.6vw, 1.35rem);
  }

  .menu-overlay__mega > .menu-overlay__mega-col--secondary:nth-child(2)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    transform: translateX(calc(-1 * clamp(0.55rem, 1.2vw, 0.95rem)));
    width: 1px;
    height: clamp(10.5rem, 56%, 18.5rem);
    max-height: min(18.5rem, 54vh);
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.07) 12%,
      rgba(190, 198, 208, 0.32) 30%,
      rgba(190, 198, 208, 0.32) 70%,
      rgba(255, 255, 255, 0.07) 88%,
      transparent 100%
    );
    pointer-events: none;
  }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .menu-overlay__mega-col--services .menu-overlay__link-lg {
    white-space: normal;
    letter-spacing: 0.08em;
  }
}

.menu-overlay__link-lg {
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.94);
  padding: 0.35rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 8px;
  line-height: 1.35;
  transition: background 0.2s ease;
}

.menu-overlay__link-lg:hover,
.menu-overlay__link-lg:focus-visible {
  background: rgba(0, 255, 255, 0.1);
  outline: none;
}

.menu-overlay__link-sm {
  font-size: clamp(0.84rem, 1.35vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.32rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 8px;
  line-height: 1.45;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-overlay__link-sm:hover,
.menu-overlay__link-sm:focus-visible {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 255, 255, 0.1);
  outline: none;
}

.menu-overlay__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex-shrink: 0;
  background: rgba(4, 6, 9, 0.55);
  animation: menu-bar-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.menu-overlay__bar-cell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(0.85rem, 2vw, 1.25rem);
  text-decoration: none;
  color: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  transition: background 0.2s ease;
  min-height: 5.5rem;
}

.menu-overlay__bar-cell:last-child {
  border-right: none;
}

.menu-overlay__bar-cell:hover,
.menu-overlay__bar-cell:focus-visible {
  background: rgba(0, 255, 255, 0.06);
  outline: none;
}

.menu-overlay__bar-cell--hours {
  cursor: default;
  pointer-events: none;
}

.menu-overlay__bar-cell--hours:hover,
.menu-overlay__bar-cell--hours:focus-visible {
  background: transparent;
}

.menu-overlay__bar-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: rgba(255, 255, 255, 0.88);
}

.menu-overlay__bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: clamp(0.78rem, 1.2vw, 0.875rem);
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
}

.menu-overlay__bar-line--muted {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85em;
}

.menu-overlay__bar-cell--cta {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(0.65rem, 1.1vw, 0.72rem);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 0.4rem;
  min-height: 5.5rem;
}

.menu-overlay__bar-cell--cta:hover,
.menu-overlay__bar-cell--cta:focus-visible {
  color: var(--teal);
  text-decoration-color: rgba(0, 255, 255, 0.55);
  background: rgba(0, 255, 255, 0.08);
}

.menu-overlay__bar-cta-arrow {
  display: flex;
  color: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  .menu-overlay__backdrop,
  .menu-overlay__rail,
  .menu-overlay__main,
  .menu-overlay__bar {
    animation: none;
  }
}

@media (max-width: 899px) {
  /* Eén verticale scroll voor heel het menu (geen geneste scroll in .menu-overlay__main) */
  .menu-overlay__shell {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  .menu-overlay__body {
    flex: 0 0 auto;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }

  .menu-overlay__main {
    flex: 0 0 auto;
    overflow: visible;
    min-height: 0;
  }

  .menu-overlay__rail {
    flex-direction: row;
    width: 100%;
    min-width: 0;
    max-width: none;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
    animation-name: menu-rail-in-mobile;
    animation-delay: 0.05s;
  }

  .menu-overlay__rail-title {
    writing-mode: horizontal-tb;
    transform: none;
    flex: 1;
    text-align: center;
    letter-spacing: 0.35em;
  }

  .menu-overlay__rail-social {
    flex-direction: row;
    flex: 0 1 auto;
    gap: 0.85rem;
    justify-content: flex-end;
  }

  .menu-overlay__mega {
    grid-template-columns: 1fr;
  }

  .menu-overlay__mega-col--services .menu-overlay__link-lg {
    white-space: normal;
  }

  /* Dubbele contactlinks: e-mail / WhatsApp / social staan al in de rail bovenaan */
  .menu-overlay__mega nav[aria-label="Direct contact"] {
    display: none !important;
  }

  .menu-overlay__link-lg {
    font-size: clamp(0.92rem, 0.55rem + 2.2vw, 1.32rem);
    letter-spacing: 0.1em;
    line-height: 1.42;
    padding-block: 0.42rem;
  }

  .menu-overlay__link-sm {
    font-size: clamp(0.78rem, 0.48rem + 1.6vw, 0.94rem);
    line-height: 1.5;
  }

  .menu-overlay__bar {
    grid-template-columns: 1fr 1fr;
  }

  .menu-overlay__bar-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 5rem;
  }

  .menu-overlay__bar-cell:nth-child(2n) {
    border-right: none;
  }

  .menu-overlay__bar-cell:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .menu-overlay__bar-cell--cta {
    grid-column: 1 / -1;
    min-height: 4.5rem;
  }
}

@media (max-width: 479px) {
  .menu-overlay__mega {
    grid-template-columns: 1fr;
  }

  .menu-overlay__bar {
    grid-template-columns: 1fr;
  }

  .menu-overlay__bar-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-overlay__bar-cell:last-child {
    border-bottom: none;
  }

  .menu-overlay__bar-cell:nth-child(2n) {
    border-right: none;
  }
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav--top,
  .header__actions,
  .btn--header {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .header__top-inner {
    position: relative;
  }
}

@media (min-width: 900px) and (max-width: 1049px) {
  .nav--top {
    gap: 0.85rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 899px) {
  :root {
    --sidebar-w: 0px;
  }

  .glass-sidebar {
    display: none;
  }

  .header__top {
    left: 0;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn.btn--header-cta {
  align-items: center;
  justify-content: center;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #041210;
  background-color: var(--teal-dim);
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0) 62%,
      transparent 100%
    ),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-dim) 100%);
  background-size: 55% 100%, 100% 100%;
  background-position: -80% 0, 0 0;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 24px -4px rgba(0, 255, 255, 0.45);
  transition:
    background-position 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.btn--primary.btn--header-cta {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 4px 28px -6px rgba(0, 255, 255, 0.55),
    0 0 40px -12px rgba(0, 255, 255, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-position: 180% 0, 0 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 6px 28px -4px rgba(0, 255, 255, 0.5);
}

.btn--primary.btn--header-cta:hover,
.btn--primary.btn--header-cta:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 6px 32px -4px rgba(0, 255, 255, 0.62),
    0 0 52px -8px rgba(0, 255, 255, 0.42);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--border-glass-strong);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 255, 255, 0.35);
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

.btn--hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.btn--hero-secondary:hover {
  color: var(--teal);
  border-color: rgba(0, 255, 255, 0.45);
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 28px -8px rgba(0, 255, 255, 0.35);
}

.hero--cinema .btn--hero-secondary {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn--hero-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.48rem;
  font-family: inherit;
  font-size: 0.84375rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  color: #041210;
  background-color: var(--teal-dim);
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0) 62%,
      transparent 100%
    ),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-dim) 100%);
  background-size: 55% 100%, 100% 100%;
  background-position: -80% 0, 0 0;
  background-repeat: no-repeat;
  border: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 4px 28px -6px rgba(0, 255, 255, 0.55);
  transition:
    background-position 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.btn--hero-contact:hover,
.btn--hero-contact:focus-visible {
  background-position: 180% 0, 0 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 6px 32px -4px rgba(0, 255, 255, 0.58);
}

@media (prefers-reduced-motion: reduce) {
  .btn--primary,
  .btn--hero-contact {
    transition-duration: 0.01ms;
  }
}

/* ——— Hero (Studio Glass–achtig: één beeld, slider, diagonalen) ——— */
.hero--cinema {
  position: relative;
  z-index: 1;
  /* 100svh = stabiele kleine viewport (minder “spring” bij adresbalk Chrome/Safari) */
  min-height: 100vh;
  min-height: 100svh;
  margin-left: calc(-1 * var(--sidebar-w));
  width: calc(100% + var(--sidebar-w));
  isolation: isolate;
}

.hero__viewport {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: var(--bg-root);
}

.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.hero__slides-track {
  --hero-slide-n: 8;
  --hero-slide-i: 1;
  /* --hero-slide-px = exacte viewportbreedte van .hero__slides (JS) — voorkomt subpixel-spleet */
  display: flex;
  height: 100%;
  width: calc(var(--hero-slide-n) * var(--hero-slide-px, 100%));
  transform: translate3d(calc(-1 * var(--hero-slide-i) * var(--hero-slide-px, 0px)), 0, 0);
  will-change: transform;
  transition: transform 2.35s cubic-bezier(0.38, 0.18, 0.22, 1);
  backface-visibility: hidden;
}

.hero__slides-track--no-transition {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slides-track {
    transition-duration: 0.01ms;
  }
}

.hero__slide {
  position: relative;
  flex: 0 0 var(--hero-slide-px, calc(100% / var(--hero-slide-n)));
  width: var(--hero-slide-px, calc(100% / var(--hero-slide-n)));
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero__slide-media {
  position: absolute;
  inset: -12px;
  overflow: hidden;
}

.hero__slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(5px);
  transform: scale(1.08);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 639px) {
  .hero__slide-media img {
    filter: blur(4px);
    transform: scale(1.06);
  }
}

.hero__gradient-read {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(4, 6, 9, 0.55) 0%,
    rgba(4, 6, 9, 0.12) 32%,
    rgba(4, 6, 9, 0.2) 55%,
    rgba(3, 5, 8, 0.92) 100%
  );
}

/* Extra donkere zone links waar de copy staat — leesbaar op elke slide */
.hero__gradient-read--left {
  z-index: 2;
  background:
    radial-gradient(ellipse 120% 115% at 12% 52%, rgba(2, 4, 8, 0.92) 0%, rgba(2, 4, 8, 0.45) 42%, transparent 68%),
    radial-gradient(ellipse 90% 80% at 28% 58%, rgba(3, 6, 12, 0.55) 0%, transparent 58%),
    linear-gradient(90deg, rgba(2, 4, 7, 0.75) 0%, rgba(2, 4, 7, 0.2) min(48%, 520px), transparent min(62%, 720px));
}

.hero__diagonals {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__diagonal-line {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: calc(var(--topbar-h) + 1rem) clamp(1.25rem, 4vw, 2.5rem) max(3.25rem, env(safe-area-inset-bottom))
    clamp(1.25rem, 4vw, 2.5rem);
  padding-left: calc(var(--sidebar-w) + clamp(0.75rem, 2.5vw, 1.75rem));
  pointer-events: none;
}

.hero__stage-inner {
  pointer-events: auto;
  grid-column: 1;
  justify-self: center;
  width: 100%;
  min-width: 0;
  max-width: min(44rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

@media (min-width: 1000px) {
  .hero__stage-inner {
    max-width: min(66rem, 96%);
  }
}

.hero__copy {
  width: 100%;
  min-width: 0;
  max-width: min(44rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media (min-width: 1000px) {
  .hero__copy {
    max-width: min(66rem, 100%);
  }
}

.hero__eyebrow {
  margin: 0 0 0.28rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.hero__headline {
  position: relative;
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2.1rem, 6vw, 3.65rem);
  line-height: 1.18;
  letter-spacing: 0.022em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
  overflow: visible;
  padding-top: 0.06em;
  padding-bottom: 0.1em;
  max-width: 100%;
  filter: drop-shadow(0 3px 28px rgba(0, 0, 0, 0.75));
}

/* SEO-append binnen H1: altijd onzichtbaar (ook als globale .sr-only niet laadt); geen erfenis van hero-font-size */
.hero__headline .hero__h1-seo {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  font-size: 1px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  text-shadow: none !important;
  filter: none !important;
  pointer-events: none !important;
}

.hero__title-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.03em;
  width: 100%;
  line-height: 1.26;
  font-size: 1.03em;
}

.hero__title-line {
  display: block;
  font-weight: 600;
  padding-bottom: 0.05em;
  background: linear-gradient(105deg, #fff 0%, rgba(255, 255, 255, 0.95) 50%, rgba(0, 255, 255, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero__title-line:first-child {
  padding-top: 0.04em;
}

.hero__title-line:last-child {
  padding-bottom: 0.1em;
}

/* Laptop: subregel wrapt onder ~1200px om overlap bij resize te vermijden */
@media (min-width: 900px) and (max-width: 1600px) {
  .hero__headline {
    font-size: clamp(1.72rem, 2.85vw + 0.45rem, 3.05rem);
    letter-spacing: 0.014em;
  }

  .hero__title-line--sub {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .hero__title-line--sub {
    white-space: nowrap;
  }
}

.hero__lede {
  margin: 0 0 0.85rem;
  max-width: 100%;
  font-size: clamp(0.9rem, 1.55vw, 1.03rem);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.65);
}

.hero__lede strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}

@media (min-width: 900px) and (max-width: 1600px) {
  .hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
  }

  .hero__lede {
    font-size: clamp(0.86rem, 1.32vw, 0.98rem);
  }
}

.hero__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__stars {
  display: inline-flex;
  gap: 0.12rem;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero__star {
  color: var(--teal);
  text-shadow: 0 0 14px rgba(0, 255, 255, 0.45);
}

.hero__star--partial {
  position: relative;
  display: inline-flex;
  width: 1em;
  height: 1em;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__star-partial-bg {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.18);
  text-shadow: none;
  pointer-events: none;
}

.hero__star-partial-fg {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  color: var(--teal);
  text-shadow: 0 0 14px rgba(0, 255, 255, 0.45);
  pointer-events: none;
}

.hero__rating-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.hero__rating-score {
  color: var(--teal);
  font-weight: 700;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 0.45rem;
  width: 100%;
  max-width: 100%;
}

.hero__cta-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}

.hero__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.hero__cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
}

.hero__cta-link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.15rem;
  width: 100%;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.hero__cta-link:hover {
  color: var(--teal);
  border-color: rgba(0, 255, 255, 0.55);
}

.hero__cta-meta {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hero__cta-meta strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.07em;
}

.hero__circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 0.25s ease, filter 0.25s ease;
}

.hero__circle-btn:hover {
  color: var(--teal);
  filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.5));
}

.hero__circle-btn:focus-visible {
  outline: 2px solid rgba(0, 255, 255, 0.55);
  outline-offset: 4px;
}

/* Gecentreerd op de contentkolom (rechts van sidebar), niet op de volledige hero-breedte */
.hero__partners {
  position: absolute;
  left: calc(var(--sidebar-w) + (100% - var(--sidebar-w)) / 2);
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  max-width: min(92vw, 24rem);
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  pointer-events: none;
  transform: translateX(-50%);
  text-align: center;
}

.hero__partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(180, 190, 196, 0.85);
}

.hero__partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.85rem;
}

.hero__partners-list li {
  display: flex;
  align-items: center;
  line-height: 0;
}

.hero__partners-icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.9;
}

.hero__partners-icon--code {
  width: 34px;
  height: 34px;
}

.hero__pager--fixed {
  position: absolute;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .hero__pager--fixed {
    right: clamp(1.25rem, 2.5vw, 2.25rem);
    bottom: clamp(1.5rem, 3vh, 2.25rem);
  }
}

.hero__pager {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.hero__pager-count {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}

.hero__pager-dash {
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.hero__pager-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.hero__pager-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.hero__pager-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero__pager-dot.is-active {
  background: var(--teal);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.55);
  transform: scale(1.15);
}

@media (max-width: 899px) {
  .hero--cinema {
    margin-left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__stage {
    grid-template-columns: 1fr;
    padding-top: calc(var(--topbar-h) + 0.55rem);
    padding-left: clamp(1rem, 5vw, 2.5rem);
    padding-right: clamp(1rem, 5vw, 2.5rem);
    align-items: center;
    padding-bottom: max(2.75rem, env(safe-area-inset-bottom));
  }

  .hero__stage-inner {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .hero__headline {
    font-size: clamp(1.48rem, 6.6vw, 2.05rem);
    line-height: 1.14;
    letter-spacing: 0.014em;
    margin-bottom: 0.3rem;
  }

  .hero__title-stack {
    font-size: 1em;
  }

  .hero__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.2rem;
  }

  .hero__lede {
    font-size: clamp(0.8rem, 3.5vw, 0.94rem);
    line-height: 1.52;
    margin-bottom: 0.5rem;
  }

  .hero__rating {
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.62rem;
    gap: 0.32rem 0.5rem;
  }

  .hero__rating-text {
    font-size: 0.7rem;
  }

  .hero__stars {
    font-size: 0.8rem;
  }

  .btn--hero-contact {
    padding: 0.5rem 1rem;
    font-size: 0.84rem;
  }

  .hero__cta-link {
    font-size: 0.84rem;
  }

  .hero__cta-meta {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .hero__partners-label {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .hero__pager-count {
    font-size: 0.65rem;
  }

  .hero__gradient-read--left {
    background:
      radial-gradient(ellipse 140% 100% at 20% 50%, rgba(2, 4, 8, 0.9) 0%, rgba(2, 4, 8, 0.4) 50%, transparent 72%),
      linear-gradient(180deg, rgba(2, 4, 7, 0.65) 0%, transparent 40%, rgba(3, 5, 8, 0.88) 100%);
  }

  .hero__pager--fixed {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: clamp(1rem, 4vw, 1.5rem);
    right: clamp(1rem, 4vw, 1.5rem);
    width: auto;
  }

  .hero__pager-dots {
    justify-content: flex-end;
  }

  .hero__partners {
    left: calc(var(--sidebar-w) + (100% - var(--sidebar-w)) / 2);
    transform: translateX(-50%);
    bottom: max(5.35rem, calc(env(safe-area-inset-bottom) + 4.75rem));
    max-width: min(92vw, 22rem);
  }

  .hero__partners-icon {
    width: 26px;
    height: 26px;
  }
}

/* Donkere secties: behoud gloed-tekst */
.text-glow {
  background: linear-gradient(120deg, var(--white) 0%, var(--cyan) 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.35));
}

/* ——— Sections shared ——— */
.container {
  width: 100%;
  min-width: 0;
  max-width: min(var(--content-max), 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.section-head {
  margin-bottom: 3rem;
  max-width: min(52rem, 100%);
}

.section-head--tight {
  margin-bottom: 2rem;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-lead {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-bg--services {
  background: radial-gradient(
    ellipse 60% 48% at 50% 32%,
    rgba(0, 255, 255, 0.1) 0%,
    transparent 50%
  );
}

/* Als Diensten-gloed, iets breder in de breedte */
.section-bg--portfolio {
  background: radial-gradient(
    ellipse 84% 46% at 50% 32%,
    rgba(0, 255, 255, 0.1) 0%,
    transparent 50%
  );
}

.section-bg--process {
  background: radial-gradient(
    ellipse 48% 40% at 20% 80%,
    rgba(102, 255, 255, 0.05) 0%,
    transparent 38%
  );
}

/* ——— Services ——— */
.services {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vw, 7rem) 0;
  margin-top: 0;
  background-color: var(--bg-deep);
  overflow: hidden;
}

/* Naadloze overgang hero → diensten */
.services::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(4.5rem, 11vw, 7rem);
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(var(--border-glass), var(--border-glass)) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(7, 11, 14, 0.88) 0%, rgba(5, 8, 10, 0.35) 45%, transparent 100%);
}

.services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

@media (min-width: 1000px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services__more {
    align-self: center;
    justify-content: center;
  }
}

.services .section-head {
  margin-left: auto;
  margin-right: auto;
  max-width: min(58rem, 100%);
  text-align: center;
}

.section-lead--services {
  font-size: clamp(0.9rem, 1.65vw, 0.98rem);
  line-height: 1.58;
}

.services .section-head .section-title {
  font-size: clamp(1.62rem, 3.4vw, 2.4rem);
}

.services__grid > li:not(.services__more) {
  display: flex;
  min-height: 0;
  min-width: 0;
}

.services a.service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.services a.service-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 22px;
}

.services a.service-card h3,
.services a.service-card p {
  text-decoration: none;
}

/* Diensten: zelfde frosted glass als werkwijze + hover (gradient, icon-gloed, cta-dot) */
.services .service-card {
  position: relative;
  isolation: isolate;
  padding: 1.35rem 1.35rem 2.55rem;
  padding-right: 1.5rem;
  text-align: left;
  border-radius: 22px;
  background: rgba(12, 16, 20, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 8px 32px -12px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.38s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.38s ease,
    background 0.35s ease;
}

.services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(0, 255, 255, 0.14) 0%,
    rgba(120, 60, 180, 0.12) 42%,
    rgba(255, 255, 255, 0.04) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.services .service-card > * {
  position: relative;
  z-index: 1;
}

.services .service-card__hover-cta {
  z-index: 2;
}

.services .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 255, 0.32);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.12) inset,
    0 28px 56px -26px rgba(0, 0, 0, 0.6),
    0 0 56px -18px rgba(0, 255, 255, 0.22),
    0 0 80px -40px rgba(124, 58, 237, 0.15);
}

.services .service-card:hover::before {
  opacity: 1;
}

.services .service-card__icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.96);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.services .service-card:hover .service-card__icon-wrap {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.services .service-card:hover .service-card__icon-wrap--code {
  box-shadow:
    0 8px 28px -4px rgba(29, 78, 216, 0.65),
    0 0 36px -6px rgba(0, 255, 255, 0.45);
}

.services .service-card:hover .service-card__icon-wrap--seo {
  box-shadow:
    0 8px 28px -4px rgba(15, 118, 110, 0.6),
    0 0 36px -6px rgba(0, 255, 255, 0.5);
}

.services .service-card:hover .service-card__icon-wrap--ads {
  box-shadow:
    0 8px 28px -4px rgba(109, 40, 217, 0.55),
    0 0 36px -6px rgba(0, 255, 255, 0.4);
}

.services .service-card:hover .service-card__icon-wrap--landing {
  box-shadow:
    0 8px 28px -4px rgba(190, 18, 60, 0.5),
    0 0 36px -6px rgba(124, 58, 237, 0.45);
}

.services .service-card:hover .service-card__icon-wrap--brand {
  box-shadow:
    0 8px 28px -4px rgba(194, 65, 12, 0.5),
    0 0 36px -6px rgba(0, 255, 255, 0.35);
}

.services .service-card__hover-cta {
  position: absolute;
  bottom: 1.05rem;
  right: 1.05rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2ee6e6 0%, #00b4b4 45%, #009090 100%);
  box-shadow:
    0 4px 18px rgba(0, 255, 255, 0.45),
    0 0 24px -4px rgba(0, 255, 255, 0.35);
  opacity: 0;
  transform: scale(0.82) translate(6px, 4px);
  transition:
    opacity 0.32s ease,
    transform 0.38s var(--ease-out);
  pointer-events: none;
}

.services .service-card__hover-cta svg {
  display: block;
  width: 0.78rem;
  height: 0.78rem;
}

.services .service-card:hover .service-card__hover-cta {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.services .service-card__icon-wrap--code {
  background: linear-gradient(135deg, #1d4ed8 0%, #0d9488 100%);
  box-shadow:
    0 6px 20px -6px rgba(29, 78, 216, 0.55),
    0 0 24px -10px rgba(13, 148, 136, 0.35);
}

.services .service-card__icon-wrap--seo {
  background: linear-gradient(135deg, #0f766e 0%, #15803d 100%);
  box-shadow:
    0 6px 20px -6px rgba(15, 118, 110, 0.5),
    0 0 24px -10px rgba(21, 128, 61, 0.35);
}

.services .service-card__icon-wrap--ads {
  background: linear-gradient(135deg, #6d28d9 0%, #2563eb 100%);
  box-shadow:
    0 6px 20px -6px rgba(109, 40, 217, 0.5),
    0 0 24px -10px rgba(37, 99, 235, 0.35);
}

.services .service-card__icon-wrap--landing {
  background: linear-gradient(135deg, #be123c 0%, #7c3aed 100%);
  box-shadow:
    0 6px 20px -6px rgba(190, 18, 60, 0.45),
    0 0 24px -10px rgba(124, 58, 237, 0.35);
}

.services .service-card__icon-wrap--brand {
  background: linear-gradient(135deg, #c2410c 0%, #ca8a04 100%);
  box-shadow:
    0 6px 20px -6px rgba(194, 65, 12, 0.45),
    0 0 24px -10px rgba(202, 138, 4, 0.3);
}

.services .service-card__glyph {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.services .service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.28;
  transition: color 0.32s ease;
}

.services .service-card:hover h3 {
  color: #5ee9e9;
  text-shadow: 0 0 28px rgba(0, 255, 255, 0.25);
}

.services .service-card p {
  margin: 0;
  color: rgba(175, 184, 190, 0.92);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.services .service-card p strong {
  color: rgba(228, 236, 238, 0.94);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .services .service-card,
  .services .service-card::before,
  .services .service-card h3,
  .services .service-card__icon-wrap,
  .services .service-card__hover-cta {
    transition-duration: 0.01ms;
  }

  .services .service-card:hover {
    transform: none;
  }

  .services .service-card:hover .service-card__hover-cta {
    transform: none;
  }

  .services .service-card:hover .service-card__icon-wrap {
    transform: none;
  }
}

/* Zesde element: geen kaart — link gecentreerd in de cel */
.services__more {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  min-height: 0;
}

.services__more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  margin: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dim);
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.32s var(--ease-out),
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.38s ease,
    gap 0.32s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.services__more-link:hover {
  color: #b8ffff;
  background: rgba(0, 255, 255, 0.07);
  border-color: rgba(0, 255, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.06) inset,
    0 10px 32px -14px rgba(0, 255, 255, 0.35);
  gap: 0.62rem;
}

.services__more-link:active {
  transform: scale(0.98);
}

.services__more-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 999px;
}

.services__more-arrow {
  flex-shrink: 0;
  opacity: 0.92;
  transition:
    transform 0.38s var(--ease-out),
    opacity 0.3s ease,
    filter 0.35s ease;
}

.services__more-link:hover .services__more-arrow {
  transform: translateX(6px);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.45));
}

@media (prefers-reduced-motion: reduce) {
  .services__more-link,
  .services__more-arrow {
    transition-duration: 0.01ms;
  }

  .services__more-link:hover {
    gap: 0.5rem;
  }

  .services__more-link:active {
    transform: none;
  }

  .services__more-link:hover .services__more-arrow {
    transform: translateX(4px);
    filter: none;
  }
}

@media (max-width: 999px) {
  .services__more {
    padding-top: 0.5rem;
    justify-content: center;
  }
}

/* ——— Why (twee kolommen, kaarten als referentie + teal hover-gloed) ——— */
.why {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
  background: var(--bg-deep);
}

.why__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .why__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.75rem, 5vw, 4.25rem);
    align-items: center;
  }
}

.why__cta {
  margin: clamp(1.25rem, 3vw, 1.65rem) 0 0;
}

.why__copy {
  min-width: 0;
}

.why__panel {
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.why__panel-inner {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.why__panel-inner .eyebrow {
  margin: 0 0 1rem;
}

.why__title {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.why__title-line {
  display: block;
  color: rgba(255, 255, 255, 0.98);
}

.why__title-performance {
  background: linear-gradient(120deg, var(--white) 0%, var(--cyan) 42%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.32));
}

.why__text {
  color: rgba(175, 186, 194, 0.95);
  font-size: clamp(0.92rem, 1.75vw, 1rem);
  line-height: 1.6;
  margin: 0 0 1.45rem;
  max-width: 36rem;
}

.why__text strong {
  color: rgba(248, 252, 252, 0.96);
  font-weight: 600;
}

.why__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.why__stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: min(100%, 11rem);
}

.why__stat-value {
  font-size: clamp(2.2rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.98);
}

.why__stat-label {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(155, 168, 178, 0.92);
  max-width: 15rem;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 520px) {
  .why__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.why__feature {
  margin: 0;
  padding: 1.45rem 1.35rem 1.5rem;
  text-align: left;
  border-radius: 22px;
  background: rgba(12, 16, 20, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 8px 32px -12px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition:
    transform 0.32s var(--ease-out),
    border-color 0.28s ease,
    box-shadow 0.32s ease,
    background 0.35s ease;
}

.why__feature:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.22),
    0 0 36px -8px rgba(0, 255, 255, 0.38),
    0 22px 48px -28px rgba(0, 0, 0, 0.65);
}

.why__feature:focus-within {
  border-color: rgba(0, 255, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.18),
    0 0 32px -10px rgba(0, 255, 255, 0.28),
    0 18px 44px -28px rgba(0, 0, 0, 0.6);
}

.why__feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
  color: #0a0c0e;
  background: linear-gradient(145deg, #5ffcf0 0%, var(--cyan) 28%, var(--teal) 62%, var(--teal-dim) 100%);
  border: none;
  box-shadow:
    0 6px 22px -4px rgba(0, 255, 255, 0.55),
    0 0 28px -6px rgba(0, 255, 255, 0.35);
}

.why__feature-icon svg {
  width: 1.28rem;
  height: 1.28rem;
}

.why__feature-title {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.97);
  line-height: 1.22;
}

.why__feature-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.52;
  color: rgba(165, 176, 186, 0.94);
}

.why__feature-text strong {
  color: rgba(235, 242, 245, 0.95);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .why__title-performance {
    filter: none;
  }

  .why__feature {
    transition: none;
  }

  .why__feature:hover {
    transform: none;
  }
}

/* ——— Portfolio (case-cards, 3-koloms) ——— */
.portfolio {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background-color: var(--bg-deep);
  overflow: hidden;
}

.portfolio__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: min(40rem, 100%);
}

.portfolio__head .section-title {
  margin-left: auto;
  margin-right: auto;
}

.portfolio__lead {
  margin: 0.35rem 0 0;
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  line-height: 1.58;
  color: rgba(175, 186, 194, 0.92);
}

.portfolio__grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.portfolio__actions {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .portfolio__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .portfolio__grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.portfolio__card {
  margin: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(12, 16, 20, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 8px 32px -12px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.portfolio__card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.06) inset,
    0 0 40px -14px rgba(0, 255, 255, 0.22),
    0 24px 56px -32px rgba(0, 0, 0, 0.65);
}

.portfolio__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

.portfolio__card-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.portfolio__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #121418;
}

.portfolio__visual--lux {
  background: linear-gradient(145deg, #2d1f3d 0%, #5b3a6e 42%, #1a1424 100%);
}

.portfolio__visual--saas {
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 50%, #0c1929 100%);
}

.portfolio__visual--brand {
  background: linear-gradient(160deg, #18181b 0%, #3f3f46 45%, #0f1418 100%);
}

.portfolio__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s var(--ease-out);
}

.portfolio__card:hover .portfolio__thumb {
  transform: scale(1.04);
}

.portfolio__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.portfolio__card:hover .portfolio__visual::after {
  opacity: 0.65;
}

.portfolio__body {
  padding: 1.35rem 1.4rem 1.45rem;
  text-align: left;
}

.portfolio__cat {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.portfolio__title {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.25;
}

.portfolio__excerpt {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.52;
  color: rgba(165, 176, 186, 0.95);
}

.portfolio__excerpt strong {
  color: rgba(235, 242, 245, 0.96);
  font-weight: 600;
}

.portfolio__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.25s ease;
}

.portfolio__cta-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.portfolio__card:hover .portfolio__cta {
  color: var(--teal);
}

.portfolio__card:hover .portfolio__cta-arrow {
  transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
  .portfolio__card,
  .portfolio__card:hover {
    transform: none;
  }

  .portfolio__thumb,
  .portfolio__card:hover .portfolio__thumb {
    transform: none;
  }

  .portfolio__card:hover .portfolio__cta-arrow {
    transform: none;
  }
}

/* ——— Process ——— */
.process {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process__actions {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* ——— Process (werkwijze): 4 kolommen, volle containerbreedte ——— */
.process-timeline__head.section-head {
  max-width: none;
}

.process-timeline__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: none;
}

.process-timeline__head .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  font-size: clamp(1.95rem, 4.5vw, 3rem);
  line-height: 1.12;
}

.process-timeline__lead {
  margin: 0.5rem auto 0;
  max-width: min(56rem, 100%);
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  line-height: 1.58;
  color: rgba(175, 186, 194, 0.95);
}

.process-timeline__lead strong {
  color: rgba(240, 246, 248, 0.95);
  font-weight: 600;
}

.process-timeline {
  list-style: none;
  margin: clamp(2.25rem, 5vw, 3.25rem) 0 0;
  padding: 0;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 1000px) {
  .process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
  }
}

.process-timeline__row {
  display: flex;
  min-width: 0;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.process-timeline__row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-timeline__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: 18px;
  /* Experiment: frosted glass — transparant + blur */
  background: rgba(12, 16, 20, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 8px 32px -12px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .process-timeline__card,
  .portfolio__card,
  .why__feature,
  .services .service-card,
  .cta-form--glass {
    background: rgba(16, 18, 22, 0.9);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.process-timeline__marker {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(14, 16, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.process-timeline__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(200, 208, 214, 0.65);
  transition: color 0.35s ease;
}

.process-timeline__title {
  margin: 0 0 0.5rem;
  font-size: clamp(0.98rem, 1.35vw, 1.06rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.96);
  transition: color 0.35s ease;
}

.process-timeline__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.58;
  color: rgba(165, 176, 186, 0.95);
}

.process-timeline__text strong {
  color: rgba(235, 242, 245, 0.94);
  font-weight: 600;
}

.process-timeline__row:hover .process-timeline__marker,
.process-timeline__row:focus-within .process-timeline__marker {
  border-color: rgba(0, 255, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.12) inset,
    0 0 32px -4px rgba(0, 255, 255, 0.38);
}

.process-timeline__row:hover .process-timeline__num,
.process-timeline__row:focus-within .process-timeline__num {
  color: var(--teal);
}

.process-timeline__row:hover .process-timeline__card,
.process-timeline__row:focus-within .process-timeline__card {
  border-color: rgba(0, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.06) inset,
    0 0 40px -14px rgba(0, 255, 255, 0.22);
}

.process-timeline__row:hover .process-timeline__title,
.process-timeline__row:focus-within .process-timeline__title {
  color: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  .process-timeline__row {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .process-timeline__marker,
  .process-timeline__num,
  .process-timeline__card,
  .process-timeline__title {
    transition-duration: 0.01ms;
  }
}

/* Ankers: vaste topbar bedekt titel niet bij hash-navigatie */
#contact,
#contact-form,
#contact-aanvraag,
#diensten-aanvraag,
#waarom-valtex-aanvraag,
#werk-aanvraag,
#waarom-hero,
#werk-hero-cinema,
#website-hero,
#website-aanvraag,
#reclame-hero,
#reclame-aanvraag,
#seo-hero,
#seo-aanvraag {
  scroll-margin-top: calc(var(--topbar-h) + 0.75rem);
}

/* Hero-blokken (alle pagina's behalve home): afgeronde onderhoeken, geen lijn eronder */
.diensten-hero-simple,
.werk-hero-split,
.case-story-hero,
.page--contact .contact-intro.contact-intro--waarom-mobile {
  border-bottom-left-radius: clamp(18px, 2.4vw, 28px);
  border-bottom-right-radius: clamp(18px, 2.4vw, 28px);
  border-bottom: none !important;
  overflow: hidden;
}

/* ——— CTA ——— */
.cta-section {
  position: relative;
  padding: clamp(4rem, 12vw, 7rem) 0;
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  width: min(78vw, 560px);
  height: min(78vw, 560px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 255, 0.12) 0%, transparent 52%);
  pointer-events: none;
}

.cta-section__inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .cta-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .cta-section__inner.cta-section__inner--quote {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
  }
}

/* Home (alleen index): quote-layout — voorkom dat formulier buiten container schuift op smalle schermen */
.cta-section__inner.cta-section__inner--quote {
  min-width: 0;
}

.cta-section__inner--quote > .cta-form {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.cta-section__inner--quote .cta-form__field,
.cta-section__inner--quote .cta-form__row--2 {
  min-width: 0;
}

.cta-section__inner--quote .cta-form input,
.cta-section__inner--quote .cta-form select,
.cta-section__inner--quote .cta-form textarea {
  max-width: 100%;
}

.cta-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.cta-section__title--page {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
}

.cta-section__copy p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.cta-section__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.62;
  color: rgba(244, 248, 248, 0.72);
  max-width: 36rem;
}

.cta-section__copy--quote {
  max-width: min(46rem, 100%);
}

.cta-section__copy--quote .cta-section__title {
  margin-bottom: 1.15rem;
}

.cta-section__page-label {
  margin-bottom: 0.35rem;
}

.cta-section__body {
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-section__body p {
  margin: 0;
  font-size: clamp(0.9rem, 1.45vw, 0.98rem);
  line-height: 1.68;
  color: rgba(200, 210, 218, 0.82);
}

.cta-section__body strong {
  color: rgba(244, 248, 248, 0.95);
  font-weight: 600;
}

.cta-section__checklist {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1.25rem;
}

@media (min-width: 520px) {
  .cta-section__checklist:not(.cta-section__checklist--minimal) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cta-section__checklist--minimal {
  margin: 0 0 0;
  gap: 0.72rem;
}

.cta-section__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.cta-section__checklist--minimal li {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(184, 196, 206, 0.88);
  gap: 0.5rem;
}

.cta-section__check {
  flex-shrink: 0;
  display: flex;
  color: #34d399;
  filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.35));
}

.cta-section__checklist--minimal .cta-section__check {
  margin-top: 0.12rem;
  color: rgba(0, 255, 255, 0.55);
  filter: none;
  opacity: 0.9;
}

.cta-section__alt-contact {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  color: rgba(244, 248, 248, 0.48);
}

.cta-section__alt-contact a {
  color: rgba(102, 255, 255, 0.85);
  text-decoration: none;
}

.cta-section__alt-contact a:hover {
  text-decoration: underline;
  color: var(--teal);
}

.page-actions--contact {
  margin-top: 0.5rem;
  padding-bottom: 2rem;
}

.cta-form {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cta-form__field--full {
  grid-column: 1 / -1;
}

.cta-form__field span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.cta-form input,
.cta-form textarea,
.cta-form select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(244, 248, 248, 0.3);
}

.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus {
  border-color: rgba(0, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
}

.cta-form .btn--full {
  grid-column: 1 / -1;
}

.cta-form__submit.btn--header-cta {
  margin-left: 0;
  margin-right: 0;
}

.section-cta-link.btn--header-cta {
  margin-left: 0;
  margin-right: 0;
}

.cta-form__note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Offerte-formulier: frosted glass (zelfde taal als cards) */
.cta-form--glass {
  position: relative;
  isolation: isolate;
  padding: clamp(1.35rem, 3.2vw, 1.85rem) clamp(1.25rem, 3vw, 1.95rem);
  border-radius: 22px;
  background: rgba(12, 16, 20, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 8px 32px -12px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  gap: 1.05rem 1.15rem;
  transition: background 0.35s ease;
}

/* Alle glass-offerteformulieren: gradient + lichte neon-gloed langs buitenrand (mask) */
.cta-form.cta-form--glass::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  box-sizing: border-box;
  background: linear-gradient(
    125deg,
    rgba(0, 255, 255, 0.55) 0%,
    rgba(102, 255, 255, 0.2) 32%,
    rgba(0, 204, 204, 0.42) 62%,
    rgba(0, 255, 255, 0.48) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.28));
}

.cta-form.cta-form--glass > * {
  position: relative;
  z-index: 2;
}

.cta-form__row--2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem 1.15rem;
}

.cta-form--glass .cta-form__field span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(200, 210, 218, 0.88);
}

.cta-form__req {
  color: #f87171;
  text-decoration: none;
  font-weight: 700;
}

.cta-form__optional {
  font-weight: 500;
  color: rgba(160, 174, 186, 0.75);
}

.cta-form--glass input,
.cta-form--glass textarea,
.cta-form--glass select {
  font-size: 0.9375rem;
  padding: 0.78rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.cta-form--glass textarea {
  resize: vertical;
  min-height: 6rem;
}

.cta-form--glass input::placeholder,
.cta-form--glass textarea::placeholder {
  color: rgba(244, 248, 248, 0.32);
}

.cta-form--glass select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2366ffff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.cta-form--glass select option {
  color: #111;
  background: #fff;
}

.cta-form--glass input:focus,
.cta-form--glass textarea:focus,
.cta-form--glass select:focus {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
}

.cta-form__note--glass {
  text-align: center;
  color: rgba(160, 174, 186, 0.82);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-form__note--glass a {
  color: rgba(102, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-form__note--glass a:hover {
  color: var(--teal);
}

.cta-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cta-form__flash {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.45;
  text-align: center;
}

.cta-form__flash--success {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.32);
  color: #bbf7d0;
}

.cta-form__flash--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.32);
  color: #fecaca;
}

@media (max-width: 599px) {
  .cta-form {
    grid-template-columns: 1fr;
  }

  .cta-form__row--2 {
    grid-template-columns: 1fr;
  }
}

/* ——— Footer ——— */
.footer {
  margin-left: var(--sidebar-w);
  transition: margin-left 0.35s var(--ease-out);
  padding: 1.5rem 0 0.95rem;
  background: rgba(3, 4, 5, 0.98);
}

.footer__inner {
  text-align: left;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  padding-bottom: 1.2rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1.25rem 1.75rem;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.1fr 1fr 1fr 0.95fr;
  }
}

.footer__col--brand {
  max-width: 280px;
}

.footer__logo {
  display: inline-flex;
  justify-content: flex-start;
  margin-bottom: 0.45rem;
  line-height: 0;
}

.footer__tagline {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

.footer__heading {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 248, 248, 0.38);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
}

.footer__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(244, 248, 248, 0.78);
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--teal);
}

.footer__contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__contact-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal);
  transition: opacity 0.2s ease;
}

.footer__contact-list a:hover {
  opacity: 0.88;
}

.footer__bar {
  padding-top: 0.85rem;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(244, 248, 248, 0.32);
}

/* ——— Internal pages ——— */
.page {
  position: relative;
  z-index: 1;
  margin-left: var(--sidebar-w);
  min-width: 0;
  max-width: 100%;
  min-height: 55vh;
  padding: calc(var(--topbar-h) + 2.5rem) 0 4rem;
  transition: margin-left 0.35s var(--ease-out);
}

.page__inner {
  max-width: min(1150px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  min-width: 0;
  box-sizing: border-box;
}

.page__inner--wide {
  max-width: min(1320px, 100%);
  min-width: 0;
  box-sizing: border-box;
}

.page--contact {
  padding-top: calc(var(--topbar-h) + 0.75rem);
  padding-bottom: 0;
}

/* Contactpagina: lichte H1, SEO in bodytekst, ruime witruimte */
.contact-intro {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(3.25rem, 8vw, 5.75rem);
  text-align: center;
}

.contact-intro__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 1.65rem);
  margin: 0 auto;
  max-width: min(52rem, 100%);
}

.contact-intro__eyebrow {
  margin: 0;
}

.contact-intro__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.contact-intro__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.2vw, 1.35rem);
  width: 100%;
  max-width: min(46rem, 100%);
  margin: 0;
  text-align: center;
}

.contact-intro__lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.75vw, 1.1rem);
  line-height: 1.72;
  color: rgba(200, 210, 218, 0.88);
  text-wrap: pretty;
}

.contact-intro__lead--secondary {
  font-size: clamp(0.93rem, 1.55vw, 1.02rem);
  line-height: 1.7;
  color: rgba(188, 198, 206, 0.86);
}

.contact-intro__lead strong {
  color: rgba(244, 248, 248, 0.95);
  font-weight: 600;
}

.contact-intro__media,
.contact-intro__scrim {
  display: none;
}

.cta-section--contact-only {
  padding-top: clamp(2.75rem, 7.5vw, 4.75rem);
  padding-bottom: clamp(2.75rem, 8vw, 5rem);
}

@media (max-width: 899px) {
  .page--contact .cta-section--contact-only {
    padding-top: clamp(2.25rem, 9vw, 4rem);
  }
}

.contact-form-split {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.75rem);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-form-split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: clamp(2.5rem, 5.5vw, 4.5rem);
  }
}

.contact-form-split__aside {
  text-align: left;
}

.contact-benefits__eyebrow {
  margin-bottom: 0.5rem;
}

.contact-benefits__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.94);
}

.contact-benefits__list {
  margin-bottom: 0;
}

.contact-benefits__figure {
  width: 75%;
  max-width: 75%;
  margin: clamp(1.5rem, 3.5vw, 2.25rem) 0 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 16, 0.6);
  box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.55);
}

.contact-benefits__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 22%;
}

.contact-form-split__form {
  min-width: 0;
}

.cta-form--contact-wide {
  width: 100%;
  max-width: none;
}

/* Contactpagina: decor alleen mobiel (zelfde sfeer als Waarom Valtex) */
.diensten-page-decor--contact-only {
  display: none;
}

@media (max-width: 899px) {
  .page--contact .diensten-page-decor--contact-only {
    display: block;
  }
}

/* Contact: mobiel — blur-hero (foto + scrim), gecentreerde benefits + teamfoto, neon-kader rond formulierblok */
@media (max-width: 899px) {
  .page--contact {
    padding-top: 0;
    position: relative;
    overflow-x: clip;
    isolation: isolate;
  }

  .page--contact .contact-intro.contact-intro--waarom-mobile {
    position: relative;
    margin-left: 0;
    width: 100%;
    min-height: min(480px, 72svh);
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .page--contact .contact-intro__media,
  .page--contact .contact-intro__scrim {
    display: block;
  }

  .page--contact .contact-intro__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .page--contact .contact-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.12);
    filter: blur(9px) saturate(1.06);
  }

  .page--contact .contact-intro__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(12, 14, 18, 0.7) 0%,
      rgba(12, 14, 18, 0.48) 45%,
      rgba(10, 12, 16, 0.85) 100%
    );
  }

  .page--contact .contact-intro.contact-intro--waarom-mobile .container {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    max-width: min(66rem, 100%);
    margin: 0 auto;
    padding: calc(var(--topbar-h) + 0.35rem) clamp(1rem, 5vw, 1.35rem) clamp(1.35rem, 5vw, 2rem);
  }

  .page--contact .contact-intro.contact-intro--waarom-mobile .contact-intro__head {
    gap: clamp(0.95rem, 3vw, 1.35rem);
    max-width: min(66rem, 100%);
  }

  .page--contact .contact-form-split {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 5vw, 2.5rem);
  }

  .page--contact .contact-form-split__aside {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page--contact .contact-benefits__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
  }

  .page--contact .contact-benefits__list {
    width: 100%;
    max-width: min(28rem, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .page--contact .contact-benefits__list li {
    justify-content: center;
    text-align: center;
  }

  .page--contact .contact-benefits__figure {
    width: min(22rem, 92%);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(1.35rem, 4vw, 1.85rem);
  }

  .page--contact .contact-form-split__form {
    width: 100%;
    max-width: min(36rem, 100%);
    margin-left: auto;
    margin-right: auto;
    padding: clamp(1rem, 3.2vw, 1.35rem);
    border-radius: 22px;
    border: 1px solid rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 36px rgba(0, 255, 255, 0.12);
    background: rgba(6, 10, 14, 0.28);
    box-sizing: border-box;
  }

  .page--contact .contact-form-split__form > .cta-form.cta-form--glass {
    padding: clamp(1.05rem, 2.8vw, 1.35rem) clamp(1rem, 2.6vw, 1.25rem);
  }
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .page--contact .contact-intro__media img {
    filter: blur(5px) saturate(1.03);
    transform: scale(1.05);
  }
}

.contact-channels {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.75rem, 7vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.5) 0%, rgba(6, 8, 10, 0.15) 100%);
}

.contact-channels__head {
  text-align: center;
  max-width: min(44rem, 100%);
  margin: 0 auto 2.25rem;
}

.contact-channels__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}

.contact-channels__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(200, 210, 218, 0.84);
}

.contact-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .contact-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.35rem 1.45rem 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 20, 0.42);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 10px 36px -18px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

.contact-tile:hover {
  border-color: rgba(0, 255, 255, 0.28);
  background: rgba(14, 20, 26, 0.52);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.06) inset,
    0 20px 48px -22px rgba(0, 0, 0, 0.55),
    0 0 40px -16px rgba(0, 255, 255, 0.12);
}

.contact-tile:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.contact-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(0, 255, 255, 0.1);
  color: rgba(0, 255, 255, 0.92);
}

.contact-tile--whatsapp .contact-tile__icon {
  background: rgba(37, 211, 102, 0.12);
  color: rgba(144, 238, 144, 0.95);
}

.contact-tile__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.contact-tile__text {
  margin: 0 0 1.1rem;
  flex: 1 1 auto;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(188, 198, 206, 0.88);
}

.contact-tile__cta {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(0, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.contact-tile:hover .contact-tile__cta {
  color: #fff;
}

.page-hero {
  margin-bottom: 2rem;
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.96);
}

.page-hero__lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
  margin: 0;
}

.page-body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(244, 248, 248, 0.82);
}

.page-body h2 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 2rem 0 0.6rem;
  color: var(--white);
}

.page-body h2:first-child {
  margin-top: 0;
}

.page-body p {
  margin: 0 0 1rem;
}

.page-body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.page-body a {
  color: var(--teal);
  font-weight: 500;
}

.page-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.case-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
}

.case-hero__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.28);
  background: rgba(0, 255, 255, 0.07);
}

.case-cover {
  margin: 0 0 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
  background: #121418;
}

.case-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page--case-study .page__inner--wide {
  max-width: min(1240px, 100%);
}

.case-story-hero {
  margin-bottom: 1.75rem;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: clamp(360px, 62vh, 560px);
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-story-hero__bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.case-story-hero__bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  filter: none;
}

@media (max-width: 899px) {
  .case-story-hero__bg-media img {
    transform: scale(1.08);
    filter: blur(8px) saturate(1.06);
  }
}

.case-story-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.86) 0%, rgba(4, 8, 12, 0.78) 38%, rgba(4, 8, 12, 0.35) 100%),
    radial-gradient(circle at 18% 46%, rgba(0, 255, 255, 0.12), transparent 50%);
}

.case-story-hero__wrap {
  display: block;
}

.case-story-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2.1rem);
}

.case-story-hero__copy {
  min-width: 0;
  max-width: min(44rem, 100%);
}

.case-story-hero__crumbs {
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  font-size: 0.8rem;
  color: rgba(186, 199, 209, 0.75);
}

.case-story-hero__crumbs a {
  color: rgba(186, 199, 209, 0.9);
  text-decoration: none;
}

.case-story-hero__crumbs a:hover {
  color: rgba(102, 255, 255, 0.94);
  text-decoration: underline;
}

.case-cover--story {
  margin-bottom: 1.5rem;
}

.case-story-hero__media.case-cover--story {
  margin-bottom: 0;
  display: none;
}

.case-kpi-strip {
  margin: 0 0 2rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 760px) {
  .case-kpi-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.case-kpi-strip__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 18, 0.55);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.case-kpi-strip__value {
  margin: 0 0 0.2rem;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(102, 255, 255, 0.95);
}

.case-kpi-strip__label {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(218, 228, 234, 0.88);
}

.case-story-split {
  margin: 0 0 4rem;
}

.case-story-split__card {
  display: grid;
  gap: 1rem;
}

@media (min-width: 920px) {
  .case-story-split__card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
  }
}

.case-story-split__body {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(10, 14, 18, 0.58);
  padding: 1.2rem 1.2rem 1.1rem;
}

.case-story-split__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(102, 255, 255, 0.86);
}

.case-story-split__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(245, 249, 250, 0.96);
}

.case-story-split__body p {
  margin: 0 0 0.75rem;
  font-size: 0.93rem;
  line-height: 1.62;
  color: rgba(220, 230, 236, 0.88);
}

.case-story-split__body p:last-child {
  margin-bottom: 0;
}

.case-story-split__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101418;
  aspect-ratio: 16 / 10;
}

.case-story-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-solutions {
  margin: 0 0 2.6rem;
}

.case-solutions__title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.42rem, 3.1vw, 2rem);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.case-solutions__stack {
  display: grid;
  gap: 0.95rem;
}

.case-solution-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 860px) {
  .case-solution-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
  }

  .case-solution-row--media-right .case-solution-row__media {
    order: 2;
  }
}

.case-solution-row__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101418;
  min-height: 220px;
}

.case-solution-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-solutions__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(8, 12, 16, 0.56);
  padding: 1rem;
  min-height: 100%;
}

.case-solution-row .case-solutions__item {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0.25rem 0.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-solutions__item h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: rgba(102, 255, 255, 0.94);
}

.case-solutions__item p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.55;
  color: rgba(212, 223, 231, 0.86);
}

.case-next {
  border: 1px dashed rgba(102, 255, 255, 0.26);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: rgba(0, 24, 28, 0.25);
}

.case-next h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: rgba(245, 249, 250, 0.95);
}

.case-next p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.56;
  color: rgba(196, 210, 220, 0.86);
}

.case-cta-bottom {
  margin-top: 2rem;
}

.legal {
  font-size: 0.94rem;
  line-height: 1.68;
  color: rgba(244, 248, 248, 0.82);
}

.legal h2 {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 2.25rem 0 0.65rem;
  color: var(--white);
}

.legal h2:first-of-type {
  margin-top: 0.5rem;
}

.legal p,
.legal ul {
  margin: 0 0 1rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal a {
  color: var(--teal);
}

@media (max-width: 899px) {
  .page {
    margin-left: 0;
  }
}

/* ——— Reveal on scroll ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Diensten / Waarom Valtex page ——— */
.page--diensten,
.page--waarom-valtex,
.page--werk,
.page--website,
.page--reclame,
.page--seo {
  position: relative;
  overflow-x: clip;
  isolation: isolate;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
}

.page--diensten > *:not(.diensten-page-decor),
.page--waarom-valtex > *:not(.diensten-page-decor),
.page--werk > *:not(.diensten-page-decor),
.page--website > *:not(.diensten-page-decor),
.page--reclame > *:not(.diensten-page-decor),
.page--seo > *:not(.diensten-page-decor),
.page--contact > *:not(.diensten-page-decor) {
  position: relative;
  z-index: 1;
}

.diensten-page-decor {
  position: absolute;
  inset: 0;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.diensten-page-decor__shape {
  position: absolute;
  filter: blur(56px);
  opacity: 0.2;
  border-radius: 38% 62% 72% 28% / 44% 36% 64% 56%;
  background: linear-gradient(
    125deg,
    rgba(45, 212, 191, 0.55) 0%,
    rgba(0, 255, 255, 0.35) 45%,
    rgba(13, 148, 136, 0.25) 100%
  );
  transform-origin: center center;
}

.diensten-page-decor__shape--1 {
  width: min(420px, 55vw);
  height: 72px;
  top: 8%;
  left: -6%;
  transform: rotate(-18deg);
}

.diensten-page-decor__shape--2 {
  width: min(520px, 70vw);
  height: 96px;
  top: 22%;
  right: -12%;
  transform: rotate(12deg);
  opacity: 0.16;
}

.diensten-page-decor__shape--3 {
  width: min(380px, 48vw);
  height: 64px;
  top: 42%;
  left: 10%;
  transform: rotate(28deg);
}

.diensten-page-decor__shape--4 {
  width: min(600px, 85vw);
  height: 88px;
  top: 58%;
  right: 5%;
  transform: rotate(-8deg);
  opacity: 0.14;
}

.diensten-page-decor__shape--5 {
  width: min(340px, 42vw);
  height: 110px;
  top: 72%;
  left: -4%;
  transform: rotate(42deg);
  border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
}

.diensten-page-decor__shape--6 {
  width: min(480px, 62vw);
  height: 76px;
  top: 88%;
  right: -8%;
  transform: rotate(-32deg);
  opacity: 0.12;
}

.diensten-page-decor__shape--7 {
  width: min(280px, 40vw);
  height: 140px;
  top: 35%;
  left: 55%;
  transform: rotate(8deg) skewX(-6deg);
  opacity: 0.1;
}

.diensten-page-decor__shape--8 {
  width: min(360px, 50vw);
  height: 58px;
  top: 95%;
  left: 35%;
  transform: rotate(-22deg);
  opacity: 0.11;
}

@media (prefers-reduced-motion: reduce) {
  .diensten-page-decor__shape {
    filter: blur(40px);
  }
}

/* Diensten-hero: ~70% viewport-hoogte, volle breedte, gecentreerde copy */
.diensten-hero-simple {
  position: relative;
  z-index: 1;
  margin-left: calc(-1 * var(--sidebar-w));
  width: calc(100% + var(--sidebar-w));
  min-height: max(340px, 70vh);
  height: 70vh;
  max-height: min(920px, 78vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.diensten-hero-simple__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.diensten-hero-simple__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  filter: none;
}

.diensten-hero-simple__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 14, 18, 0.68) 0%,
    rgba(12, 14, 18, 0.48) 45%,
    rgba(10, 12, 16, 0.82) 100%
  );
}

/* Diensten + Waarom: desktop — iets donkerder hero-foto (extra lichte scrim-laag) */
@media (min-width: 900px) {
  #diensten-hero-cinema .diensten-hero-simple__scrim,
  #waarom-hero .diensten-hero-simple__scrim {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.14) 100%),
      linear-gradient(
        180deg,
        rgba(12, 14, 18, 0.68) 0%,
        rgba(12, 14, 18, 0.48) 45%,
        rgba(10, 12, 16, 0.82) 100%
      );
  }
}

.diensten-hero-simple__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: min(42rem, 100%);
  margin: 0 auto;
  padding: calc(var(--topbar-h) + 1.65rem) 1.5rem 2rem;
  padding-left: max(1.25rem, calc(var(--sidebar-w) + 1.25rem));
  padding-right: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 899px) {
  .diensten-hero-simple {
    margin-left: 0;
    width: 100%;
    min-height: min(480px, 72svh);
    height: auto;
    max-height: none;
    padding-block: 0.75rem 1rem;
  }

  .diensten-hero-simple__inner {
    max-width: none;
    padding-top: calc(var(--topbar-h) + 0.35rem);
    padding-bottom: max(1.15rem, env(safe-area-inset-bottom));
    padding-left: clamp(1rem, 5vw, 1.35rem);
    padding-right: clamp(1rem, 5vw, 1.35rem);
  }

  .diensten-hero-simple {
    padding-block: 0 0.5rem;
  }

  .diensten-hero-simple__media img {
    transform: scale(1.12);
    filter: blur(8px) saturate(1.06);
  }
}

.diensten-hero-simple__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.diensten-hero-simple__title {
  margin: 0 0 0.95rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.05rem, 5.2vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.03em;
  width: 100%;
  filter: drop-shadow(0 2px 28px rgba(0, 0, 0, 0.45));
}

.diensten-hero-simple__title-line {
  display: block;
  font-weight: 700;
  padding-bottom: 0.05em;
  background: linear-gradient(105deg, #fff 0%, rgba(255, 255, 255, 0.95) 50%, rgba(0, 255, 255, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.diensten-hero-simple__title-line:first-child {
  padding-top: 0.04em;
}

.diensten-hero-simple__title-line:last-child {
  padding-bottom: 0.08em;
}

.diensten-hero-simple__lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.02rem, 2.15vw, 1.14rem);
  line-height: 1.62;
  color: rgba(210, 220, 228, 0.9);
}

.diensten-hero-simple__lead strong {
  color: rgba(244, 248, 248, 0.95);
  font-weight: 600;
}

/* Diensten hero: desktop — zelfde uitlijning als voorheen (main-kolom) */
@media (min-width: 900px) {
  #diensten-hero-cinema.diensten-hero-simple {
    box-sizing: border-box;
    padding-left: var(--sidebar-w);
    padding-right: 1.5rem;
  }
}

#diensten-hero-cinema .diensten-hero-simple__inner {
  max-width: min(1480px, var(--content-max), 100%);
  width: 100%;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  padding: calc(var(--topbar-h) + 1.65rem) clamp(1rem, 4vw, 1.5rem) 2rem;
  text-align: center;
  align-items: center;
}

@media (max-width: 899px) {
  #diensten-hero-cinema .diensten-hero-simple__inner {
    max-width: none;
    width: 100%;
    padding-left: clamp(1rem, 5vw, 1.35rem);
    padding-right: clamp(1rem, 5vw, 1.35rem);
    padding-top: calc(var(--topbar-h) + 0.35rem);
    padding-bottom: max(1.15rem, env(safe-area-inset-bottom));
  }
}

#diensten-hero-cinema .diensten-hero-simple__eyebrow {
  width: 100%;
  text-align: center;
}

#diensten-hero-cinema .diensten-hero-simple__title {
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-self: center;
  font-size: clamp(2.1rem, 5.4vw, 3.38rem);
  letter-spacing: 0.022em;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 0.12em;
  box-sizing: border-box;
  text-align: center;
}

#diensten-hero-cinema .diensten-hero-simple__title-line--single {
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  padding-inline: 0.06em 0.14em;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 640px) {
  #diensten-hero-cinema .diensten-hero-simple__title {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  #diensten-hero-cinema .diensten-hero-simple__title-line--single {
    white-space: nowrap;
  }
}

#diensten-hero-cinema .diensten-hero-simple__lead {
  max-width: min(46rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .diensten-hero-simple__media img {
    filter: blur(5px) saturate(1.04);
    transform: scale(1.06);
  }
}

/* Waarom Valtex: bredere hero-kop (diensten-hero-simple, gecentreerd) */
#waarom-hero.diensten-hero-simple .diensten-hero-simple__inner {
  max-width: min(66rem, 100%);
}

@media (max-width: 899px) {
  #waarom-hero.diensten-hero-simple .diensten-hero-simple__inner {
    max-width: none;
    width: 100%;
  }
}

#waarom-hero.diensten-hero-simple .diensten-hero-simple__title {
  max-width: 100%;
  filter: none;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

#waarom-hero.diensten-hero-simple .diensten-hero-simple__title-line {
  font-size: clamp(2.2rem, 6vw, 3.65rem);
  line-height: 1.08;
}

/* Waarom hero: H1 effen wit, geen gradient */
#waarom-hero.diensten-hero-simple .diensten-hero-simple__title-line--plain,
#waarom-hero.diensten-hero-simple .diensten-hero-simple__title-line:only-child {
  background: none;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96);
  color: rgba(255, 255, 255, 0.96);
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}

#waarom-hero.diensten-hero-simple .diensten-hero-simple__lead {
  max-width: min(50rem, 100%);
}

/* Website / Online reclame: tekstblokken zonder glas-card (diensten-pagina ongewijzigd) */
.page--website .service-showcase__card,
.page--reclame .service-showcase__card,
.page--seo .service-showcase__card {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: clamp(1rem, 2.5vw, 1.75rem) 0;
}

@media (min-width: 900px) {
  .page--website .service-showcase__card,
  .page--reclame .service-showcase__card,
  .page--seo .service-showcase__card {
    padding: clamp(1.25rem, 3vw, 2.25rem) 0;
    gap: clamp(1.75rem, 4vw, 3rem);
  }
}

.page--website .service-showcase__list li,
.page--website .service-showcase__list li:first-child,
.page--reclame .service-showcase__list li,
.page--reclame .service-showcase__list li:first-child,
.page--seo .service-showcase__list li,
.page--seo .service-showcase__list li:first-child {
  border-top: none;
  border-bottom: none;
}

/* Online reclame / SEO-pagina: kernsplit (beeld + service-showcase-typografie) */
.page--reclame .reclame-seo-split,
.page--seo .seo-kern-split {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.page--reclame .reclame-seo-split__inner,
.page--seo .seo-kern-split__inner {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: center;
}

@media (min-width: 900px) {
  .page--reclame .reclame-seo-split__inner,
  .page--seo .seo-kern-split__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(1.75rem, 4vw, 2.75rem);
  }
}

.page--reclame .reclame-seo-split__media,
.page--seo .seo-kern-split__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  background: #0a0e10;
  box-shadow: 0 20px 48px -28px rgba(0, 0, 0, 0.55);
}

.page--reclame .reclame-seo-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
  transform: none;
  filter: none;
}

@media (max-width: 899px) {
  /* Reclame eerste blok: scherp beeld op mobiel (zelfde als desktop / SEO-kern) */
  .page--reclame .reclame-seo-split__media img {
    transform: none;
    filter: none;
  }
}

/* SEO eerste blok: scherp beeld (geen blur), zelfde schaal als .service-showcase__media */
.page--seo .seo-kern-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: none;
  filter: none;
}

.page--reclame .reclame-seo-split__text,
.page--seo .seo-kern-split__text {
  min-height: 0;
}

.page--reclame .reclame-footnote,
.page--seo .seo-footnote {
  margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(170, 186, 198, 0.88);
  max-width: min(44rem, 100%);
}

.page--reclame .reclame-footnote a,
.page--seo .seo-footnote a {
  color: rgba(102, 255, 255, 0.9);
  text-underline-offset: 3px;
}

/* Onze werken (werk.html): split hero — copy links, 3D-afgeronde foto rechts */
.werk-hero-split {
  position: relative;
  z-index: 1;
  margin-left: calc(-1 * var(--sidebar-w));
  width: calc(100% + var(--sidebar-w));
  min-height: max(360px, 68vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 70% at 88% 18%, rgba(0, 255, 255, 0.07), transparent 52%),
    linear-gradient(165deg, rgba(16, 18, 22, 0.98) 0%, rgba(8, 10, 14, 1) 55%, var(--bg-deep) 100%);
}

.werk-hero-split__glow {
  position: absolute;
  inset: -20% -10% auto 40%;
  height: min(70vw, 520px);
  background: radial-gradient(circle, rgba(0, 255, 255, 0.12) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.werk-hero-split__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3.25rem, 8vw, 5rem);
  align-items: center;
  min-width: 0;
  padding-top: calc(var(--topbar-h) + 2rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.25rem);
  padding-left: max(1.25rem, calc(var(--sidebar-w) + 1.25rem));
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

@media (min-width: 900px) {
  .werk-hero-split__wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: clamp(3.75rem, 8.5vw, 7rem);
  }
}

/* Smalle / middelgrote desktop: meer ruimte + minder 3D — voorkomt dat beeld over de H1 valt */
@media (min-width: 900px) and (max-width: 1320px) {
  .werk-hero-split__wrap {
    column-gap: clamp(2rem, 4.5vw, 3.5rem);
    gap: clamp(2.25rem, 5vw, 4.25rem);
  }

  .werk-hero-split__copy {
    position: relative;
    z-index: 2;
    padding-right: clamp(0.35rem, 2vw, 1.25rem);
  }

  .werk-hero-split__prism-face {
    transform: rotateY(-2deg) rotateX(1deg);
  }
}

.werk-hero-split__copy {
  text-align: center;
  max-width: min(40rem, 100%);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .werk-hero-split__copy {
    text-align: left;
    margin-inline: 0;
    justify-self: start;
    max-width: min(36rem, 100%);
  }
}

.werk-hero-split__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.werk-hero-split__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.15rem, 5.5vw, 3.55rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02em;
}

@media (min-width: 900px) {
  .werk-hero-split__title {
    align-items: flex-start;
  }
}

.werk-hero-split__title-line {
  display: block;
}

.werk-hero-split__title-line--row1 {
  white-space: normal;
  text-wrap: balance;
}

.werk-hero-split__title-line--row2 {
  margin-top: -0.02em;
}

@media (min-width: 640px) {
  .werk-hero-split__title-line--row1 {
    white-space: nowrap;
  }
}

.werk-hero-split__lead {
  margin: 0;
  font-size: clamp(1.02rem, 2.1vw, 1.12rem);
  line-height: 1.62;
  color: rgba(210, 220, 228, 0.9);
}

.werk-hero-split__lead strong {
  color: rgba(244, 248, 248, 0.95);
  font-weight: 600;
}

.werk-hero-split__figure {
  margin: 0;
  max-width: min(640px, 100%);
  margin-inline: auto;
  justify-self: center;
}

@media (min-width: 900px) {
  .werk-hero-split__figure {
    justify-self: end;
    max-width: min(720px, 100%);
    width: 100%;
  }
}

.werk-hero-split__prism {
  position: relative;
  perspective: 1600px;
  perspective-origin: 50% 48%;
  /* Minimale padding rond het beeld (geen extra ruimte voor verwijderde prism-edge) */
  padding: 0.15rem;
}

.werk-hero-split__prism-face {
  position: relative;
  z-index: 2;
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  border-radius: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 72px -28px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(0, 255, 255, 0.1) inset,
    0 0 56px -12px rgba(0, 255, 255, 0.14);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.werk-hero-split__prism-img-wrap {
  position: relative;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
}

/* Hero: meerdere PNG’s — crossfade + lichte 3D-wissel (zie data-werk-hero-slides + main.js) */
.werk-hero-split__prism-img-wrap[data-werk-hero-slides] {
  aspect-ratio: 16 / 9;
}

.werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  transform: rotateY(-10deg) scale(0.97);
  transform-origin: 48% 50%;
  transition:
    opacity 0.85s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.85s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 0;
}

.werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide.is-active {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  z-index: 2;
}

.werk-hero-split__slide .werk-hero-split__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  transform: scale(1.02);
  filter: none;
}

.werk-hero-split__prism-img-wrap:not([data-werk-hero-slides]) .werk-hero-split__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 0;
  transform: scale(1.02);
  filter: none;
}

@media (min-width: 900px) {
  .werk-hero-split:hover .werk-hero-split__prism-face {
    transform: rotateY(-4deg) rotateX(1.5deg) translateY(-2px);
    box-shadow:
      0 38px 80px -26px rgba(0, 0, 0, 0.75),
      0 0 0 1px rgba(0, 255, 255, 0.14) inset,
      0 0 60px -10px rgba(0, 255, 255, 0.18);
  }
}

@media (min-width: 900px) and (max-width: 1320px) {
  .werk-hero-split:hover .werk-hero-split__prism-face {
    transform: rotateY(-2.5deg) rotateX(1deg) translateY(-2px);
    box-shadow:
      0 38px 80px -26px rgba(0, 0, 0, 0.75),
      0 0 0 1px rgba(0, 255, 255, 0.14) inset,
      0 0 60px -10px rgba(0, 255, 255, 0.18);
  }
}

@media (max-width: 899px) {
  /* Mobiel: zelfde taal als Diensten-hero — beeld vol achtergrond, copy gecentreerd boven scrim */
  .werk-hero-split {
    margin-left: 0;
    width: 100%;
    min-height: min(480px, 72svh);
    height: auto;
    overflow: hidden;
    overflow-x: clip;
    align-items: stretch;
    background:
      radial-gradient(ellipse 90% 60% at 50% 0%, rgba(0, 255, 255, 0.06), transparent 50%),
      linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, rgba(8, 10, 14, 0.15) 45%, rgba(8, 10, 14, 0.55) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .werk-hero-split .werk-hero-split__wrap.container {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    position: relative;
    z-index: 2;
    min-height: min(480px, 72svh);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: clamp(1rem, 5vw, 1.35rem);
    padding-right: clamp(1rem, 5vw, 1.35rem);
    padding-top: calc(var(--topbar-h) + 0.35rem);
    padding-bottom: max(1.15rem, env(safe-area-inset-bottom));
    gap: 0;
  }

  .werk-hero-split .werk-hero-split__wrap.container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(12, 14, 18, 0.62) 0%,
      rgba(12, 14, 18, 0.42) 42%,
      rgba(10, 12, 16, 0.84) 100%
    );
  }

  .werk-hero-split__glow {
    inset: -28% -15% auto 50%;
    height: min(65vw, 340px);
    opacity: 0.32;
    transform: translateX(-50%);
  }

  .werk-hero-split__copy {
    position: relative;
    z-index: 3;
    max-width: min(36rem, 100%);
    width: 100%;
    text-align: center;
  }

  .werk-hero-split__title {
    font-size: clamp(1.58rem, 8.2vw, 2.35rem);
    line-height: 1.14;
    align-items: center;
    filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.5));
  }

  .werk-hero-split__title-line--row1 {
    white-space: normal;
  }

  .werk-hero-split__lead {
    max-width: 36rem;
    margin-inline: auto;
    font-size: clamp(0.88rem, 3.8vw, 1.02rem);
    line-height: 1.58;
  }

  .werk-hero-split__figure {
    position: absolute;
    inset: 0;
    z-index: 0;
    max-width: none;
    width: 100%;
    height: 100%;
    margin: 0;
    pointer-events: none;
  }

  .werk-hero-split__prism {
    height: 100%;
    padding: 0;
    width: 100%;
    max-width: none;
    perspective: none;
  }

  .werk-hero-split__prism-face {
    transform: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    height: 100%;
    min-height: 100%;
  }

  .werk-hero-split:hover .werk-hero-split__prism-face {
    transform: none;
  }

  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] {
    aspect-ratio: unset;
    height: 100%;
    min-height: 100%;
  }

  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide {
    transform: scale(1.02);
    transform-origin: center center;
  }

  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide.is-active {
    transform: none;
  }

  .werk-hero-split__slide .werk-hero-split__img {
    object-position: center 38%;
    transform: scale(1.06);
    filter: blur(7px) saturate(1.05);
  }

  /* Zelfde cinema-layout zonder data-werk-hero-slides (o.a. Website-pagina) */
  .werk-hero-split__prism-img-wrap:not([data-werk-hero-slides]) {
    height: 100%;
    min-height: 100%;
    aspect-ratio: unset;
  }

  .werk-hero-split__prism-img-wrap:not([data-werk-hero-slides]) .werk-hero-split__img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 38%;
    aspect-ratio: unset;
    transform: scale(1.06);
    filter: blur(7px) saturate(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .werk-hero-split__prism-face {
    transform: none;
    transition: none;
  }

  .werk-hero-split:hover .werk-hero-split__prism-face {
    transform: none;
  }

  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide {
    position: relative;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide:not(:first-child) {
    display: none;
  }
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide {
    position: absolute;
    inset: 0;
    transform: none;
    display: block;
  }

  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide:not(.is-active) {
    opacity: 0;
    visibility: hidden;
  }

  .werk-hero-split__prism-img-wrap[data-werk-hero-slides] .werk-hero-split__slide.is-active {
    opacity: 1;
    visibility: visible;
  }

  .werk-hero-split__slide .werk-hero-split__img {
    transform: none;
  }

  .werk-hero-split__prism-img-wrap:not([data-werk-hero-slides]) .werk-hero-split__img {
    transform: none;
  }
}

.page__inner--diensten-wide {
  max-width: min(1480px, 100%);
}

.page-diensten__content {
  padding-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-bottom: 0.25rem;
}

.diensten-intro-heading {
  margin: 0 auto 2.75rem;
  max-width: min(46rem, 100%);
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(1.28rem, 2.9vw, 1.8rem);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: rgba(244, 248, 248, 0.94);
}

.diensten-intro-heading__accent {
  color: rgba(102, 255, 255, 0.95);
  font-weight: 700;
}

.diensten-intro-heading__sub {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82em;
  font-weight: 500;
  line-height: 1.58;
  color: rgba(180, 194, 204, 0.9);
  letter-spacing: 0;
}

.service-showcase {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.service-showcase__card {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 22px;
  background: rgba(10, 14, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px -24px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-showcase--img-left .service-showcase__media {
  order: -1;
}

@media (min-width: 900px) {
  .service-showcase__card {
    grid-template-columns: 1fr 1fr;
    padding: clamp(1.75rem, 3vw, 2.35rem) clamp(1.75rem, 3vw, 2.5rem);
  }
}

@media (max-width: 899px) {
  .page--diensten .service-showcase--img-left .service-showcase__media,
  .page--website .service-showcase--img-left .service-showcase__media,
  .page--reclame .service-showcase--img-left .service-showcase__media,
  .page--seo .service-showcase--img-left .service-showcase__media {
    order: 0;
  }
}

/* Online reclame: mobiel — eerste kernblok als overige: tekst boven, beeld gecentreerd eronder */
@media (max-width: 899px) {
  .page--reclame .reclame-seo-split__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.35rem, 3vw, 2rem);
  }

  .page--reclame .reclame-seo-split__text {
    order: 1;
    width: 100%;
    max-width: min(40rem, 100%);
    text-align: center;
  }

  .page--reclame .reclame-seo-split__text .service-showcase__list {
    text-align: left;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .page--reclame .reclame-seo-split__text .service-showcase__cta-row {
    justify-content: center;
  }

  .page--reclame .reclame-seo-split__media {
    order: 2;
    width: 100%;
    max-width: min(22rem, 94%);
    margin-left: auto;
    margin-right: auto;
  }
}

/* SEO-pagina: mobiel — kernblok: tekst boven, beeld gecentreerd eronder */
@media (max-width: 899px) {
  .page--seo .seo-kern-split__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.35rem, 3vw, 2rem);
  }

  .page--seo .seo-kern-split__text {
    order: 1;
    width: 100%;
    max-width: min(40rem, 100%);
    text-align: center;
  }

  .page--seo .seo-kern-split__text .service-showcase__list {
    text-align: left;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .page--seo .seo-kern-split__text .service-showcase__cta-row {
    justify-content: center;
  }

  .page--seo .seo-kern-split__media {
    order: 2;
    width: 100%;
    max-width: min(40rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

.service-showcase__text {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-showcase__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(102, 255, 255, 0.95);
  text-shadow: 0 0 40px rgba(0, 255, 255, 0.18);
}

.service-showcase__desc {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(220, 228, 234, 0.88);
}

.service-showcase__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}

.service-showcase__list li {
  position: relative;
  padding: 0.62rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(244, 248, 248, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-showcase__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-showcase__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.15rem;
  width: 100%;
}

.service-showcase__link {
  display: inline-block;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(102, 255, 255, 0.92);
  text-decoration: none;
  text-underline-offset: 3px;
}

.service-showcase__link:hover {
  color: var(--teal);
  text-decoration: underline;
}

.service-showcase__price.btn.btn--header-cta {
  min-width: 11.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.service-showcase__price.btn .btn--header-cta__main {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-showcase__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  background: #0a0e10;
}

.service-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 599px) {
  .service-showcase__cta-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .service-showcase__cta-row .service-showcase__link {
    text-align: left;
    flex: 1;
    min-width: 0;
    padding-right: 0.5rem;
  }

  .service-showcase__price.btn.btn--header-cta {
    min-width: 0;
    flex-shrink: 0;
  }
}

.page-actions--diensten {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.cta-section--diensten-bottom {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.cta-section__inner--diensten-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-section__form-head {
  text-align: center;
  max-width: 36rem;
}

.cta-section__form-head--diensten {
  max-width: min(52rem, 100%);
}

.cta-section__title--diensten-form {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 1rem;
}

.cta-section__form-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(200, 210, 218, 0.88);
}

.cta-form--diensten-wide {
  width: 100%;
  max-width: min(52rem, 100%);
}

.js-service-reveal {
  opacity: 0;
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.js-service-reveal--left {
  transform: translateX(-2rem);
}

.js-service-reveal--right {
  transform: translateX(2rem);
}

.js-service-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-service-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ——— Waarom Valtex ——— */
.waarom-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  padding: 0.38rem 0.95rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 12, 16, 0.45);
}

.waarom-pill__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.95), rgba(45, 212, 191, 0.85));
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.35);
}

.waarom-about-split {
  margin-top: clamp(2.75rem, 7vw, 5.25rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.waarom-about-split__card {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.waarom-about-split__media {
  border-radius: 18px;
  overflow: hidden;
  border: none;
  aspect-ratio: 4 / 3;
  background: #0a0e10;
}

.waarom-about-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.waarom-about-split__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(102, 255, 255, 0.88);
}

.waarom-about-split__head {
  margin: 0 0 clamp(0.65rem, 1.8vw, 0.95rem);
}

.waarom-about-split__title {
  margin: 0;
  font-size: clamp(1.28rem, 2.65vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: rgba(244, 248, 248, 0.96);
}

.waarom-about-split__cols {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.4rem);
}

@media (min-width: 640px) {
  .waarom-about-split__cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }
}

.waarom-about-split__lede {
  margin: 0;
  padding: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(208, 218, 226, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .waarom-about-split__lede {
    padding: 0.85rem 0.35rem 0 0;
  }

  .waarom-about-split__lede:nth-child(2) {
    padding-left: 0.35rem;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    padding-top: 0;
  }
}

.waarom-about-split__lede strong {
  font-weight: 600;
  color: rgba(236, 242, 246, 0.95);
}

.waarom-about-split__full {
  margin: 0;
  padding: 1.1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(188, 200, 210, 0.88);
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  border-top: 1px solid rgba(0, 255, 255, 0.14);
}

.waarom-about-split__full a {
  color: rgba(102, 255, 255, 0.95);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}

.waarom-about-split__full a:hover {
  color: var(--teal);
  text-decoration: underline;
}

@media (min-width: 900px) {
  .waarom-about-split__card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: clamp(1.25rem, 2.5vw, 1.85rem);
    row-gap: clamp(0.85rem, 2vw, 1.15rem);
    align-items: start;
  }

  .waarom-about-split__media {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
    min-height: 12rem;
  }

  .waarom-about-split__body {
    display: contents;
  }

  .waarom-about-split__head {
    grid-column: 2 / span 2;
    grid-row: 1;
    margin: 0;
    padding-bottom: 0.15rem;
  }

  .waarom-about-split__cols {
    grid-column: 2 / span 2;
    grid-row: 2;
    align-self: start;
  }

  .waarom-about-split__full {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: min(44rem, 100%);
    padding-top: 1.25rem;
    margin-top: 0.35rem;
  }

  .waarom-about-split__lede {
    border-top: none;
    padding-top: 0.65rem;
    min-height: 100%;
  }

  .waarom-about-split__lede:first-child {
    padding-right: 1rem;
  }

  .waarom-about-split__lede:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 1.1rem;
  }
}

@media (max-width: 899px) {
  .waarom-about-split__card {
    grid-template-columns: 1fr;
  }

  .waarom-about-split__lede:nth-child(2) {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.85rem;
  }
}

.waarom-philosophy {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.waarom-philosophy__card {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.35rem, 3vw, 2rem);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(252, 253, 254, 0.97) 0%, rgba(236, 242, 246, 0.94) 100%);
  border: 1px solid rgba(12, 18, 24, 0.08);
  box-shadow: 0 20px 56px -28px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .waarom-philosophy__card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    padding: clamp(2rem, 3.5vw, 2.75rem) clamp(2rem, 3.5vw, 3rem);
  }
}

.waarom-philosophy__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.32rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(55, 65, 75, 0.85);
  border: 1px solid rgba(12, 24, 32, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.85);
}

.waarom-philosophy__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5e5, #2dd4bf);
}

.waarom-philosophy__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(15, 23, 30, 0.96);
}

.waarom-philosophy__body p {
  margin: 0 0 0.95rem;
  font-size: 0.95rem;
  line-height: 1.68;
  color: rgba(45, 55, 65, 0.92);
}

.waarom-philosophy__body p:last-of-type {
  margin-bottom: 1.15rem;
}

.waarom-philosophy__body strong {
  font-weight: 700;
  color: rgba(20, 30, 40, 0.98);
}

.waarom-philosophy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.waarom-philosophy__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.62rem 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(35, 45, 55, 0.94);
  border-bottom: 1px solid rgba(12, 24, 32, 0.08);
}

.waarom-philosophy__list li:first-child {
  border-top: 1px solid rgba(12, 24, 32, 0.08);
}

.waarom-philosophy__check {
  flex-shrink: 0;
  margin-top: 0.12rem;
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(0, 120, 120, 0.98);
  background: rgba(0, 255, 255, 0.12);
  border: 1px solid rgba(0, 200, 200, 0.25);
}

.page-waarom__content {
  padding-top: clamp(2rem, 4.5vw, 3rem);
  padding-bottom: 0.25rem;
}

.page-waarom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3vw, 2.15rem);
}

@media (min-width: 880px) {
  .page-waarom__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.35rem, 2.8vw, 2.35rem);
    row-gap: clamp(1.65rem, 3.2vw, 2.65rem);
    align-items: stretch;
  }
}

/* Waarom: twee tekstblokken — desktop grid, mobiel horizontale carousel */
.page-waarom__mosaic-carousel {
  margin-bottom: 0;
}

.page-waarom__mosaic-carousel-viewport {
  min-width: 0;
}

.page-waarom__mosaic-carousel-track {
  display: flex;
  gap: 0;
  min-width: 0;
}

.page-waarom__mosaic-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.page-waarom__mosaic-carousel .service-showcase--waarom-text {
  margin-bottom: 0;
}

.page-waarom__mosaic-carousel-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-bottom: 0.15rem;
}

.page-waarom__mosaic-carousel-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.page-waarom__mosaic-carousel-dot.is-active {
  background: rgba(0, 255, 255, 0.85);
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.35),
    0 0 14px rgba(0, 255, 255, 0.35);
  transform: scale(1.15);
}

.page-waarom__mosaic-carousel-dot:focus-visible {
  outline: 2px solid rgba(0, 255, 255, 0.65);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .page-waarom__mosaic-carousel-viewport {
    scroll-behavior: auto;
  }
}

@media (max-width: 879px) {
  .page-waarom__mosaic-carousel-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    /* pan-y: pagina kan verticaal scrollen terwijl je op de carousel staat */
    touch-action: pan-x pan-y;
  }

  .page-waarom__mosaic-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .page-waarom__mosaic-carousel-track {
    width: 200%;
  }

  .page-waarom__mosaic-carousel-slide {
    flex: 0 0 50%;
    box-sizing: border-box;
  }

  .page-waarom__mosaic-carousel-nav {
    display: flex;
  }
}

@media (min-width: 880px) {
  .page-waarom__mosaic-carousel-viewport {
    overflow: visible;
  }

  .page-waarom__mosaic-carousel-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.35rem, 2.8vw, 2.35rem);
    row-gap: clamp(1.65rem, 3.2vw, 2.65rem);
    align-items: stretch;
    width: auto;
  }

  .page-waarom__mosaic-carousel-slide {
    flex: none;
    scroll-snap-align: unset;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-waarom__content > .waarom-philosophy {
    margin-top: clamp(1.35rem, 2.8vw, 2.15rem);
  }
}

/* Herbruikbare zachte neon-scheiding (niet volle breedte) */
.site-soft-neon-rule {
  display: block;
  width: min(11rem, 52%);
  height: 2px;
  margin: clamp(1.15rem, 3.5vw, 1.65rem) auto;
  border: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 255, 255, 0.2) 22%,
    rgba(0, 255, 255, 0.55) 50%,
    rgba(0, 255, 255, 0.2) 78%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.22);
}

@media (min-width: 880px) {
  .site-soft-neon-rule--waarom-mobile-only {
    display: none;
  }
}

.page-waarom__content .service-showcase--waarom-text {
  margin-bottom: clamp(1.65rem, 3.8vw, 2.5rem);
}

.page-waarom__content .page-waarom__grid .service-showcase--waarom-text,
.page-waarom__content .page-waarom__mosaic-carousel .service-showcase--waarom-text {
  margin-bottom: 0;
}

.page-waarom__content .service-showcase__card--waarom-plain {
  display: block;
  padding: clamp(1.15rem, 2.6vw, 1.75rem) 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Waarom: rustige typografie — geen fel neon, wel leesbaar en netjes */
.page-waarom__content .service-showcase__title {
  margin: 0 0 0.65rem;
  padding-bottom: 0.5rem;
  max-width: 42rem;
  font-size: clamp(1.12rem, 2.15vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.28;
  color: rgba(236, 242, 246, 0.96);
  text-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.page-waarom__content .service-showcase__desc {
  margin: 0 0 0.25rem;
  max-width: 40rem;
  font-size: 0.9rem;
  line-height: 1.72;
  font-weight: 400;
  color: rgba(186, 198, 208, 0.92);
}

.page-waarom__content .service-showcase__desc strong {
  font-weight: 600;
  color: rgba(218, 228, 236, 0.95);
}

.waarom-stats {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 1.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 1.1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.waarom-stats__item {
  margin: 0;
  padding: 0;
}

.waarom-stats__value {
  display: block;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(102, 255, 255, 0.95);
  text-shadow: 0 0 36px rgba(0, 255, 255, 0.12);
}

.waarom-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(188, 200, 210, 0.88);
}

.page-waarom__content .waarom-stats {
  margin-top: 1.1rem;
  padding-top: 1rem;
  gap: 0.85rem 1.75rem;
  border-top-color: rgba(255, 255, 255, 0.06);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 44rem;
}

@media (max-width: 520px) {
  .page-waarom__content .waarom-stats {
    grid-template-columns: 1fr;
  }
}

.page-waarom__content .waarom-stats__item {
  padding: 0.35rem 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.page-waarom__content .waarom-stats__value {
  font-size: clamp(0.95rem, 1.65vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: rgba(140, 220, 218, 0.9);
  text-shadow: none;
}

.page-waarom__content .waarom-stats__label {
  margin-top: 0.28rem;
  font-size: 0.76rem;
  line-height: 1.42;
  color: rgba(168, 182, 194, 0.82);
}

.waarom-philosophy__card--plain {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}

@media (min-width: 900px) {
  .waarom-philosophy__card--plain {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
  }
}

.waarom-philosophy__card--plain .waarom-philosophy__badge {
  background: rgba(8, 12, 16, 0.45);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
}

.waarom-philosophy__card--plain .waarom-philosophy__title {
  color: rgba(244, 248, 248, 0.96);
}

.waarom-philosophy__card--plain .waarom-philosophy__body p {
  color: rgba(210, 220, 228, 0.9);
}

.waarom-philosophy__card--plain .waarom-philosophy__body strong {
  color: rgba(244, 248, 248, 0.95);
}

.waarom-philosophy__card--plain .waarom-philosophy__list li {
  color: rgba(220, 228, 234, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.waarom-philosophy__card--plain .waarom-philosophy__list li:first-child {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.waarom-stats--tight {
  margin-top: 1.5rem;
}

/* ========== Mobiel ≤899px: globale typografie + formulieren/CTA (alle pagina’s) ========== */
@media (max-width: 899px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    font-size: 0.9375rem;
    line-height: 1.58;
  }

  .page {
    padding-top: calc(var(--topbar-h) + 1.25rem);
    padding-bottom: 2.75rem;
  }

  /* Hero-secties tot boven (geen dubbele top-offset); niet op home (eigen layout) */
  .page--diensten,
  .page--website,
  .page--werk,
  .page--reclame,
  .page--seo,
  .page--waarom-valtex,
  .page--contact,
  .page--case-study {
    padding-top: 0;
  }

  .section-title {
    font-size: clamp(1.3rem, 4.8vw, 1.78rem);
    line-height: 1.2;
    letter-spacing: -0.016em;
    margin-bottom: 0.7rem;
  }

  .section-lead {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.45rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-head--tight {
    margin-bottom: 1.4rem;
  }

  .diensten-hero-simple__title {
    font-size: clamp(1.65rem, 5.4vw, 2.28rem);
    line-height: 1.12;
  }

  #diensten-hero-cinema .diensten-hero-simple__title {
    font-size: clamp(1.62rem, 5.8vw, 2.32rem);
  }

  .diensten-hero-simple__lead,
  #diensten-hero-cinema .diensten-hero-simple__lead {
    font-size: clamp(0.86rem, 3.6vw, 0.98rem);
    line-height: 1.55;
  }

  .diensten-hero-simple__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .diensten-intro-heading {
    font-size: clamp(1.08rem, 3.8vw, 1.42rem);
    line-height: 1.36;
  }

  #waarom-hero.diensten-hero-simple .diensten-hero-simple__title-line {
    font-size: clamp(1.72rem, 6vw, 2.45rem);
    line-height: 1.1;
  }

  #waarom-hero.diensten-hero-simple .diensten-hero-simple__lead {
    font-size: clamp(0.74rem, 3.1vw, 0.86rem);
    line-height: 1.52;
    max-width: min(34rem, 100%);
  }

  .page-hero__title {
    font-size: clamp(1.35rem, 4.6vw, 1.85rem);
    line-height: 1.22;
  }

  .contact-intro__title {
    font-size: clamp(1.32rem, 4.7vw, 1.88rem);
    line-height: 1.24;
  }

  .contact-intro__lead,
  .contact-intro__copy {
    font-size: clamp(0.86rem, 3.5vw, 0.98rem);
    line-height: 1.52;
  }

  .cta-section__title,
  .cta-section__title--page {
    font-size: clamp(1.22rem, 4.4vw, 1.68rem);
    line-height: 1.22;
  }

  .cta-section__lead,
  .cta-section__body p {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .cta-section__checklist li {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .legal {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .footer__tagline,
  .footer__nav a,
  .footer__contact-list a,
  .footer__heading {
    font-size: 0.88rem;
  }

  .footer__copy {
    font-size: 0.72rem;
  }

  .process-timeline__title {
    font-size: clamp(0.98rem, 3.5vw, 1.12rem);
    line-height: 1.28;
  }

  .process-timeline__text {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .case-story-hero .page-hero__title {
    font-size: clamp(1.2rem, 4.2vw, 1.65rem);
  }

  .page-hero__lead {
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    line-height: 1.5;
  }

  .case-story-hero {
    min-height: clamp(260px, 50svh, 440px);
  }

  .case-story-hero__content {
    padding-top: calc(var(--topbar-h) + 0.35rem);
    padding-bottom: clamp(0.85rem, 2.5vw, 1.25rem);
  }

  .btn,
  .btn--primary,
  .btn--ghost {
    font-size: 0.875rem;
  }

  .cta-form__field span,
  .cta-form input,
  .cta-form textarea,
  .cta-form select {
    font-size: 0.9rem;
  }

  .service-showcase__card h2,
  .service-showcase__card h3 {
    font-size: clamp(1.05rem, 3.4vw, 1.22rem);
  }

  .service-showcase__card p,
  .service-showcase__list li {
    font-size: 0.88rem;
    line-height: 1.52;
  }
}

/* iPhone-ширини: той самий layout як на Pro Max, але пропорційно менший */
@media (max-width: 430px) {
  html {
    /* 430px = еталон (scale=1), менші екрани масштабуються вниз */
    font-size: clamp(14.2px, calc(16px * (100vw / 430)), 16px);
  }
}

/* Desktop: korte partner-label verborgen */
.hero__partners-label__short {
  display: none;
}

/* ——— Home (page-home): compacte hero, vaste viewport-hoogte ——— */
@media (max-width: 899px) {
  /* svh wint waar ondersteund: stabieler bij mobiele browser-chroom; vh als fallback */
  .page-home .hero--cinema {
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    min-height: 100svh;
    height: 100svh;
    max-height: 100svh;
    overflow: hidden;
    margin-bottom: clamp(1.35rem, 4.5vw, 2.25rem);
  }

  .page-home .hero__viewport {
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }

  .page-home .hero__slides,
  .page-home .hero__slides-track,
  .page-home .hero__slide {
    height: 100%;
  }

  /* Tekst links; blok visueel verticaal gecentreerd in de hero (partners/pager blijven absolute) */
  .page-home .hero__stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    /* Iets lager dan visueel midden — alleen mobiel */
    padding-top: calc(var(--topbar-h) + 0.35rem + clamp(0.55rem, 2.2vw, 1rem));
    padding-bottom: max(5.35rem, calc(env(safe-area-inset-bottom) + 4.5rem));
    padding-left: clamp(1rem, 5vw, 2.5rem);
    padding-right: clamp(1rem, 5vw, 2.5rem);
    box-sizing: border-box;
  }

  .page-home .hero__stage-inner {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .page-home .hero__headline {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.72rem, 4.5vw + 0.75rem, 2.42rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0.012em;
    margin-bottom: 0.28rem;
    text-align: left;
  }

  .page-home .hero__title-stack {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    align-items: flex-start;
    text-align: left;
  }

  .page-home .hero__title-line {
    font-weight: 800;
    line-height: 1.28;
    padding-bottom: 0.08em;
  }

  .page-home .hero__title-line--sub {
    white-space: normal;
    text-wrap: balance;
    font-size: 0.86em;
    letter-spacing: 0.015em;
    max-width: 100%;
  }

  .page-home .hero__eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.17em;
    margin-bottom: 0.15rem;
  }

  .page-home .hero__lede {
    font-size: clamp(0.72rem, 2.85vw, 0.84rem);
    line-height: 1.42;
    margin-bottom: 0.32rem;
  }

  .page-home .hero__rating {
    margin-bottom: 0.48rem;
    padding: 0.25rem 0.5rem;
  }

  .page-home .hero__stars {
    font-size: 0.72rem;
  }

  .page-home .hero__rating-text {
    font-size: 0.64rem;
  }

  .page-home .btn--hero-contact {
    padding: 0.42rem 0.82rem;
    font-size: 0.78rem;
  }

  .page-home .hero__cta-link {
    font-size: 0.78rem;
  }

  .page-home .hero__cta-meta {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .page-home .hero__cta-row {
    gap: 0.25rem 0.32rem;
  }

  .page-home .hero__partners {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    gap: 0.3rem;
    max-width: min(94vw, 17rem);
  }

  .page-home .hero__partners-label__full {
    display: none;
  }

  .page-home .hero__partners-label__short {
    display: inline;
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .page-home .hero__partners-list {
    gap: 0.48rem;
  }

  .page-home .hero__partners-icon {
    width: 20px;
    height: 20px;
  }

  .page-home .hero__partners-icon--code {
    width: 24px;
    height: 24px;
  }

  .page-home .hero__pager--fixed {
    bottom: max(4.35rem, calc(env(safe-area-inset-bottom) + 3.6rem));
  }
}

/* Home hero: smallere iPhone (o.a. Pro vs Pro Max) — “Performance Marketing” op één regel, iets compactere copy */
@media (max-width: 428px) {
  .page-home .hero__headline {
    font-size: clamp(1.48rem, 3.65vw + 0.42rem, 1.78rem);
    letter-spacing: 0.008em;
  }

  .page-home .hero__title-line--sub {
    white-space: nowrap;
    font-size: 0.78em;
    letter-spacing: 0.01em;
    text-wrap: unset;
  }

  .page-home .hero__lede {
    font-size: clamp(0.66rem, 2.35vw + 0.52rem, 0.76rem);
    line-height: 1.4;
  }

  .page-home .hero__eyebrow {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
}

/* ——— Home: projecten als horizontale carousel (scroll koppelt niet aan pagina) ——— */
@media (max-width: 899px) {
  .page-home .portfolio {
    overflow-x: clip;
    overflow-y: visible;
  }

  .page-home .portfolio .container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .portfolio__head,
  .page-home .portfolio__actions {
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
  }

  .page-home .portfolio__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.85rem;
    margin-top: clamp(1.35rem, 4vw, 2rem);
    margin-left: 0;
    margin-right: 0;
    padding: 0 clamp(0.65rem, 3vw, 1rem) 0.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(0.65rem, 3vw, 1rem);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
  }

  .page-home .portfolio__grid::-webkit-scrollbar {
    display: none;
  }

  .page-home .portfolio__card {
    flex: 0 0 min(84vw, 20.5rem);
    max-width: min(84vw, 20.5rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .page-home .portfolio__card:hover {
    transform: none;
  }

  .page-home .portfolio__card:hover .portfolio__thumb {
    transform: none;
  }
}

/* ——— Mobiel: neon-rand op formulier (alle pagina’s) ——— */
@media (max-width: 899px) {
  .cta-form {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .cta-form input,
  .cta-form textarea,
  .cta-form select,
  .cta-form--glass input,
  .cta-form--glass textarea,
  .cta-form--glass select {
    border: 1px solid rgba(0, 255, 255, 0.58);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.14),
      0 0 18px rgba(0, 255, 255, 0.2);
    background: rgba(4, 10, 12, 0.58);
  }

  .cta-form--glass input:focus,
  .cta-form--glass textarea:focus,
  .cta-form--glass select:focus,
  .cta-form input:focus,
  .cta-form textarea:focus,
  .cta-form select:focus {
    border-color: rgba(0, 255, 255, 0.9);
    box-shadow:
      0 0 0 2px rgba(0, 255, 255, 0.28),
      0 0 22px rgba(0, 255, 255, 0.28);
    background: rgba(4, 12, 14, 0.72);
  }

  /* Diensten: alleen het formulier-blok neon; velden terug naar glass-grijs */
  .page--diensten .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page--diensten .cta-form--glass input,
  .page--diensten .cta-form--glass textarea,
  .page--diensten .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--diensten .cta-form--glass input:focus,
  .page--diensten .cta-form--glass textarea:focus,
  .page--diensten .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* Waarom Valtex: alleen formulierkader neon; velden glass-grijs */
  .page--waarom-valtex .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page--waarom-valtex .cta-form--glass input,
  .page--waarom-valtex .cta-form--glass textarea,
  .page--waarom-valtex .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--waarom-valtex .cta-form--glass input:focus,
  .page--waarom-valtex .cta-form--glass textarea:focus,
  .page--waarom-valtex .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* Home: alleen buitenste formulier neon; velden subtiel (zelfde als Waarom / contact) */
  .page-home .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page-home .cta-form--glass input,
  .page-home .cta-form--glass textarea,
  .page-home .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page-home .cta-form--glass input:focus,
  .page-home .cta-form--glass textarea:focus,
  .page-home .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* Onze werken: alleen formulierkader neon; velden glass-grijs */
  .page--werk .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page--werk .cta-form--glass input,
  .page--werk .cta-form--glass textarea,
  .page--werk .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--werk .cta-form--glass input:focus,
  .page--werk .cta-form--glass textarea:focus,
  .page--werk .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* Case-projecten: alleen buitenste formulierkader neon; velden zonder neon-border */
  .page--case-study .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page--case-study .cta-form--glass input,
  .page--case-study .cta-form--glass textarea,
  .page--case-study .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--case-study .cta-form--glass input:focus,
  .page--case-study .cta-form--glass textarea:focus,
  .page--case-study .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* Website laten maken: alleen formulierkader neon; velden glass-grijs */
  .page--website .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page--website .cta-form--glass input,
  .page--website .cta-form--glass textarea,
  .page--website .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--website .cta-form--glass input:focus,
  .page--website .cta-form--glass textarea:focus,
  .page--website .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* Online reclame: alleen formulierkader neon; velden glass-grijs */
  .page--reclame .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page--reclame .cta-form--glass input,
  .page--reclame .cta-form--glass textarea,
  .page--reclame .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--reclame .cta-form--glass input:focus,
  .page--reclame .cta-form--glass textarea:focus,
  .page--reclame .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* SEO: alleen formulierkader neon; velden glass-grijs */
  .page--seo .cta-form.cta-form--glass {
    border-color: rgba(0, 255, 255, 0.45);
    box-shadow:
      0 0 0 1px rgba(0, 255, 255, 0.2),
      0 0 32px rgba(0, 255, 255, 0.12);
  }

  .page--seo .cta-form--glass input,
  .page--seo .cta-form--glass textarea,
  .page--seo .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--seo .cta-form--glass input:focus,
  .page--seo .cta-form--glass textarea:focus,
  .page--seo .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }

  /* Contact: binnenste .cta-form zonder neon-rand (die zit op .contact-form-split__form); velden glass-grijs */
  .page--contact .contact-form-split__form > .cta-form.cta-form--glass {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.18) inset,
      0 6px 28px -14px rgba(0, 0, 0, 0.4);
  }

  .page--contact .contact-form-split__form .cta-form--glass input,
  .page--contact .contact-form-split__form .cta-form--glass textarea,
  .page--contact .contact-form-split__form .cta-form--glass select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .page--contact .contact-form-split__form .cta-form--glass input:focus,
  .page--contact .contact-form-split__form .cta-form--glass textarea:focus,
  .page--contact .contact-form-split__form .cta-form--glass select:focus {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.32);
  }
}

/* ——— Mobiel: minder GPU / sneller scherm (zelfde look, lichtere blur + geen particles) ——— */
@media (max-width: 899px) {
  .particles-canvas {
    display: none !important;
  }

  .menu-overlay__backdrop {
    backdrop-filter: blur(14px) saturate(118%);
    -webkit-backdrop-filter: blur(14px) saturate(118%);
  }

  .glass-sidebar {
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }

  .header__top.glass-panel--topbar {
    backdrop-filter: blur(12px) saturate(135%);
    -webkit-backdrop-filter: blur(12px) saturate(135%);
  }
}

/* ——— Home: desktop H1 twee regels met gradient; copy-kolom breder zodat “Performance Marketing” past ——— */
@media (min-width: 900px) {
  .page-home .hero__stage {
    grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.62fr);
  }

  .page-home .hero__headline {
    font-size: clamp(2.2rem, 2.85vw + 1rem, 3.85rem);
    font-weight: 800;
    letter-spacing: 0.012em;
    line-height: 1.12;
    text-align: left;
  }

  .page-home .hero__title-line {
    font-weight: 800;
  }

  .page-home .hero__title-stack {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
  }

  .page-home .hero__title-line:first-child {
    display: block;
    width: 100%;
    white-space: nowrap;
  }

  /* Geen forced nowrap: anders knipt “Marketing” af in smalle grid-kolom */
  .page-home .hero__title-line--sub {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
    font-size: 1em;
    margin-top: 0.04em;
  }
}

@media (max-width: 899px) {
  .page-home .hero__title-line--sub {
    font-size: 0.94em;
  }
}

/* ——— Contact mobiel: typografie als Waarom (override globale mobiele font-clamps) ——— */
@media (max-width: 899px) {
  .page--contact .contact-intro.contact-intro--waarom-mobile .contact-intro__eyebrow {
    margin: 0 0 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  .page--contact .contact-intro.contact-intro--waarom-mobile .contact-intro__title {
    margin: 0 0 0.95rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(2rem, 7.5vw, 3.35rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.96);
    text-wrap: balance;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
    filter: none;
    max-width: min(66rem, 100%);
  }

  .page--contact .contact-intro.contact-intro--waarom-mobile .contact-intro__copy,
  .page--contact .contact-intro.contact-intro--waarom-mobile .contact-intro__lead {
    font-size: clamp(0.98rem, 3.2vw, 1.12rem);
    line-height: 1.62;
    color: rgba(210, 220, 228, 0.92);
    max-width: min(50rem, 100%);
  }

  .page--contact .contact-intro.contact-intro--waarom-mobile .contact-intro__lead strong {
    color: rgba(244, 248, 248, 0.96);
  }
}

/* ——— CRM: formulier ↔ online gesprek (zelfde knopkleuren als .btn--primary) ——— */
.cta-form-booking-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-mode-toggle {
  display: inline-flex;
  align-self: flex-start;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.2rem;
  border-radius: var(--radius-full);
  background: rgba(5, 7, 8, 0.45);
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.form-mode-toggle__btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--muted);
  transition: color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-mode-toggle__btn:hover,
.form-mode-toggle__btn:focus-visible {
  color: var(--white);
  outline: none;
}

.form-mode-toggle__btn.is-active {
  color: #041210;
  background-color: var(--teal-dim);
  background-image: linear-gradient(135deg, var(--teal) 0%, var(--teal-dim) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 20px -4px rgba(0, 255, 255, 0.45);
}

.cta-section--contact-booking .form-mode-toggle__btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
}

/* Boekingspaneel zit buiten <form class="cta-form"> — expliciet zelfde glass + inputs */
.cta-form-booking-shell .form-mode-panel--book {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding: clamp(1.2rem, 3vw, 1.75rem) clamp(1.1rem, 2.8vw, 1.65rem);
  border-radius: 22px;
  background: rgba(12, 16, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 8px 32px -12px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  color-scheme: dark;
}

.cta-form-booking-shell .form-mode-panel--book::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  box-sizing: border-box;
  background: linear-gradient(
    125deg,
    rgba(0, 255, 255, 0.45) 0%,
    rgba(102, 255, 255, 0.16) 32%,
    rgba(0, 204, 204, 0.36) 62%,
    rgba(0, 255, 255, 0.42) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.22));
}

.cta-form-booking-shell .form-mode-panel--book > * {
  position: relative;
  z-index: 1;
}

.cta-form-booking-shell .form-mode-panel--book .cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cta-form-booking-shell .form-mode-panel--book .cta-form__field span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(200, 210, 218, 0.88);
}

.cta-form-booking-shell .form-mode-panel--book input,
.cta-form-booking-shell .form-mode-panel--book textarea,
.cta-form-booking-shell .form-mode-panel--book select {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.78rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  outline: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.cta-form-booking-shell .form-mode-panel--book select {
  appearance: none;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.28);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2366ffff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.cta-form-booking-shell .form-mode-panel--book select option {
  color: #111;
  background: #fff;
}

.cta-form-booking-shell .form-mode-panel--book input::placeholder,
.cta-form-booking-shell .form-mode-panel--book textarea::placeholder {
  color: rgba(244, 248, 248, 0.32);
}

.cta-form-booking-shell .form-mode-panel--book input:focus,
.cta-form-booking-shell .form-mode-panel--book textarea:focus,
.cta-form-booking-shell .form-mode-panel--book select:focus {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.36);
}

.cta-form-booking-shell .form-mode-panel--book input[type="date"]::-webkit-calendar-picker-indicator,
.cta-form-booking-shell .form-mode-panel--book input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.15);
  opacity: 0.8;
  cursor: pointer;
}

.form-booking__row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-booking__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-booking__flash {
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
  color: var(--cyan);
}

.form-booking__flash--err {
  color: #fca5a5;
}

.form-booking__slots {
  min-height: 2.5rem;
}

/* ——— Online gesprek wizard (sitekleuren, zelfde glas als .cta-form) ——— */
.vtx-meet-book {
  width: 100%;
}

.vtx-meet-wizard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vtx-meet-wizard__progress {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.vtx-meet-step__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
}

.vtx-meet-step__lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(210, 220, 228, 0.88);
}

.vtx-meet-calnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.vtx-meet-calnav__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-align: center;
  flex: 1;
}

.vtx-meet-calnav__btn {
  flex-shrink: 0;
}

.vtx-meet-cal {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.vtx-meet-cal__dow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0;
}

.vtx-meet-cal__cell {
  position: relative;
  min-height: 2.65rem;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  background: rgba(5, 7, 8, 0.35);
  color: var(--white);
  font: inherit;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vtx-meet-cal__cell:hover:not(:disabled) {
  border-color: rgba(0, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.12) inset;
}

.vtx-meet-cal__cell:disabled {
  cursor: default;
}

/* Volgende/vorige maand: donkerder grijs — duidelijk “niet deze maand” */
.vtx-meet-cal__cell--muted {
  opacity: 1;
  background: rgba(6, 8, 10, 0.88);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(88, 98, 108, 0.98);
}

.vtx-meet-cal__cell--muted .vtx-meet-cal__num {
  color: rgba(82, 92, 102, 0.98);
  font-weight: 600;
}

/* Deze maand, geen venster: streep maar lichter grijs — beter leesbaar */
.vtx-meet-cal__cell--closed:not(.vtx-meet-cal__cell--muted) {
  opacity: 1;
  background: rgba(5, 7, 8, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  text-decoration: line-through;
  text-decoration-color: rgba(160, 175, 190, 0.75);
  color: rgba(175, 190, 205, 0.95);
}

.vtx-meet-cal__cell--closed:not(.vtx-meet-cal__cell--muted) .vtx-meet-cal__num {
  color: rgba(185, 200, 215, 0.98);
}

.vtx-meet-cal__cell--open {
  background: rgba(0, 255, 255, 0.06);
  border-color: rgba(0, 255, 255, 0.22);
}

.vtx-meet-cal__num {
  font-weight: 700;
  font-size: 0.9rem;
}

.vtx-meet-cal__status {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.vtx-meet-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vtx-meet-slot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 5.25rem;
  min-height: 3.35rem;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.32);
  background: rgba(5, 7, 8, 0.65);
  color: var(--white);
  font: inherit;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vtx-meet-slot:hover {
  border-color: rgba(0, 255, 255, 0.55);
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 4px 18px -8px rgba(0, 255, 255, 0.45);
}

.vtx-meet-slot__time {
  font-weight: 700;
  font-size: 0.95rem;
}

.vtx-meet-slot__dur {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dim);
}

.vtx-meet-empty {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: rgba(252, 165, 165, 0.95);
}

.vtx-meet-back {
  margin-top: 0.25rem;
}

.vtx-meet-step__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.75rem;
}

.vtx-meet-optional {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.vtx-meet-step textarea {
  resize: vertical;
  min-height: 4rem;
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  background: rgba(5, 7, 8, 0.45);
  color: var(--white);
  font: inherit;
  padding: 0.65rem 0.75rem;
  width: 100%;
}

.vtx-meet-step textarea:focus-visible {
  outline: 2px solid rgba(0, 255, 255, 0.45);
  outline-offset: 2px;
}
