/* ============================================================
   BYB Advertising — style.css
   Premium Agency Website
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --dark:       #042322;
  --dark-deep:  #021615;
  --accent:     #04cdc4;
  --accent-dim: rgba(4, 205, 196, 0.12);
  --accent-hov: #03b5ad;
  --white:      #ffffff;
  --off-white:  #f6f6f4;
  --gray-100:   #efefed;
  --gray-200:   #e0e0dc;
  --gray-400:   #b0b0aa;
  --gray-500:   #878780;
  --gray-700:   #444440;

  --font:         'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  40px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(4,35,34,0.06);
  --shadow-md: 0 8px 32px rgba(4,35,34,0.10);
  --shadow-lg: 0 24px 64px rgba(4,35,34,0.14);
  --shadow-xl: 0 40px 80px rgba(4,35,34,0.18);

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:    72px;
  --cw:       1200px;
  --cw-wide:  1400px;
  --sp:       clamp(80px, 10vw, 140px);
  --gutter:   clamp(20px, 4vw, 48px);
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   FOCUS VISIBLE
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.52s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: clip-path;
}
.preloader--done {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  pointer-events: none;
}

.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__logo {
  width: 140px;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: pl-logo-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

@keyframes pl-logo-in {
  to { opacity: 1; transform: translateY(0); }
}

.preloader__brand {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  opacity: 0;
  animation: pl-fade-in 0.3s ease 0.3s forwards;
}

@keyframes pl-fade-in {
  to { opacity: 1; }
}

/* Loading bar — onderaan het scherm */
.preloader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-hov), var(--accent));
  animation: pl-fill-bar 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes pl-fill-bar {
  to { width: 100%; }
}

/* Paginawissel fade */
body {
  transition: opacity 0.22s ease;
}
body.page-exit {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .preloader { transition: none; }
  .preloader__logo, .preloader__brand, .preloader__bar-fill {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
  body { transition: none; }
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

@media (pointer: coarse), (max-width: 768px) { body { cursor: auto; } }

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-display {
  font-size: clamp(3.25rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
}
.t-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.t-h3 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.t-body-lg { font-size: clamp(1rem, 1.4vw, 1.125rem); line-height: 1.7; }
.t-body    { font-size: 1rem; line-height: 1.65; }
.t-sm      { font-size: 0.875rem; line-height: 1.55; }
.t-xs      { font-size: 0.75rem; line-height: 1.5; }

.t-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

em { font-style: italic; color: var(--accent); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--sp) 0; }
.section--dark  { background: var(--dark);      color: var(--white); }
.section--gray  { background: var(--off-white); }
.section--deep  { background: var(--dark-deep); color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  min-height: 48px;
  touch-action: manipulation;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-hov);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(4,205,196,0.35);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.06);
}

/* WhatsApp knoppen: icoon stil, tekst schuift */
.btn--wa svg {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.btn--wa:hover svg    { transform: scale(1.08); }
.btn--wa span         { display: inline-block; transition: transform 0.22s ease; }
.btn--wa:hover span   { transform: translateX(4px); }

.btn--ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(4,35,34,0.18);
}
.btn--ghost-dark:hover {
  border-color: var(--dark);
  background: var(--gray-100);
}

.btn svg, .btn .arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }
.btn--wa:hover svg { transform: scale(1.08); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: linear-gradient(to bottom, rgba(2,22,21,0.6) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.4s var(--ease-inout), border-color 0.4s ease, box-shadow 0.4s var(--ease-inout);
}
.nav.scrolled {
  background: rgba(4,35,34,0.97);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.18);
}

