/* Airco Techniek Oss - marketing site (FTS-stijl) */

:root {
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6b7280;
  --line: #c5d0de;
  --surface: #e8ecf2;
  --surface-2: #dce3ec;
  --surface-3: #cfd8e4;
  --surface-elevated: #f4f7fb;
  --page: #c5ced8;
  --brand: #1d4ed8;
  --brand-hover: #1e40af;
  --brand-soft: #dbeafe;
  --brand-rgb: 29, 78, 216;
  --accent: #0ea5e9;
  --accent-rgb: 14, 165, 233;
  --ok: #047857;
  --shadow: 0 4px 22px rgba(17, 24, 39, 0.1);
  --shadow-lg: 0 22px 52px rgba(29, 78, 216, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, Roboto, Ubuntu, sans-serif;
  --max: 1120px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --hover-duration: 0.32s;
  --hover-lift: -4px;
  --hover-shadow: 0 14px 36px rgba(var(--brand-rgb), 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.62;
  min-height: 100vh;
  background-color: var(--page);
  background-image:
    radial-gradient(ellipse 110% 75% at 8% -15%, rgba(var(--brand-rgb), 0.14), transparent 52%),
    radial-gradient(ellipse 85% 55% at 100% 8%, rgba(var(--accent-rgb), 0.1), transparent 48%),
    linear-gradient(180deg, var(--page) 0%, #b8c4d4 100%);
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  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");
  background-size: 180px 180px;
}

@media (max-width: 768px) { body { background-attachment: scroll; } }
body.home { --header-h: 64px; }

a { color: var(--brand); text-decoration: none; transition: color 0.2s var(--ease-smooth); }
a:hover { text-decoration: underline; }

.wrap { width: min(var(--max), 100% - 2rem); margin-inline: auto; }
.narrow { width: min(640px, 100% - 2rem); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(229, 231, 235, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.5rem 0;
  position: relative;
}

.brand { display: flex; align-items: center; flex-shrink: 0; line-height: 0; text-decoration: none; }
.brand:hover { text-decoration: none; opacity: 0.92; }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--ink); border-radius: 1px; }

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav a { color: var(--ink-soft); padding: 0.35rem 0; white-space: nowrap; }
.nav a:hover { color: var(--brand); text-decoration: none; }
.nav a.nav-current { color: var(--brand); font-weight: 800; }
.nav a.nav-cta {
  margin-left: 0.25rem;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(135deg, var(--brand) 0%, #2563eb 100%);
  color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(var(--brand-rgb), 0.35);
}
.nav a.nav-cta:hover {
  background: var(--brand-hover);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(var(--brand-rgb), 0.4);
}

.accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 55%, #38bdf8 100%);
}

@media (max-width: 900px) {
  .site-header {
    overflow: visible;
    z-index: 1000;
  }

  html.nav-open .site-header {
    z-index: 10050;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 10052;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-total-h, 67px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - var(--header-total-h, 67px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10051;
  }

  .nav.is-open { display: flex; }

  .nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav a.nav-cta { margin: 0.75rem 0 0; text-align: center; }
}

/* Trust strip */
.trust-strip {
  padding: 1.1rem 0;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.1) 0%, var(--surface-2) 42%, rgba(var(--accent-rgb), 0.08) 100%);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.5rem;
}

.trust-strip-inner.lux-marquee {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
}

.trust-strip {
  overflow: hidden;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
}

.trust-stars { color: #f59e0b; letter-spacing: 0.05em; }

/* Hero */
body.home .hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  background: linear-gradient(155deg, #b8c4d6 0%, #c5ced8 42%, #c8d0dc 100%);
}

body.home .hero::before {
  content: '';
  position: absolute;
  inset: -20% 40% 30% -30%;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(var(--brand-rgb), 0.2), transparent 52%),
    radial-gradient(ellipse at 85% 70%, rgba(var(--accent-rgb), 0.12), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.hero-lead { margin: 0 0 1.5rem; font-size: 1.08rem; color: var(--ink-soft); max-width: 52ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-visual { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }

.hero-figure {
  margin: 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
  border: 1px solid var(--line);
}

.hero-photo { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.hero-video {
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  transform: translateZ(0);
}
.media-grade { filter: contrast(1.05) saturate(1.06); }
.hero-parallax { will-change: transform; }

/* Page hero (subpages) */
.page-hero {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(165deg, #e8eaed 0%, var(--surface) 45%, var(--surface-2) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.page-hero-lead { margin: 0; font-size: 1.05rem; color: var(--ink-soft); max-width: 58ch; }

.page-hero--split .page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .page-hero--split .page-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.page-hero-figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.page-hero-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.elektra-page {
  --page-watermark-logo: url("assets/nen3140-logo.png");
  --page-watermark-size: min(52vw, 26rem);
  --page-watermark-opacity: 0.1;
  --page-watermark-position: left clamp(0.5rem, 4vw, 3rem) center;
}

.certificeringen-page {
  --page-watermark-logo: url("assets/brl100-logo.png");
  --page-watermark-size: min(42vw, 22rem);
  --page-watermark-opacity: 0.09;
  --page-watermark-position: right clamp(1.5rem, 6vw, 5rem) center;
}

.elektra-page .page-hero,
.certificeringen-page .page-hero {
  position: relative;
  overflow: hidden;
}

.elektra-page .page-hero::before,
.certificeringen-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-watermark-logo);
  background-repeat: no-repeat;
  background-size: var(--page-watermark-size) auto;
  background-position: var(--page-watermark-position);
  opacity: var(--page-watermark-opacity);
  pointer-events: none;
}

@media (min-width: 880px) {
  .elektra-page .page-hero::before {
    background-size: min(38vw, 22rem) auto;
    background-position: left 8% center;
    opacity: 0.12;
  }
}

.elektra-page .page-hero > *,
.certificeringen-page .page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero--contact .page-hero-grid {
  align-items: start;
  gap: 0.85rem;
}

@media (max-width: 879px) {
  .page-hero--contact .page-hero-figure--portrait {
    display: none;
  }
}

@media (min-width: 880px) {
  .page-hero--contact .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 18.5rem);
    gap: 0.65rem;
    align-items: start;
  }

  /* Foto rechts: iets kleiner, direct naast het formulier */
  .page-hero--contact .page-hero-figure--portrait {
    width: 100%;
    max-width: 18.5rem;
    margin: 0;
    justify-self: start;
  }
}

/* Alleen in dit paneel links: lifestyle-foto (stel op bank), niet over de medewerkster */
.contact-hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  padding: clamp(1.35rem, 3.5vw, 2rem);
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.contact-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/photos/hero.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 12% 42%;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.contact-hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.93) 0%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(248, 250, 252, 0.68) 72%,
    rgba(248, 250, 252, 0.4) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.contact-hero-panel > * {
  position: relative;
  z-index: 2;
}

.contact-hero-panel .page-hero-title {
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 10px rgba(255, 255, 255, 0.85);
}

.contact-hero-panel .page-hero-lead {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.92);
}

.contact-hero-panel--form {
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.1rem 1.15rem;
  min-height: 0;
}

.contact-hero-panel--form .page-hero-title {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
}

.contact-hero-panel--form .page-hero-lead {
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-hero-form {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.contact-hero-panel--form .login-form--compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.55rem;
}

.contact-hero-panel--form .login-form--compact .field--full,
.contact-hero-panel--form .login-form--compact .form-btn,
.contact-hero-panel--form .login-form--compact .form-message,
.contact-hero-panel--form .login-form--compact .hp-field {
  grid-column: 1 / -1;
}

.contact-hero-panel--form .field span {
  font-size: 0.72rem;
}

.contact-hero-panel--form .field input,
.contact-hero-panel--form .field textarea {
  padding: 0.5rem 0.65rem;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.92);
}

.contact-hero-panel--form .field textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.contact-hero-panel--form .form-btn {
  margin-top: 0.1rem;
  width: auto;
  min-width: 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.contact-hero-panel--form .form-message {
  min-height: 1rem;
  font-size: 0.82rem;
}

@media (max-width: 519px) {
  .contact-hero-panel--form .login-form--compact {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 880px) {
  .page-hero--contact .contact-hero-panel--form {
    align-self: start;
  }
}

.page-hero-figure--portrait img {
  aspect-ratio: 375 / 500;
  object-fit: cover;
  object-position: center top;
}

.page-hero-figure--logo-3d {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
  display: block;
  line-height: 0;
}

.page-hero-figure--logo-3d .logo-3d-face img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}

.logo-3d-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.logo-3d-watermarks {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  width: 100%;
  height: 100%;
  min-height: 0;
  pointer-events: none;
}

.logo-3d-watermarks::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 42% 38% at 50% 50%,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 72%
  );
  pointer-events: none;
}