.nav__inner {
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.nav__logo {
  z-index: 201;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__pill { display: none; }
.nav__links a {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color 0.18s ease;
  white-space: nowrap;
}
.nav__links a::after { display: none; }
.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__actions .btn--primary {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 22px;
  min-height: 40px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 201;
  transition: background 0.2s ease;
}
.hamburger:hover { background: rgba(255,255,255,0.14); }
.hamburger-icon {
  color: var(--white);
  transition: transform 300ms ease-in-out;
}
.hamburger-icon__path-a {
  stroke-dasharray: 12 63;
  transition: stroke-dasharray 300ms ease-in-out, stroke-dashoffset 300ms ease-in-out;
}
.hamburger.open .hamburger-icon { transform: rotate(-45deg); }
.hamburger.open .hamburger-icon__path-a {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* Mobile drawer overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,18,17,0.70);
  z-index: 198;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 92vw);
  background: #061f1e;
  z-index: 199;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  border-left: 1px solid rgba(255,255,255,0.06);
  box-shadow: -24px 0 64px rgba(0,0,0,0.40);
}
.drawer.open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.drawer__logo { height: 24px; width: auto; opacity: 0.85; }

.drawer__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.drawer__close:hover {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-color: rgba(255,255,255,0.20);
}

.drawer__photo {
  flex-shrink: 0;
  height: 148px;
  overflow: hidden;
  position: relative;
}
.drawer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.78);
}
.drawer__photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, #061f1e);
  pointer-events: none;
}

.drawer__links {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}
.drawer__links a {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.50);
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
  line-height: 1;
}
.drawer__links a:last-child { border-bottom: none; }
.drawer__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.03);
  padding-left: 28px;
}
.drawer__links a.active { color: var(--accent); }

.drawer__footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.drawer__footer .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}
.drawer__socials {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.drawer__socials a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.40);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.drawer__socials a:hover {
  background: rgba(4,205,196,0.10);
  color: var(--accent);
  border-color: rgba(4,205,196,0.25);
}
.drawer__email {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.01em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100dvh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Animated background grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,205,196,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,205,196,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Glowing orbs */
.hero__orb-1 {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,205,196,0.16) 0%, rgba(4,205,196,0.04) 45%, transparent 70%);
  right: -150px; top: 50%;
  transform: translateY(-50%);
  animation: orbDrift 10s ease-in-out infinite;
  will-change: transform;
}
.hero__orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,205,196,0.10) 0%, transparent 70%);
  left: -80px; bottom: 10%;
  animation: orbDrift2 14s ease-in-out infinite;
  will-change: transform;
}

@keyframes orbDrift {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%       { transform: translateY(calc(-50% - 40px)) scale(1.06); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08) translate(20px, -20px); }
}

.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: clamp(48px,7vw,100px) 0;
}

.hero__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}

/* Left copy */
.hero__left {
  min-width: 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero__tagline-row {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 0;
  flex-shrink: 1;
  min-width: 0;
  word-break: break-word;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 0;
  line-height: 1.25;
  padding-bottom: 0.1em;
}

.hero__body {
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.50);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Right mockup */
.hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  will-change: transform;
  animation: floatY 7s ease-in-out infinite;
  contain: layout style;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* Main browser frame */
.browser {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 50px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(4,205,196,0.08);
  display: block;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.browser:hover {
  box-shadow:
    0 0 0 1px rgba(4,205,196,0.3),
    0 50px 100px rgba(0,0,0,0.6),
    0 0 100px rgba(4,205,196,0.18);
  transform: translateY(-3px);
}
.browser__bar {
  background: #1c1c1e;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.browser__dots { display: flex; gap: 6px; }
.browser__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser__dot:nth-child(1) { background: #ff5f57; }
.browser__dot:nth-child(2) { background: #febc2e; }
.browser__dot:nth-child(3) { background: #28c840; }
.browser__url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.browser__screen { background: #f5f5f3; overflow: hidden; }
.browser__screenshot { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* Floating phone beside browser */
.phone-float {
  position: absolute;
  right: -48px;
  bottom: -24px;
  width: 110px;
  background: #1c1c1e;
  border-radius: 22px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 50px rgba(0,0,0,0.5);
  will-change: transform;
  animation: floatPhone 5s ease-in-out infinite 1.2s;
  display: block;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.phone-float:hover {
  box-shadow:
    0 0 0 1px rgba(4,205,196,0.3),
    0 20px 50px rgba(0,0,0,0.5);
}
@keyframes floatPhone {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.phone-screen {
  background: var(--dark);
  border-radius: 16px;
  height: 170px;
  overflow: hidden;
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 14px;
}

/* ============================================================
   CLIENTS / DUAL MARQUEE
   ============================================================ */
.clients-section {
  background: var(--dark);
  padding: 56px 0;
  overflow: hidden;
  border-top:    1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.clients-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 var(--container-pad, 24px);
}

.clients-header__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12));
}
.clients-header__line--r {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.12));
}

.clients-header__text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}

.clients-ticker {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ticker-row {
  display: flex;
  width: max-content;
}

.ticker-row--fwd { animation: tickFwd 55s linear infinite; will-change: transform; }
.ticker-row--rev { animation: tickRev 45s linear infinite; will-change: transform; }

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

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 18px;
  white-space: nowrap;
}

.ticker-name {
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.14);
  cursor: default;
}

.ticker-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sh { margin-bottom: clamp(48px,6vw,80px); }
.sh--center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

.sh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.sh__eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}

.sh__title { color: var(--dark); }
.sh__title em { font-style: italic; color: var(--accent); }
.sh__title.on-dark { color: var(--white); }

.sh__body {
  margin-top: 16px;
  color: var(--gray-500);
  max-width: 560px;
}
.sh--center .sh__body { margin-left: auto; margin-right: auto; }
.sh__body.on-dark { color: rgba(255,255,255,0.48); }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-card {
  position: relative;
  background: var(--off-white);
  border-radius: var(--r-2xl);
  padding: clamp(36px,4.5vw,60px);
  overflow: hidden;
  border: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out), border-color 0.4s ease;
}
.svc-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: rgba(4,205,196,0.18);
}


.svc-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.svc-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.svc-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.svc-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.svc-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.svc-card__list li::before {
  content: '›';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  width: auto; height: auto;
  background: none;
  border: none;
  border-radius: 0;
}

.svc-card__num {
  position: absolute;
  bottom: -16px; right: 20px;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(4,205,196,0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   SHOWCASE (projecten)
   ============================================================ */
.showcase-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(40px, 5vw, 64px);
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 70vw);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(4,205,196,0.38) 25%,
    rgba(4,205,196,0.38) 75%,
    transparent
  );
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
  align-items: start;
}

.showcase-card { display: flex; flex-direction: column; gap: 20px; }
.showcase-card--offset { margin-top: 0; }

.showcase-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.showcase-card__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}

.showcase-card__type {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  margin-top: 3px;
}

.showcase-card__badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(4,205,196,0.1);
  border: 1px solid rgba(4,205,196,0.25);
  border-radius: var(--r-full);
  padding: 5px 13px;
  white-space: nowrap;
}

/* ============================================================
   PROCESS / WERKWIJZE
   ============================================================ */
.process { background: var(--off-white); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.process__step {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 22px 28px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.32s var(--ease-out), transform 0.32s var(--ease-out), border-color 0.25s ease;
}
.process__step:hover {
  box-shadow: 0 16px 48px rgba(4,35,34,0.10);
  transform: translateY(-5px);
  border-color: rgba(4,205,196,0.35);
}
.process__step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(4,205,196,0.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease-out);
}
.process__step:hover::after { transform: scaleX(1); }

.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(4,205,196,0.1);
  border: 1px solid rgba(4,205,196,0.25);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 20px;
}

.process__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.process__step-desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--gray-500);
}


/* ============================================================
   TESTIMONIALS — vertical scrolling card columns
   ============================================================ */