.page-hero-figure--logo-3d .logo-3d-watermark {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  opacity: 0.4;
  filter: grayscale(12%) contrast(0.95) saturate(0.9);
}

.logo-3d-watermark:nth-child(1) { object-position: center 25%; }
.logo-3d-watermark:nth-child(2) { object-position: center 20%; }
.logo-3d-watermark:nth-child(3) { object-position: center 30%; }
.logo-3d-watermark:nth-child(4) { object-position: center 28%; }

.logo-3d-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.logo-3d-stage .logo-3d-spinner {
  pointer-events: auto;
}

.logo-3d-spinner {
  position: relative;
  width: min(86%, 340px);
  aspect-ratio: 15 / 4;
  height: auto;
  transform-style: preserve-3d;
  animation: logo-3d-spin 14s linear infinite;
  will-change: transform;
}

.logo-3d-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: 12px;
  background: transparent;
  border: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.logo-3d-face--front {
  transform: translateZ(18px);
}

.logo-3d-face--back {
  transform: rotateY(180deg) translateZ(18px);
}

.logo-3d-face--back img {
  opacity: 1;
  filter: none;
}

.logo-3d-face img {
  filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.18));
}

.logo-3d-shine {
  position: absolute;
  inset: -8% -12%;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(14, 165, 233, 0.08) 52%,
    transparent 62%
  );
  animation: logo-3d-shine 14s linear infinite;
  mix-blend-mode: soft-light;
}

.logo-3d-shadow {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 72%;
  height: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.2) 0%, transparent 72%);
  animation: logo-3d-shadow 14s linear infinite;
  pointer-events: none;
}

@keyframes logo-3d-spin {
  from {
    transform: rotateX(14deg) rotateY(0deg);
  }
  to {
    transform: rotateX(14deg) rotateY(360deg);
  }
}

@keyframes logo-3d-shine {
  from {
    transform: translateX(-18%) rotate(0deg);
    opacity: 0.35;
  }
  50% {
    opacity: 0.75;
  }
  to {
    transform: translateX(18%) rotate(0deg);
    opacity: 0.35;
  }
}

@keyframes logo-3d-shadow {
  0%, 100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.9;
  }
  25%, 75% {
    transform: translateX(-50%) scaleX(0.55);
    opacity: 0.35;
  }
  50% {
    transform: translateX(-50%) scaleX(0.35);
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-3d-spinner,
  .logo-3d-shine,
  .logo-3d-shadow {
    animation: none;
  }

  .logo-3d-spinner {
    transform: rotateX(10deg);
  }

  .logo-3d-face--back {
    display: none;
  }
}

.page-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .page-split { grid-template-columns: 0.95fr 1.05fr; }
  .page-split--reverse { direction: rtl; }
  .page-split--reverse > * { direction: ltr; }
}

.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.photo-duo figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  line-height: 0;
}

.photo-duo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.photo-duo figcaption {
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--surface-elevated);
  text-align: center;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  list-style: none;
  padding: 0;
}

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

.photo-gallery li {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  line-height: 0;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out-expo);
}

.photo-gallery li:hover img {
  transform: scale(1.04);
}

/* Project carousel (gerealiseerde projecten) */
.project-carousel {
  margin-top: 1.25rem;
  --project-visible: 2;
  --project-gap: 0.75rem;
}

@media (min-width: 640px) {
  .project-carousel { --project-visible: 4; }
}

.project-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.project-carousel-track {
  display: flex;
  gap: var(--project-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.55s var(--ease-out-expo);
  will-change: transform;
}

.project-carousel-slide {
  flex: 0 0 calc((100% - (var(--project-visible) - 1) * var(--project-gap)) / var(--project-visible));
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  line-height: 0;
}

.project-carousel-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out-expo);
}

.project-carousel-slide:hover img {
  transform: scale(1.04);
}

.project-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.project-carousel-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-elevated);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.project-carousel-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.project-carousel-dots {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.project-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
}

.project-carousel-dot.is-active {
  background: var(--brand);
}

.project-carousel--static .project-carousel-viewport {
  overflow: visible;
}

.project-carousel--static .project-carousel-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--project-gap);
  transform: none !important;
}

@media (min-width: 640px) {
  .project-carousel--static .project-carousel-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-carousel--static .project-carousel-controls {
  display: none;
}

/* Sections */
.section { padding: clamp(2rem, 4vw, 3rem) 0; }

.section-alt {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-3) 100%);
  border-block: 1px solid rgba(15, 23, 42, 0.07);
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-lead { margin: 0 0 1.25rem; color: var(--ink-soft); max-width: 62ch; }
.prose { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.prose + .feature-grid, .prose + .login-form { margin-top: 1.25rem; }

.checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  background: var(--ok);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Cards & grids */
.feature-grid {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-card {
  margin: 0;
  padding: 1.25rem 1.15rem;
  background: var(--surface-elevated);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth), transform 0.28s var(--ease-smooth);
}

.feature-card:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: var(--hover-shadow);
  transform: translateY(var(--hover-lift));
}

.feature-card h3 { margin: 0 0 0.45rem; font-size: 1rem; font-weight: 800; color: var(--ink); }
.feature-card p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.45; }

.feature-card--media {
  padding: 0;
  overflow: hidden;
}

.feature-card-media {
  margin: 0;
  line-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card-body {
  padding: 1.15rem 1.15rem 1.25rem;
}

.feature-card--media h3,
.feature-card--media p {
  margin-left: 0;
  margin-right: 0;
}

.card-link { text-decoration: none; color: inherit; display: block; }
.card-link:hover { text-decoration: none; }

.split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split-row { grid-template-columns: 1fr 1fr; }
}

.split-figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.split-figure img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* Brands */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.brand-card {
  flex: 1 1 200px;
  padding: 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
}

.brand-card-logo img {
  width: auto;
  max-width: 100%;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}

.brand-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 800; color: var(--brand); }
.brand-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* Reviews */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.reviews-meta { font-size: 0.9rem; color: var(--muted); }

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s var(--ease-out-expo);
}

.review-card {
  flex: 0 0 100%;
  padding: 1.25rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 140px;
}

.review-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
}

.review-card cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
}

.reviews-dot.is-active { background: var(--brand); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.team-card {
  padding: 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.team-card h3 { margin: 0 0 0.35rem; font-size: 1rem; font-weight: 800; }
.team-card p { margin: 0; font-size: 0.85rem; color: var(--muted); }

.team-grid--photos {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.team-card--photo {
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.team-card-photo {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s var(--ease-out-expo);
}

.team-card-photo img[src*='team-niek'] { object-position: center 28%; }
.team-card-photo img[src*='team-johan'] { object-position: center 18%; }
.team-card-photo img[src*='team-karin'] { object-position: center 22%; }
.team-card-photo img[src*='team-trudy'] { object-position: center 30%; }

.team-card--avatar-only {
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.team-card--avatar-only .team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  flex-shrink: 0;
}

.team-card--avatar-only .team-avatar-wrap {
  margin: 0;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--brand-soft), var(--surface-2));
}

.team-card--avatar-only h3,
.team-card--avatar-only > p {
  padding: 0 1rem;
}

.team-card--avatar-only h3 {
  margin: 1rem 0 0.35rem;
}

.team-card--avatar-only > p {
  margin: 0 0 1.15rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.team-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 48%);
  opacity: 0.85;
  transition: opacity 0.35s;
  pointer-events: none;
}

.team-card--photo:hover .team-card-photo img {
  transform: scale(1.06);
}

.team-card--photo:hover .team-card-photo::after {
  opacity: 1;
}

.team-card-body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
}

.team-card--photo .team-card-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.team-card--photo .team-card-body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
}

.team-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-soft), var(--surface-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease-smooth), box-shadow 0.22s var(--ease-smooth), transform 0.22s var(--ease-smooth);
  text-decoration: none;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(var(--brand-rgb), 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand) 100%);
}
.btn-secondary { background: var(--surface-elevated); color: var(--brand); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; }

/* CTA band */
.cta-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  color: #fff;
  text-align: center;
}

.cta-band h2 { margin: 0 0 0.5rem; font-size: clamp(1.35rem, 3vw, 1.65rem); font-weight: 800; }
.cta-band p { margin: 0 auto 1.25rem; max-width: 62ch; opacity: 0.95; line-height: 1.65; }
.cta-band .btn-primary { background: #fff; color: var(--brand); }
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* Forms */
.login-form { display: grid; gap: 0.75rem; position: relative; }

.field { display: grid; gap: 0.25rem; }
.field span { font-size: 0.78rem; font-weight: 700; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.95rem;
  padding: 0.75rem 0.85rem;
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid rgba(var(--brand-rgb), 0.25);
  border-color: var(--brand);
}
.field-optional { font-weight: 500; color: var(--muted); }

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

.form-btn { width: fit-content; min-width: 180px; margin-top: 0.25rem; }
.form-message { min-height: 1.25rem; margin: 0.25rem 0 0; font-size: 0.88rem; color: var(--muted); }
.form-message[data-state='error'] { color: #dc2626; }
.form-message[data-state='ok'] { color: var(--ok); }

.ruimte-row {
  display: grid;
  grid-template-columns: 1fr 120px auto;
  gap: 0.5rem;
  align-items: end;
}

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

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  line-height: 1;
}

.ruimtes-list { display: grid; gap: 0.5rem; margin-top: 0.5rem; }

/* Contact */
/* Contact: online afspraak direct onder hero */
.contact-booking-block {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-booking-intro {
  margin-bottom: 0.75rem;
}

.contact-booking-intro .section-title {
  margin-top: 0;
}

.contact-booking-section {
  padding-top: 0;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  background: var(--surface-elevated);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.contact-card:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}

.contact-card-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card-value { font-size: 1.05rem; font-weight: 800; color: var(--ink); }

/* Telefoonnummers niet afbreken midden in het nummer */
a[href^='tel:'],
.tel-nl {
  white-space: nowrap;
}
.contact-card:hover .contact-card-value { color: var(--brand); }

.contact-card--accent {
  border-color: var(--brand);
  background: linear-gradient(145deg, var(--brand-soft), var(--surface));
}

.contact-card--accent .contact-card-value { color: var(--brand-hover); }

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  color: #94a3b8;
}

.site-footer .footer-copy, .site-footer .footer-links a { color: #cbd5e1; }
.site-footer .footer-links a:hover { color: #fff; text-decoration: none; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy { margin: 0; font-size: 0.88rem; }
.footer-region {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}
.footer-region a {
  color: #cbd5e1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-region a:hover { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.88rem; font-weight: 600; }

.regio-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

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

.regio-list a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.regio-list a:hover {
  border-color: var(--blue);
  background: #f0f6ff;
}

.footer-credit {
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 500;
  color: #94a3b8;
  text-align: center;
  letter-spacing: 0.01em;
}

.footer-credit a {
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out-expo), transform 0.55s var(--ease-out-expo);
}

[data-reveal].is-revealed { opacity: 1; transform: none; }

/* Animations */
@keyframes siteHeaderIn {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (prefers-reduced-motion: no-preference) {
  .site-header { animation: siteHeaderIn 0.58s var(--ease-out-expo) both; }
  main > * { opacity: 0; animation: siteBlockIn 0.62s var(--ease-smooth) both; }
  main > *:nth-child(1) { animation-delay: 0.05s; }
  main > *:nth-child(2) { animation-delay: 0.1s; }
  main > *:nth-child(3) { animation-delay: 0.15s; }
  main > *:nth-child(4) { animation-delay: 0.2s; }
  main > *:nth-child(5) { animation-delay: 0.25s; }
  main > *:nth-child(6) { animation-delay: 0.3s; }
  .site-footer { opacity: 0; animation: siteBlockIn 0.55s var(--ease-smooth) 0.35s both; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header, main > *, .site-footer, [data-reveal] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .feature-card:hover, .btn:hover, .contact-card:hover { transform: none !important; }
  .hero-parallax { transform: none !important; }
}

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

/* FTS-effecten: live strip, steps, stagger, magnetic, legal, maps */
.live-strip {
  padding: 0.85rem 0;
  background: linear-gradient(90deg, var(--brand-soft) 0%, var(--surface) 45%, var(--surface-2) 100%);
  border-block: 1px solid var(--line);
}

.live-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .live-strip-inner { grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr)); }
}

.live-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.live-pill-icon { font-size: 1.35rem; line-height: 1; }

.live-pill-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.live-pill-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.15rem;
}

.live-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
  background: var(--muted);
  animation: live-pulse 2s ease-in-out infinite;
}