.tc-section { background: var(--dark); overflow: hidden; }
.tc-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  margin-bottom: 20px;
}
.tc-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.42);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 440px;
  margin-inline: auto;
  text-align: center;
}
.tc-columns {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-height: 660px;
  overflow: hidden;
  margin-top: 56px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.tc-col { flex-shrink: 0; width: 300px; }
.tc-col--md { display: none; }
.tc-col--lg { display: none; }

.tc-track {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: tc-scroll 24s linear infinite;
  will-change: transform;
}
.tc-track--b { animation-duration: 30s; }
.tc-track--c { animation-duration: 27s; }
@keyframes tc-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.tc-col:hover .tc-track { animation-play-state: paused; }

.tc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px;
  cursor: default;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.25s ease, border-color 0.25s ease;
}
.tc-card:hover {
  transform: scale(1.03) translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
}
.tc-card blockquote { margin: 0; padding: 0; }
.tc-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.72;
  margin: 0 0 20px;
}
.tc-card__author {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.tc-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  display: block;
  line-height: 1.3;
}
.tc-card span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.36);
  display: block;
  margin-top: 2px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final__orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,205,196,0.14) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbDrift 12s ease-in-out infinite;
}
.cta-final__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-final__photo {
  flex-shrink: 0;
  width: 400px;
  align-self: center;
  background: #1a2e2d;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 24px 64px rgba(0,0,0,0.35), 0 0 48px rgba(4,205,196,0.12);
}
.cta-final__photo img {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.cta-final__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
}
.cta-final__title em { color: var(--accent); font-style: italic; }
.cta-final__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.44);
  max-width: 460px;
  margin: 0 0 44px;
  line-height: 1.72;
}
.cta-final__actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.cta-final__note {
  margin-top: 32px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-final__note a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-note-div {
  width: 1px;
  height: 13px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
  display: inline-block;
}

/* ============================================================
   MAPS SECTION
   ============================================================ */
.maps-section { background: var(--off-white); }

.maps-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
}

.maps-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.maps-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.maps-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.maps-info__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--dark);
}

.maps-info__address {
  font-style: normal;
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .maps-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .maps-frame { height: 280px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.footer__inner {
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Top row */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding: 64px 0 56px;
}

/* Brand (left) */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  max-width: 280px;
}
.footer__logo { display: inline-flex; }
.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
}

/* Social icon buttons */
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.60);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer__social-btn:hover {
  background: rgba(4,205,196,0.12);
  border-color: rgba(4,205,196,0.3);
  color: var(--accent);
}