.live-pill-dot.is-online { background: var(--ok); }
.live-pill-dot.is-offline { background: #d97706; animation: none; }

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.92); }
}

.live-stat {
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.live-stat-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.live-stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 0.2rem;
}

.hero-panel {
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-panel h2 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel .mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.hero-panel .mini-tile {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  width: 100%;
  transition: border-color 0.22s var(--ease-smooth), background 0.22s, transform 0.22s, box-shadow 0.22s;
}

.hero-panel .mini-tile--agenda {
  grid-column: 1 / -1;
  text-decoration: none;
}

.hero-panel .mini-tile:hover,
.hero-panel .mini-tile.is-active {
  border-color: rgba(var(--brand-rgb), 0.45);
  background: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--brand-rgb), 0.12);
}

.section-steps { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head .section-lead {
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  --steps-progress: 0.25;
}

@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: var(--surface-elevated);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, opacity 0.35s;
  opacity: 0.72;
}

.step-card.is-lit {
  opacity: 1;
  border-color: rgba(var(--brand-rgb), 0.28);
  box-shadow: var(--hover-shadow);
}

.step-card:hover { transform: translateY(-2px); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.step-card.is-lit .step-num {
  background: var(--brand);
  color: #fff;
}

.step-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 800; }
.step-card p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

.btn-magnetic {
  position: relative;
  transition: transform 0.22s var(--ease-smooth), box-shadow 0.22s var(--ease-smooth);
}

.feature-grid--stagger .feature-card,
.brands-row--stagger .brand-card,
.team-grid--stagger .team-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out-expo), transform 0.55s var(--ease-out-expo), border-color 0.28s, box-shadow 0.28s;
}

.feature-grid--stagger.is-stagger-ready .feature-card.is-stagger-visible,
.brands-row--stagger.is-stagger-ready .brand-card.is-stagger-visible,
.team-grid--stagger.is-stagger-ready .team-card.is-stagger-visible {
  opacity: 1;
  transform: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}

[data-reveal].is-revealed { opacity: 1; transform: none; }

.split-figure { transition: transform 0.32s var(--ease-out-expo), box-shadow 0.32s; }
.split-figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.split-figure img { transition: transform 0.55s var(--ease-out-expo); }
.split-figure:hover img { transform: scale(1.04); }

.brand-card, .team-card {
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}

.brand-card:hover, .team-card:hover {
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: var(--hover-shadow);
  transform: translateY(var(--hover-lift));
}

@keyframes accentGrow {
  from { transform: scaleX(0); opacity: 0.6; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  .accent-line {
    transform: scaleX(0);
    transform-origin: left center;
    animation: accentGrow 0.75s var(--ease-out-expo) 0.12s forwards;
  }

  .brand:hover .brand-logo { transform: scale(1.03); transition: transform 0.32s var(--ease-out-expo); }
}

.page-legal .legal-page { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.legal-head { text-align: center; margin-bottom: 2rem; }
.legal-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.legal-pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  justify-content: center;
}

.legal-back {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.contact-location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .contact-location {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1.5rem;
  }
}

.contact-location-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-location-address {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.contact-location-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  line-height: 0;
}

.contact-location-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.maps-embed {
  margin-top: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.maps-embed iframe {
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
  display: block;
}

/* Vierkant icoon alleen voor favicon / app-icon, niet in de header */
.brand-logo--square {
  height: 44px;
  max-width: min(220px, 58vw);
  border-radius: 0;
}

/* Productvideo (LG Artcool) */
.product-media--video {
  margin: 0;
}

.product-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  background: var(--surface-2);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: opacity 0.35s var(--ease-out-expo);
}

.product-video[data-lazy-video]:not(.is-loaded) {
  opacity: 0.9;
}

.product-video.is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .product-video {
    transition: none;
  }
}

/* Klantenportaal demo (telefoon + video) */
.section-app {
  background: linear-gradient(180deg, #e2eaf4 0%, var(--surface) 55%, var(--surface) 100%);
  border-block: 1px solid var(--line);
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .app-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.app-side {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.app-demo {
  margin: 0;
  text-align: center;
}

.app-demo-device {
  position: relative;
  margin: 0 auto;
  max-width: min(100%, 292px);
  padding: 11px;
  border-radius: 30px;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  border: 1px solid rgba(15, 23, 42, 0.35);
}

.app-demo-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 22px;
  margin-left: -36px;
  border-radius: 0 0 14px 14px;
  background: #0f172a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.app-demo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  background: #0f172a;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  contain: layout style paint;
  transform: translateZ(0);
  transition: opacity 0.35s var(--ease-out-expo);
}

@media (prefers-reduced-motion: reduce) {
  .app-demo-video {
    transition: none;
  }
}

.app-demo-video[data-lazy-video]:not(.is-loaded) {
  opacity: 0.88;
}

.app-demo-video.is-loaded {
  opacity: 1;
}

.app-demo-caption {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
  text-wrap: balance;
}

.app-intro {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}

.app-tagline {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: balance;
}

.app-benefits {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.app-benefits li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.app-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.app-cta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

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

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

.app-module {
  background: var(--surface-elevated);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  padding: 1.1rem 1.05rem 1.15rem;
  box-shadow: var(--shadow);
  transition:
    border-color 0.25s var(--ease-smooth),
    box-shadow 0.25s var(--ease-smooth),
    transform 0.25s var(--ease-smooth);
}

.app-module:hover {
  border-color: rgba(var(--brand-rgb), 0.22);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.app-module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.app-module-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.app-module-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.app-module-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Online afspraak boeken */
.booking-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-panel {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: var(--shadow);
}

.booking-section-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.booking-section-title:not(:first-child) {
  margin-top: 1.25rem;
}

.booking-chips,
.booking-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.booking-chip,
.booking-time,
.booking-cal-day {
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s var(--ease-smooth),
    background 0.2s var(--ease-smooth),
    color 0.2s var(--ease-smooth);
}

.booking-chip {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-chip.is-active,
.booking-time.is-active,
.booking-cal-day.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-hover);
}

.booking-calendar {
  margin-top: 0.25rem;
}

.booking-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.booking-month-label {
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.35rem 0.65rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.booking-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.booking-cal-day {
  aspect-ratio: 1;
  min-height: 2.25rem;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-cal-day.is-empty {
  visibility: hidden;
  pointer-events: none;
  border: none;
  background: transparent;
}

.booking-cal-day.is-unavailable {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-cal-day.is-available:not(:disabled):hover {
  border-color: var(--brand);
}

.booking-time {
  min-width: 4.25rem;
  padding: 0.4rem 0.55rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.booking-muted {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.booking-slots-hint {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  color: var(--brand-hover);
  font-size: 0.85rem;
  line-height: 1.45;
}

.booking-planning-meta {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.booking-field-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .booking-field-row {
    grid-template-columns: 1fr 1.2fr;
  }
}

.booking-summary {
  margin: 0.25rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand-hover);
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 2.5rem;
}

.booking-loading,
.booking-error {
  margin-bottom: 1rem;
}

.booking-error {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.9rem;
}

.booking-success {
  max-width: 36rem;
  margin: 0 auto 1rem;
}

.booking-success-card {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid #fcd34d;
  background: linear-gradient(165deg, #fffbeb 0%, #fff 42%, var(--surface) 100%);
  box-shadow: var(--shadow-lg);
}

.booking-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.booking-success-badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
  animation: booking-pending-pulse 1.8s ease-in-out infinite;
}

@keyframes booking-pending-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
}

.booking-success-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--ink);
}

.booking-success-lead {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.booking-success-details {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}

.booking-success-details div {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) 1fr;
  gap: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

.booking-success-details dt {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.booking-success-details dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.booking-success-steps {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.booking-success-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.booking-success-step::before {
  content: '';
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--surface);
}

.booking-success-step.is-done {
  color: var(--ok);
  font-weight: 600;
}

.booking-success-step.is-done::before {
  border-color: var(--ok);
  background: var(--ok);
  box-shadow: inset 0 0 0 3px #fff;
}

.booking-success-step.is-current {
  color: #92400e;
  font-weight: 700;
}

.booking-success-step.is-current::before {
  border-color: #f59e0b;
  background: #fef3c7;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.booking-success-note {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Webshop */
.shop-notice {
  background: linear-gradient(90deg, var(--brand-soft), var(--surface-2));
  border-block: 1px solid var(--line);
  padding: 0.85rem 0;
}

.shop-notice-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
  text-align: center;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.shop-toolbar-title {
  margin: 0 0 0.35rem;
}

.shop-toolbar-lead {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-filter {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.shop-filter:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.shop-filter.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.shop-results {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.shop-catalog {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.shop-toolbar--simple .shop-toolbar-title {
  margin-bottom: 0.35rem;
}

.shop-groups-intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.shop-groups-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.shop-groups-grid-item {
  display: flex;
  min-width: 0;
}

.shop-group-picker {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  flex: 1;
  height: 100%;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s var(--ease-out-expo);
}

.shop-group-picker--watermark {
  position: relative;
  overflow: hidden;
  min-height: 10.5rem;
  padding: 1.15rem 1.2rem;
  background: var(--surface-elevated);
}

.shop-group-picker-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: var(--shop-watermark);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.shop-group-picker--watermark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 38%,
    rgba(255, 255, 255, 0.45) 62%,
    rgba(255, 255, 255, 0.2) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.shop-group-picker--watermark:hover::before {
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.75) 38%,
    rgba(255, 255, 255, 0.4) 62%,
    rgba(255, 255, 255, 0.15) 100%
  );
}

.shop-group-picker--watermark .shop-group-picker-num,
.shop-group-picker--watermark .shop-group-picker-body,
.shop-group-picker--watermark .shop-group-picker-arrow {
  position: relative;
  z-index: 2;
}

.shop-group-picker--watermark .shop-group-picker-title {
  color: var(--ink);
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 14px rgba(255, 255, 255, 0.9);
}

.shop-group-picker--watermark .shop-group-picker-desc {
  color: #1e293b;
  font-weight: 650;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 10px rgba(255, 255, 255, 0.85);
}

.shop-group-picker--watermark .shop-group-picker-meta,
.shop-group-picker--watermark .shop-group-picker-arrow {
  color: var(--brand-hover);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Diensten: monteur achterkant met Airco Techniek Oss-trui (banner-installatie) */
.shop-group-picker--watermark[data-shop-group='diensten'] .shop-group-picker-watermark {
  background-position: 88% center;
  background-size: auto 115%;
}


.shop-group-picker:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.shop-group-picker:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.shop-group-picker-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.shop-group-picker-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  flex: 1;
}

.shop-group-picker-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.shop-group-picker-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.shop-group-picker-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
}

.shop-group-picker-arrow {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
}

.shop-group-detail {
  scroll-margin-top: 6rem;
}

.shop-group-detail[hidden] {
  display: none !important;
}

.shop-groups-view[hidden] {
  display: none !important;
}

.shop-back-btn {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.shop-back-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.shop-group-header {
  margin-bottom: 1.35rem;
  padding: 0 0 1rem;
  border-bottom: 2px solid color-mix(in srgb, var(--brand) 35%, var(--line));
}

.shop-group-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.shop-group-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.shop-group-meta {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.shop-group-empty {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: var(--surface-2);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.shop-gootwerk-filter {
  margin-bottom: 1.5rem;
}

.shop-gootwerk-colors-intro {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--ink);
}

.shop-gootwerk-colors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 560px) {
  .shop-gootwerk-colors {
    grid-template-columns: 1fr;
  }
}

.shop-gootwerk-color-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 2px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out-expo);
}

.shop-gootwerk-color-btn--watermark {
  position: relative;
  overflow: hidden;
  min-height: 7.5rem;
  padding: 1rem 1.15rem;
  justify-content: flex-end;
}

.shop-gootwerk-color-watermark {
  position: absolute;
  inset: 0;
  background-image: var(--shop-gootwerk-watermark);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 115%;
  pointer-events: none;
  z-index: 0;
}

.shop-gootwerk-color-btn--watermark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.88) 42%,
    rgba(255, 255, 255, 0.5) 62%,
    rgba(255, 255, 255, 0.15) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.shop-gootwerk-color-btn--watermark[data-gootwerk-color='zwart']::before {
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 45%,
    rgba(255, 255, 255, 0.72) 58%,
    rgba(255, 255, 255, 0.35) 100%
  );
}

.shop-gootwerk-color-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.shop-gootwerk-color-btn:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.shop-gootwerk-color-btn.is-active {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.shop-gootwerk-color-btn.is-active::before {
  background: linear-gradient(
    100deg,
    rgba(239, 246, 255, 0.98) 0%,
    rgba(239, 246, 255, 0.9) 42%,
    rgba(239, 246, 255, 0.55) 62%,
    rgba(239, 246, 255, 0.2) 100%
  );
}

.shop-gootwerk-color-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.shop-gootwerk-color-label {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 10px rgba(255, 255, 255, 0.85);
}

.shop-gootwerk-color-meta {
  font-size: 0.82rem;
  font-weight: 650;
  color: #1e293b;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.shop-group-detail--gootwerk .shop-grid:empty {
  display: none;
}

.shop-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.shop-grid-item {
  display: flex;
  min-width: 0;
}

.shop-grid-item.is-hidden {
  display: none;
}

.shop-grid-item--full {
  grid-column: 1 / -1;
}

.shop-loading {
  margin: 0;
  text-align: center;
  color: var(--muted);
}

.shop-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.shop-card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0.75rem;
  transition: transform 0.5s var(--ease-out-expo);
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.04);
}

.shop-card-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-soft), var(--surface-2));
}

.shop-card-media--warm {
  background: linear-gradient(145deg, #fef3c7, var(--surface-2));
}

.shop-card-icon {
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.55;
}

.shop-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
}

.shop-badge--brand {
  top: auto;
  bottom: 0.65rem;
  background: var(--brand);
}

.shop-badge--highlight {
  left: auto;
  right: 0.65rem;
  background: #f59e0b;
}

.shop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
  gap: 0.45rem;
}