/* Link columns (right) */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex: 1;
}
.footer__col-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 20px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.18s ease;
}
.footer__col ul li a:hover { color: var(--white); }

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__legal li {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.footer__legal li a,
.footer__legal li button {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.18s ease;
}
.footer__legal li a:hover,
.footer__legal li button:hover { color: var(--white); }

/* ============================================================
   TESTIMONIALS — responsive columns
   ============================================================ */
@media (min-width: 768px)  { .tc-col--md { display: block; } }
@media (min-width: 1024px) { .tc-col--lg { display: block; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 320ms; }

/* ============================================================
   STAP-SCROLL — is-upcoming / is-active / is-done
   (na stagger CSS zodat hogere specificiteit wint)
   ============================================================ */
.ds-wsteps .ds-wstep {
  transition:
    opacity     0.45s var(--ease-out),
    transform   0.35s var(--ease-out);
}
.ds-wsteps .ds-wstep.is-upcoming {
  opacity: 0.22;
}
.ds-wsteps .ds-wstep.is-done {
  opacity: 0.42;
}
.ds-wsteps .ds-wstep.is-active {
  opacity: 1;
}

/* Actieve stap: cirkel springt op zoals hover, maar persistent */
.ds-wsteps .ds-wstep.is-active .ds-wstep__num {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.10);
  box-shadow:
    0 0 0 5px var(--white),
    0 0 0 11px rgba(4,205,196,0.45),
    0 0 40px rgba(4,205,196,0.28);
}
.ds-wsteps .ds-wstep.is-active .ds-wstep__body {
  transform: translateX(7px);
}
.ds-wsteps .ds-wstep.is-active .ds-wstep__title {
  color: var(--dark-deep);
}
.ds-wsteps .ds-wstep.is-active .ds-wstep__tag {
  background: rgba(4,205,196,0.16);
  border-color: rgba(4,205,196,0.42);
}

/* Hover werkt altijd, ook op done/upcoming stappen */
.ds-wsteps .ds-wstep:hover {
  opacity: 1;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-row { animation-play-state: paused; }
  .reveal, .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Ultrawide (>1400px) */
@media (min-width: 1400px) {
  .hero__inner .container { max-width: var(--cw-wide); }
  .hero__layout { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* Laptop (≤1100px) */
@media (max-width: 1100px) {
  .hero__layout   { grid-template-columns: 1fr; }
  .hero__right    { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .maps-layout    { grid-template-columns: 1fr; gap: 32px; }
  .maps-frame     { height: 360px; }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .nav__links         { display: none; }
  .nav__actions .btn  { display: none; }
  .hamburger          { display: flex; }

  .hero__layout        { grid-template-columns: 1fr; }
  .hero__right         { display: none; }
  .hero__ctas          { flex-direction: column; }
  .hero__ctas .btn     { width: 100%; justify-content: center; }

  .services__grid      { grid-template-columns: 1fr; }
  .process__steps      { grid-template-columns: 1fr 1fr; }
  .showcase-grid       { grid-template-columns: 1fr; }

  .footer__top         { flex-direction: column; gap: 40px; }
  .footer__brand       { max-width: 100%; }
  .footer__cols        { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer__bottom      { flex-direction: column; align-items: flex-start; gap: 12px; }

  .cta-final__inner    { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .cta-final__photo    { width: 100%; order: -1; border-radius: 16px; }
  .cta-final__photo img { height: 240px; border-radius: 16px; }
  .cta-final__body     { margin: 0 auto 44px; }
  .cta-final__actions  { justify-content: center; flex-direction: column; align-items: center; }
  .cta-final__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-final__note     { justify-content: center; flex-direction: column; align-items: center; gap: 6px; }
  .cta-note-div        { display: none; }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
  .footer__cols   { grid-template-columns: 1fr; gap: 28px; }
  .footer__legal  { flex-direction: column; gap: 10px; }
  .footer__copy   { font-size: 0.6875rem; }
  .maps-frame     { height: 240px; }
}

/* ============================================================
   PRIVACY MODAL
   ============================================================ */
.pm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,22,21,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pm-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.pm-panel {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}

.pm-overlay.open .pm-panel {
  transform: translateY(0);
}

.pm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s ease;
  flex-shrink: 0;
  z-index: 1;
}

.pm-close:hover { background: var(--gray-200); }

.pm-body {
  overflow-y: auto;
  padding: 40px 40px 48px;
  overscroll-behavior: contain;
}

.pm-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.pm-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.05;
}

.pm-meta {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.pm-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 8px;
  letter-spacing: -0.01em;
}

.pm-body h3:first-of-type { margin-top: 0; }

.pm-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.pm-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
}

@media (max-width: 480px) {
  .pm-body { padding: 32px 24px 40px; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(4, 205, 196, 0.45), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(4, 205, 196, 0.6), 0 4px 12px rgba(0,0,0,0.2);
}
.wa-float:active { transform: scale(0.96); }

@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-float svg { width: 24px; height: 24px; }
}


/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding-top: calc(var(--nav-h) + clamp(56px, 7vw, 96px));
  padding-bottom: clamp(32px, 4vw, 52px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero__content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero__eyebrow { margin-bottom: 24px; }

.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}
.page-hero__title em { color: var(--accent); font-style: italic; }

.page-hero__body {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.50);
  max-width: 580px;
  margin: 0 auto 40px;
}

.page-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HERO SCROLL INDICATOR (VED-stijl)
   ============================================================ */
.hero .hero-scroll {
  bottom: clamp(72px, 10vh, 120px);
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 20;
  cursor: pointer;
}
.hero-scroll__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 0.22s ease;
  user-select: none;
}
.hero-scroll:hover .hero-scroll__label {
  color: var(--accent);
}
.hero-scroll__line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-scroll__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollLine 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes scrollLine {
  0%   { top: -60%; opacity: 1; }
  80%  { top: 100%; opacity: 1; }
  81%  { opacity: 0; }
  100% { top: -60%; opacity: 0; }
}
@media (max-width: 768px) {
  .hero-scroll { bottom: 28px; left: clamp(16px, 3vw, 28px); }
  .hero-scroll__line { height: 36px; }
}

/* ============================================================
   PROJECTEN STATS STRIP  (witte sectie projecten.html)
   ============================================================ */
.proj-stats {
  background: var(--white);
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--gray-200);
}
.proj-stats__intro {
  text-align: center;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--gray-500);
  margin-bottom: clamp(32px, 4vw, 48px);
  letter-spacing: -0.01em;
}
.proj-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.proj-stat {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  transition: background 0.22s ease;
}
.proj-stat:hover { background: var(--off-white); }
.proj-stat__num {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 10px;
}
.proj-stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.proj-stat__sub {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.5;
}
@media (max-width: 680px) {
  .proj-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICE DETAIL  (diensten page)
   ============================================================ */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.svc-detail--flip .svc-detail__visual { order: -1; }

.svc-detail__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.svc-detail__label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.svc-detail__title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.svc-detail__title em { color: var(--accent); font-style: italic; }

.svc-detail__lead {
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  line-height: 1.72;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 36px;
}

.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.45;
}
.svc-feature::before {
  content: '›';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  width: auto; height: auto;
  background: none;
  border: none;
  border-radius: 0;
  margin-top: 0;
}