.shop-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.shop-card-desc {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.shop-card-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.shop-card-specs li {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
}

.shop-card-specs a {
  color: var(--brand);
  text-decoration: none;
}

.shop-card-specs a:hover {
  text-decoration: underline;
}

.shop-card-price {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-hover);
}

.shop-card-price--sale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.shop-card-price-was {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}

.shop-card-price-now {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ok);
}

.shop-card-price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
  line-height: 1.35;
}

.shop-card-price-vat,
.shop-cart-line-vat,
.checkout-line-vat {
  font-size: 0.78em;
  font-weight: 600;
  color: var(--muted);
}

.shop-totals-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
}

.shop-card-price-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ok);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.shop-card .btn-sm {
  margin-top: 0.35rem;
  align-self: flex-start;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.shop-usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.shop-usp {
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.shop-usp h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.shop-usp p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.shop-usp a {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 639px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-filters {
    justify-content: flex-start;
  }
}

/* Winkelwagen & checkout */
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-cart:hover,
.nav-cart.has-items {
  border-color: var(--brand);
  color: var(--brand);
}

.nav-cart-icon {
  width: 1.05rem;
  height: 1.05rem;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cart-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cart-label {
  display: none;
}

.nav-cart-badge {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25rem;
  text-align: center;
}

@media (min-width: 900px) {
  .nav-cart-label {
    display: inline;
  }
}

.shop-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.shop-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.shop-qty-btn {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.shop-qty-btn:hover {
  background: var(--surface-2);
}

.shop-qty-input {
  width: 2.5rem;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  -moz-appearance: textfield;
}

.shop-qty-input::-webkit-outer-spin-button,
.shop-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-add-btn {
  flex: 1;
  min-width: 8rem;
}

.shop-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
}

.shop-cart-backdrop.is-open {
  opacity: 1;
}

.shop-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 210;
  width: min(100%, 26rem);
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--surface-elevated);
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
  transform: translateX(100%);
  transition: transform 0.32s var(--ease-out-expo);
}

.shop-cart-drawer.is-open {
  transform: translateX(0);
}

.shop-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.shop-cart-drawer-title {
  margin: 0;
  font-size: 1.1rem;
}

.shop-cart-drawer-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.shop-cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.15rem 1.5rem;
}

body.shop-cart-open {
  overflow: hidden;
}