.svc-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  margin-bottom: 32px;
}
.svc-price-tag__amount {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  white-space: nowrap;
}
.svc-price-tag__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

.svc-detail__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* Advertising platform visual */
.ad-visual {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ad-visual__stat {
  text-align: center;
}
.ad-visual__stat strong {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.ad-visual__stat span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.40);
  margin-top: 6px;
  display: block;
}

.ad-visual__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.ad-visual__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.platform-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   USP STRIP  (diensten page)
   ============================================================ */
.usp-strip {
  background: var(--dark);
  padding: clamp(64px, 8vw, 96px) 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usp-item {
  text-align: left;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 40px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(4,205,196,0.14);
  border-radius: var(--r-lg);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  cursor: default;
}

.usp-item:hover {
  border-color: rgba(4,205,196,0.40);
  box-shadow: 0 0 32px rgba(4,205,196,0.07), 0 8px 24px rgba(4,35,34,0.22);
  transform: translateY(-4px);
}

.usp-item__num {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 20px;
}

.usp-item__num::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 2px;
}

.usp-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 12px;
}

.usp-item__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.70;
}

/* ============================================================
   CONTACT STEPS  (contact page)
   ============================================================ */
.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 40px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out), border-color 0.25s ease;
}
.contact-step:hover {
  box-shadow: 0 16px 48px rgba(4,35,34,0.10);
  transform: translateY(-4px);
  border-color: rgba(4,205,196,0.30);
}
.contact-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(4,205,196,0.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.contact-step:hover::after { transform: scaleX(1); }

.contact-step__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
}
.contact-step__num::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
}

.contact-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.contact-step__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ============================================================
   CONTACT INFO  (contact page)
   ============================================================ */
.contact-info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.contact-cta-card {
  background: var(--dark);
  border-radius: var(--r-2xl);
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.contact-cta-card__orb {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,205,196,0.12) 0%, transparent 65%);
  right: -80px; bottom: -80px;
  pointer-events: none;
}
.contact-cta-card__content { position: relative; z-index: 1; }

.contact-cta-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-cta-card__title em { color: var(--accent); font-style: italic; }

.contact-cta-card__body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.72;
  margin-bottom: 32px;
}

.contact-cta-card__actions { display: flex; flex-direction: column; gap: 12px; }

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
a.contact-detail-item:hover {
  border-color: rgba(4,205,196,0.30);
  box-shadow: 0 4px 20px rgba(4,35,34,0.06);
}
a.contact-detail-item:hover .contact-detail-item__value { color: var(--accent); }

.contact-detail-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid rgba(4,205,196,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-item__text { min-width: 0; }

.contact-detail-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 3px;
}

.contact-detail-item__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.18s ease;
  word-break: break-word;
}

/* ============================================================
   INNER PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .svc-detail { gap: 48px; }
}

@media (max-width: 768px) {
  .svc-detail                    { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail--flip .svc-detail__visual { order: 0; }
  .svc-features                  { grid-template-columns: 1fr; }
  .usp-grid                      { grid-template-columns: 1fr; gap: 16px; }
  .usp-item:hover                { transform: none; }
  .contact-steps                 { grid-template-columns: 1fr; gap: 16px; }
  .contact-info-layout           { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__ctas               { flex-direction: column; align-items: center; }
  .page-hero__ctas .btn          { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .svc-price-tag { flex-wrap: wrap; gap: 8px; }
}

/* ============================================================
   LOCATION STRIP
   ============================================================ */
.location-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.location-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  color: rgba(255,255,255,0.40);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
  flex-wrap: wrap;
}
a.location-strip__inner:hover { color: rgba(255,255,255,0.80); }
.location-strip__address { color: rgba(255,255,255,0.60); }
.location-strip__sep { opacity: 0.28; }
.location-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 7px 16px;
  border-radius: var(--r-full);
  transition: background 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}
a.location-strip__inner:hover .location-strip__cta {
  background: var(--accent-hov);
  color: var(--dark);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .location-strip__sep { display: none; }
}

/* ============================================================
   HERO MOCKUP — Grotere VED afbeeldingen
   ============================================================ */
.mockup-wrap {
  max-width: 660px !important;
}
.phone-float {
  right: -52px;
  width: 120px;
}
.phone-screen { height: 186px; }

@media (max-width: 1200px) {
  .phone-float { right: -28px; width: 100px; }
  .phone-screen { height: 156px; }
}

/* ============================================================
   DS-WEBSTEPS — Uitgebreide webdesign-stappen (diensten.html)
   ============================================================ */
.ds-webstep-section {
  background: var(--off-white);
  padding: clamp(64px, 8vw, 96px) 0;
}

.ds-websteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin-top: clamp(40px, 5vw, 56px);
}

/* Horizontale stap stagger: exit rechts→links (default transition-delay) */
.ds-webstep-section .ds-webstep:nth-child(1) { transition-delay: 360ms; }
.ds-webstep-section .ds-webstep:nth-child(2) { transition-delay: 240ms; }
.ds-webstep-section .ds-webstep:nth-child(3) { transition-delay: 120ms; }
.ds-webstep-section .ds-webstep:nth-child(4) { transition-delay: 0ms;   }

/* Entree links→rechts */
.ds-webstep-section.steps-in .ds-webstep { opacity: 1 !important; transform: none !important; }
.ds-webstep-section.steps-in .ds-webstep:nth-child(1) { transition-delay: 0ms;   }
.ds-webstep-section.steps-in .ds-webstep:nth-child(2) { transition-delay: 130ms; }
.ds-webstep-section.steps-in .ds-webstep:nth-child(3) { transition-delay: 260ms; }
.ds-webstep-section.steps-in .ds-webstep:nth-child(4) { transition-delay: 390ms; }

.ds-webstep {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 40px) clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(4,205,196,0.1);
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0.15;
  transform: translateY(14px);
  transition:
    opacity       0.55s var(--ease-out),
    transform     0.55s var(--ease-out),
    border-color  0.32s var(--ease-out),
    box-shadow    0.32s var(--ease-out);
}

.ds-webstep::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(4,205,196,0.1) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s var(--ease-out), opacity 0.3s ease;
  opacity: 0.6;
}

.ds-webstep:hover {
  transform: translateY(-10px);
  border-color: rgba(4,205,196,0.35);
  box-shadow:
    0 32px 64px rgba(4,35,34,0.28),
    0 0 0 1px rgba(4,205,196,0.2),
    0 0 48px rgba(4,205,196,0.06);
}

.ds-webstep:hover::before {
  transform: scale(1.5);
  opacity: 1;
}

.ds-webstep__num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: rgba(4,205,196,0.22);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
  display: inline-block;
  transition: color 0.35s var(--ease-out), transform 0.4s var(--ease-out);
}

.ds-webstep:hover .ds-webstep__num {
  color: var(--accent);
  transform: translateY(-4px);
}

.ds-webstep__title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: transform 0.32s var(--ease-out);
}

.ds-webstep:hover .ds-webstep__title {
  transform: translateX(5px);
}

.ds-webstep__body {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  transition: color 0.25s ease, transform 0.32s var(--ease-out);
}

.ds-webstep:hover .ds-webstep__body {
  color: rgba(255,255,255,0.78);
  transform: translateX(5px);
}

/* ============================================================
   DS-WERKWIJZE — Animated timeline (diensten.html)
   ============================================================ */