.shop-cart-lines {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.shop-cart-line {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0.65rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.shop-cart-line-media img {
  width: 4rem;
  height: 3rem;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.shop-cart-line-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.shop-cart-line-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

.shop-cart-line-meta {
  margin: 0.15rem 0 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.shop-cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.shop-cart-line-remove {
  border: 0;
  background: none;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
}

.shop-cart-line-total {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.shop-cart-summary {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shop-cart-totals {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.shop-cart-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.shop-cart-totals dt {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.shop-cart-totals dd {
  margin: 0;
  font-weight: 700;
}

.shop-cart-totals-row--total dd,
.shop-cart-totals-row--total dt {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.shop-cart-vat-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.shop-cart-empty {
  margin: 0 0 1rem;
  color: var(--muted);
}

.shop-cart-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  z-index: 300;
  transform: translate(-50%, 120%);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
  pointer-events: none;
}

.shop-cart-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.page-hero--compact {
  padding-block: 2rem 1.25rem;
}

.page-hero--compact .page-hero-title {
  margin-bottom: 0.35rem;
}

.page-hero--subtle {
  padding: 1rem 0 0.85rem;
  background: var(--surface);
  border-bottom-color: var(--line);
}

.page-hero--subtle .page-hero-grid {
  gap: 0.85rem;
  align-items: center;
}

@media (min-width: 880px) {
  .page-hero--subtle.page-hero--split .page-hero-grid {
    grid-template-columns: 1fr minmax(0, 11rem);
    gap: 1.25rem;
  }

  .page-hero--subtle.page-hero--with-demo.page-hero--split .page-hero-grid {
    grid-template-columns: 1fr minmax(0, 16rem);
  }
}

@media (min-width: 1024px) {
  .page-hero--subtle.page-hero--split .page-hero-grid {
    grid-template-columns: 1fr minmax(0, 13.5rem);
  }

  .page-hero--subtle.page-hero--with-demo.page-hero--split .page-hero-grid {
    grid-template-columns: 1fr minmax(0, 20rem);
  }
}

.page-hero--subtle .section-eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.page-hero--subtle .page-hero-title {
  margin-bottom: 0.3rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-hero--subtle .page-hero-lead {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 42ch;
}

.page-hero--subtle .page-hero-figure {
  max-width: 13.5rem;
  margin-inline: auto;
  border-radius: var(--radius);
  border-color: transparent;
  box-shadow: none;
  background: var(--surface-2);
}

.page-hero--subtle .page-hero-figure img {
  aspect-ratio: 16 / 10;
  max-height: 5.5rem;
  object-fit: cover;
  opacity: 0.92;
}

@media (min-width: 880px) {
  .page-hero--subtle .page-hero-figure {
    margin-inline: 0 0 auto;
  }

  .page-hero--subtle .page-hero-figure img {
    max-height: 4.75rem;
  }
}

.page-hero--with-demo .page-hero-figure--demo {
  max-width: min(100%, 20rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface-2);
}

.page-hero--subtle.page-hero--with-demo .page-hero-figure--demo {
  max-width: min(100%, 18rem);
}

.page-hero--subtle.page-hero--with-demo .page-hero-figure--promo {
  max-width: min(100%, 100%);
}

.page-hero-figure--demo img,
.page-hero-figure--demo .page-hero-video {
  width: 100%;
  height: auto;
  min-height: 9rem;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
  max-height: none;
  background: #0f172a;
  transition: opacity 0.35s var(--ease-out-expo);
}

.page-hero-figure--promo img {
  aspect-ratio: 1024 / 445;
  object-fit: contain;
  object-position: center;
  background: var(--surface-2);
  max-height: none;
  min-height: 0;
  width: 100%;
  transform: scale(0.9);
  transform-origin: center center;
}

.page-hero--subtle .page-hero-figure--promo img {
  max-height: none;
  aspect-ratio: 1024 / 445;
  object-fit: contain;
  opacity: 1;
}

.page-hero-figure--promo {
  padding: 0.35rem;
  box-sizing: border-box;
  overflow: hidden;
}

.page-hero-video[data-lazy-video]:not(.is-loaded) {
  opacity: 0.88;
}

.page-hero-video.is-loaded {
  opacity: 1;
}

.page-hero-figure--video-fallback {
  background: var(--surface-2) url('assets/photos/webshop-hero.jpg') center / cover no-repeat;
}

.page-hero-figure--video-fallback .page-hero-video {
  display: none;
}

@media (min-width: 880px) {
  .page-hero--subtle.page-hero--with-demo .page-hero-figure--demo {
    max-width: 16rem;
    margin-inline: 0 0 auto;
  }

  .page-hero--subtle.page-hero--with-demo .page-hero-figure--promo {
    max-width: min(100%, 24rem);
  }

  .page-hero--subtle .page-hero-figure--promo img {
    max-height: none;
  }
}

@media (min-width: 1024px) {
  .page-hero--subtle.page-hero--with-demo .page-hero-figure--demo {
    max-width: 20rem;
  }

  .page-hero--subtle.page-hero--with-demo .page-hero-figure--promo {
    max-width: min(100%, 28rem);
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

.checkout-panel-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.checkout-cart-panel {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
}

.checkout-lines {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.checkout-line-media img {
  width: 4.5rem;
  height: 3.25rem;
  object-fit: contain;
  background: var(--surface-2);
  border-radius: var(--radius);
}

.checkout-line-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 3.25rem;
  background: var(--surface-2);
  border-radius: var(--radius);
}

.checkout-line-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.checkout-line-meta {
  margin: 0.2rem 0 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.checkout-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.checkout-line-remove {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}

.checkout-line-total {
  margin: 0;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-totals {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-totals dt {
  margin: 0;
  color: var(--muted);
}

.checkout-totals dd {
  margin: 0;
  font-weight: 700;
}

.checkout-totals-row--total dt,
.checkout-totals-row--total dd {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}

.checkout-vat-note,
.checkout-back-link {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
}

.checkout-back-link {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.checkout-back-link:hover {
  text-decoration: underline;
}

.checkout-empty {
  margin: 0 0 1rem;
  color: var(--muted);
}

.checkout-form-panel {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
}

.checkout-steps {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.checkout-step {
  flex: 1;
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.checkout-step.is-active {
  background: var(--brand);
  color: #fff;
}

.checkout-step.is-done {
  background: var(--brand-soft);
  color: var(--brand);
}

.checkout-fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.checkout-legend {
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.75rem;
}

.checkout-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.checkout-radio {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-radio:has(input:checked) {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.checkout-radio input {
  margin-top: 0.2rem;
}

.checkout-radio span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.checkout-radio small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.checkout-payment-info {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.checkout-form-nav [hidden] {
  display: none !important;
}

.checkout-form-nav .btn-primary {
  margin-left: auto;
}

.checkout-success-panel {
  grid-column: 1 / -1;
}

.checkout-layout.is-complete .checkout-cart-panel {
  opacity: 0.65;
}

.checkout-success-card {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-lg);
}

.checkout-success-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checkout-success-title {
  margin: 0 0 0.75rem;
}

.checkout-success-ref {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.checkout-success-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .accent-line { transform: none !important; animation: none !important; }
  .feature-grid--stagger .feature-card,
  .brands-row--stagger .brand-card,
  .team-grid--stagger .team-card { opacity: 1 !important; transform: none !important; }
  .split-figure:hover, .split-figure:hover img { transform: none !important; }
  .shop-card:hover,
  .shop-card:hover .shop-card-media img { transform: none !important; }
}

/* ==========================================================================
   Mobiel & tablet (zelfde breakpoints als homepage, geen horizontale scroll)
   ========================================================================== */
html.nav-open {
  overflow: hidden;
}

/* Tablet / telefoon (< 900px, zelfde als homepage-hero) */
@media (max-width: 899px) {
  html {
    overflow-x: clip;
  }

  body {
    --header-h: 56px;
    overflow-x: clip;
    max-width: 100%;
  }

  main,
  .site-footer,
  .section,
  .page-hero,
  .page-legal,
  .trust-strip,
  .live-strip,
  .cta-band {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    max-width: 100%;
    overflow: visible;
  }

  .wrap,
  .narrow {
    width: min(var(--max), 100% - 1.25rem);
    max-width: 100%;
  }

  .header-inner {
    min-width: 0;
    max-width: 100%;
  }

  img,
  video,
  iframe,
  embed,
  object,
  svg {
    max-width: 100%;
    height: auto;
  }

  .page-split--reverse,
  .page-split--reverse > * {
    direction: ltr;
  }

  .page-split,
  .split-row,
  .booking-layout,
  .app-layout,
  .contact-location,
  .checkout-layout,
  .live-strip-inner,
  .feature-grid,
  .shop-grid,
  .shop-groups-grid,
  .shop-usp-grid,
  .team-grid,
  .team-grid--photos,
  .app-modules,
  .photo-duo,
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .brand-card {
    flex: 1 1 100%;
    min-width: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .project-carousel {
    --project-visible: 1;
    max-width: 100%;
  }

  .project-carousel-viewport,
  .project-carousel--static .project-carousel-viewport {
    overflow: hidden;
    max-width: 100%;
  }

  .booking-layout,
  .booking-panel,
  .booking-calendar,
  .contact-hero-panel,
  .contact-booking-section,
  .shop-toolbar,
  .shop-catalog,
  .maps-embed,
  .legal-body {
    max-width: 100%;
    min-width: 0;
  }

  .shop-toolbar {
    overflow: hidden;
  }

  .shop-filters {
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .shop-filter {
    flex-shrink: 0;
  }

  .page-hero-grid > *,
  .page-split > *,
  .split-row > *,
  .booking-layout > *,
  .app-layout > *,
  .contact-location > *,
  .wrap > * {
    min-width: 0;
    max-width: 100%;
  }

  .logo-3d-scene,
  .page-hero-figure--logo-3d {
    max-width: min(100%, 17.5rem);
    margin-inline: auto;
    overflow: hidden;
  }

  .page-hero--with-demo .page-hero-figure,
  .page-hero-figure--demo,
  .page-hero-figure--promo {
    max-width: 100%;
  }

  .elektra-page .page-hero::before,
  .certificeringen-page .page-hero::before {
    background-size: min(72vw, 14rem) auto;
    background-position: center 88%;
    opacity: 0.07;
  }

  .prose,
  .legal-body,
  .section-title,
  .page-hero-title,
  .hero-title,
  .shop-card-title,
  a[href^='tel:'],
  .tel-nl {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .legal-body pre,
  .legal-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .form-btn {
    min-width: 0;
    max-width: 100%;
  }

  .trust-strip {
    overflow: hidden;
  }

  .trust-strip .trust-strip-inner.wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .trust-strip-inner.lux-marquee {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    justify-content: flex-start;
    gap: 1.75rem;
    animation: lux-marquee 22s linear infinite;
  }

  .trust-item {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-band::after {
    background-attachment: scroll;
  }

  .cta-band {
    min-height: 0;
  }
}

@media (max-width: 639px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  .site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .section {
    padding: 1.75rem 0;
  }

  .section-head {
    margin-bottom: 1.75rem;
    padding-inline: 0;
  }

  .page-hero {
    padding: 1.75rem 0;
  }

  .page-hero--compact {
    padding-block: 1.5rem 1rem;
  }

  .page-hero--split .page-hero-grid {
    gap: 1.25rem;
  }

  .page-hero-title {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    line-height: 1.15;
    overflow-wrap: break-word;
  }

  body.home .hero-title {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .page-hero-lead,
  .hero-lead {
    font-size: 0.98rem;
    max-width: none;
  }

  .brand-logo {
    height: 38px;
    max-width: min(180px, 52vw);
  }

  .header-inner {
    min-height: 56px;
  }

  .hero-cta,
  .cta-band-actions,
  .app-cta,
  .booking-success-actions,
  .checkout-success-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn,
  .cta-band-actions .btn,
  .app-cta .btn,
  .legal-pdf-actions .btn,
  .legal-back .btn,
  .booking-success-actions .btn,
  .checkout-success-actions .btn,
  .form-btn {
    width: 100%;
    max-width: none;
  }

  .page-split,
  .split-row {
    gap: 1.35rem;
  }

  .booking-panel {
    padding: 1rem 0.9rem 1.1rem;
  }

  .booking-chips {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-chip {
    width: 100%;
    text-align: center;
  }

  .booking-times {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .booking-time {
    min-width: 0;
    width: 100%;
    padding-inline: 0.25rem;
    font-size: 0.82rem;
  }

  .booking-cal-weekdays {
    font-size: 0.65rem;
    gap: 0.15rem;
  }

  .booking-cal-grid {
    gap: 0.15rem;
  }

  .booking-cal-day {
    min-height: 1.85rem;
    font-size: 0.78rem;
  }

  .booking-field-row {
    grid-template-columns: 1fr;
  }

  .booking-success-details div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .checkout-cart-panel,
  .checkout-form-panel {
    padding: 1rem;
  }

  .checkout-field-row {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    gap: 0.35rem;
  }

  .checkout-step {
    font-size: 0.68rem;
    padding: 0.4rem 0.35rem;
  }

  .checkout-form-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .checkout-form-nav .btn {
    width: 100%;
    margin-left: 0 !important;
  }

  .checkout-line {
    grid-template-columns: 3.25rem 1fr;
    grid-template-rows: auto auto;
  }

  .checkout-line-total {
    grid-column: 2;
    justify-self: end;
    white-space: normal;
    text-align: right;
  }

  .shop-cart-line {
    grid-template-columns: 3.25rem 1fr;
    grid-template-rows: auto auto;
  }

  .shop-cart-line-total {
    grid-column: 2;
    justify-self: end;
  }

  .shop-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-add-btn {
    min-width: 0;
    width: 100%;
  }

  .shop-group-picker {
    flex-wrap: wrap;
  }

  .nav-cart {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .page-hero--contact .contact-hero-panel {
    min-height: 0;
  }

  .contact-hero-panel--form {
    padding: 0.95rem 0.9rem 1rem;
  }

  .contact-hero-panel--form .form-btn {
    width: 100%;
  }


  .app-demo-device {
    max-width: min(100%, 17rem);
  }

  .maps-embed iframe {
    height: min(280px, 50vh);
  }

  .review-card {
    padding: 1rem 1.1rem;
  }

  .trust-strip-inner.lux-marquee {
    gap: 1.35rem;
    animation-duration: 18s;
  }

  .trust-item {
    font-size: 0.82rem;
  }

  .field input,
  .field textarea,
  .field select,
  .shop-qty-input {
    font-size: 16px;
    max-width: 100%;
  }

  .cta-band {
    padding: 2rem 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .narrow p:has(.btn),
  .wrap p:has(.btn) {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
  }

  .narrow p .btn,
  .wrap p .btn {
    margin-left: 0 !important;
    width: 100%;
  }
}