.ds-werkwijze-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.ds-werkwijze-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(4,205,196,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.ds-werkwijze-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
  margin-top: clamp(48px, 6vw, 64px);
}

.ds-werkwijze-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.ds-werkwijze-sticky .t-eyebrow { margin-bottom: 20px; display: block; }

.ds-werkwijze-sticky__title {
  font-size: clamp(1.625rem, 2.8vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--dark);
  margin: 0 0 20px;
}
.ds-werkwijze-sticky__title em {
  font-style: italic;
  color: var(--accent);
}

.ds-werkwijze-sticky__body {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ds-wsteps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.ds-wsteps::before {
  content: '';
  position: absolute;
  left: 19px; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(4,205,196,0.04));
  border-radius: 2px;
}

.ds-wstep {
  display: flex;
  gap: 22px;
  padding-bottom: 32px;
  position: relative;
  cursor: default;
}
.ds-wstep:last-child { padding-bottom: 0; }

.ds-wstep__num {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(4,205,196,0.12);
  transition:
    background   0.28s var(--ease-out),
    color        0.28s var(--ease-out),
    box-shadow   0.35s var(--ease-out),
    transform    0.35s var(--ease-out);
}
/* Hover alleen actief als GEEN scroll-status is toegewezen */
.ds-wstep:not(.is-active):not(.is-done):not(.is-upcoming):hover .ds-wstep__num {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.10);
  box-shadow:
    0 0 0 5px var(--white),
    0 0 0 11px rgba(4,205,196,0.45),
    0 0 40px rgba(4,205,196,0.28);
}

.ds-wstep__body {
  padding-top: 10px;
  transition: transform 0.32s var(--ease-out);
}
.ds-wstep:not(.is-active):not(.is-done):not(.is-upcoming):hover .ds-wstep__body {
  transform: translateX(7px);
}

.ds-wstep__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.ds-wstep:not(.is-active):not(.is-done):not(.is-upcoming):hover .ds-wstep__title {
  color: var(--dark-deep);
}

.ds-wstep__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  transition: color 0.2s ease;
}
.ds-wstep:not(.is-active):not(.is-done):not(.is-upcoming):hover .ds-wstep__desc {
  color: var(--gray-700);
}

.ds-wstep__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(4,205,196,0.07);
  border: 1px solid rgba(4,205,196,0.18);
  border-radius: var(--r-full);
  padding: 5px 13px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.ds-wstep:hover .ds-wstep__tag {
  background: rgba(4,205,196,0.16);
  border-color: rgba(4,205,196,0.42);
}


/* Responsive voor nieuwe secties */
@media (max-width: 1100px) {
  .ds-werkwijze-sticky { position: static; }
}
@media (max-width: 900px) {
  .ds-websteps { grid-template-columns: repeat(2, 1fr); }
  .ds-werkwijze-layout { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .ds-websteps               { grid-template-columns: 1fr; }
  .ds-webstep:hover          { transform: none; }
  .usp-item:hover            { transform: none; }
}


/* ============================================================
   BOOKING SECTION — contact.html Google Calendar
   ============================================================ */
.booking-section {
  background: var(--dark);
  padding: clamp(72px, 9vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(4,205,196,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.booking-content { position: sticky; top: calc(var(--nav-h) + 40px); }

.booking-content .t-eyebrow { margin-bottom: 20px; display: block; }

.booking-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
}
.booking-title em { font-style: italic; color: var(--accent); }

.booking-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-feature__icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: var(--r-md);
  background: rgba(4,205,196,0.1);
  border: 1px solid rgba(4,205,196,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.booking-feature__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.booking-feature__text span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.booking-frame-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 64px rgba(4,35,34,0.30);
}

.booking-frame-wrap img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.booking-frame-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.booking-frame-fallback p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 320px;
}

.booking-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.booking-or__line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.booking-or__text { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 1100px) {
  .booking-content { position: static; }
  .booking-frame-wrap iframe { height: 700px; }
}
@media (max-width: 900px) {
  .booking-inner { grid-template-columns: 1fr; }
  .booking-content { position: static; }
  .booking-frame-wrap iframe { height: 640px; }
}

