/* ============================================================
   WEBKERN — Professioneel Blauw/Wit Thema
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0a1628;
  --navy-mid:    #0e2044;
  --blue:        #006a8e;
  --blue-mid:    #0083af;
  --blue-light:  #0099cc;
  --blue-pale:   #d9f0f7;
  --teal:        #0083af;
  --white:       #ffffff;
  --off-white:   #f5fbfd;
  --gray-50:     #f1f5f9;
  --gray-100:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --muted:       #64748b;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 18px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 28px rgba(0,131,175,0.28);
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--gray-800);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
h1 { font-size: clamp(3rem, 6.5vw, 6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

.gradient-text {
  background: linear-gradient(90deg, #00a8d6 0%, #0083af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  border: 1px solid #b3dce8;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  font-family: inherit;
}
.btn-dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-dark:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.38);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-blue {
  background: var(--blue-mid);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(0,131,175,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-100);
}
.btn-outline:hover {
  border-color: #66c2d9;
  color: var(--blue-mid);
  background: var(--blue-pale);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}

/* ============================================================
   NAVBAR — floating pill
   ============================================================ */
.navbar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 24px;
  pointer-events: none;
  transition: padding var(--transition);
}
.navbar-wrap.scrolled { padding: 10px 24px; }

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  pointer-events: auto;
  background: rgba(0, 48, 70, 0.90);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 100px;
  padding: 9px 9px 9px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.navbar-wrap.scrolled .navbar {
  background: rgba(0, 38, 56, 0.97);
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 4px 28px rgba(0,0,0,0.28);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.navbar-wrap.scrolled .navbar__logo img {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.navbar__logo-text { display: none; }
.navbar-wrap.scrolled .navbar__logo-text { display: none; }

/* Links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__links > li > a {
  font-size: 0.87rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__links > li > a:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}
.navbar-wrap.scrolled .navbar__links > li > a { color: rgba(255,255,255,0.82); }
.navbar-wrap.scrolled .navbar__links > li > a:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.navbar__links > li > a svg { width: 13px; height: 13px; transition: transform var(--transition); }
.navbar__dropdown:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.navbar__dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 520px;
  background: rgba(0, 38, 56, 0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 12px 56px rgba(0,0,0,0.40), 0 2px 8px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
/* Bridge the gap so hover doesn't break when moving mouse down */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.navbar__dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72) !important;
  transition: var(--transition);
  text-decoration: none;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.96) !important; }
.dropdown-menu a:hover .dropdown-icon { background: rgba(0,131,175,0.35); color: #4dd9ff; }
.dropdown-menu a.dropdown-active { background: rgba(0,131,175,0.15); }
.dropdown-menu a.dropdown-active .dropdown-icon { background: rgba(0,131,175,0.3); color: #4dd9ff; }
.dropdown-menu a.dropdown-active .dropdown-label strong { color: #4dd9ff; }
.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(0,195,215,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.dropdown-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dropdown-label strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  line-height: 1.2;
  white-space: nowrap;
}
.dropdown-label span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

/* CTA button in navbar */
.navbar__cta .btn { padding: 10px 20px; font-size: 0.86rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: rgba(255,255,255,0.90);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), opacity 0.2s;
  transform-origin: center;
}
.navbar-wrap.scrolled .hamburger {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.18);
}
.navbar-wrap.scrolled .hamburger span { background: rgba(255,255,255,0.90); }
.hamburger.open { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); }
.navbar-wrap.scrolled .hamburger.open { background: rgba(255,255,255,0.16); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu — full-screen overlay ─────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(155deg, #001e2e 0%, #002e44 55%, #003d5c 100%);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease, visibility 0s linear 0.38s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease, visibility 0s linear 0s;
}

/* Hide the navbar pill when overlay is open */
body.mobile-menu-open .navbar {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

/* Overlay header — logo + close button */
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mobile-menu__logo img {
  height: 30px;
  filter: brightness(0) invert(1);
  display: block;
}
.mobile-menu__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Diensten service grid — hidden by default */
.mobile-menu__svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s cubic-bezier(.4,0,.2,1), opacity 0.2s ease, padding 0.2s ease;
  padding: 0 4px;
}
.mobile-menu__svc-grid.open {
  max-height: 320px;
  opacity: 1;
  padding: 4px 4px 10px;
}
.mobile-menu__svc {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  line-height: 1.3;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.mobile-menu__svc::before {
  content: '·';
  color: rgba(0,195,225,0.60);
  font-size: 1.5rem;
  line-height: 0;
  margin-right: 9px;
  flex-shrink: 0;
}
.mobile-menu__svc:hover { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.90); }

/* Diensten toggle */
.mobile-menu__diensten-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  justify-content: space-between;
}
.mobile-menu__chevron {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  color: rgba(255,255,255,0.30);
  transform: rotate(-90deg);
}
.mobile-menu__diensten-toggle[aria-expanded="true"] .mobile-menu__chevron { transform: rotate(0deg); }
.mobile-menu__diensten-toggle[aria-expanded="true"] { color: #fff; }

/* Main nav links */
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 14px;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu__link:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* Social proof strip (fills the gap above CTA) */
.mobile-menu__social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 20px 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.mobile-menu__stars {
  color: #f59e0b;
  font-size: 0.72rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.mobile-menu__social-txt {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* CTA button */
.mobile-menu__cta {
  display: flex;
  margin: 12px 16px 36px;
  text-align: center;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   HERO  — compact, clean, professionele animatie
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, #00334a 0%, #004d6e 50%, #005f87 100%);
  isolation: isolate;
}
.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

/* ── Aurora achtergrond + kruisende boog-strepen ── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(0,190,240,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 80% 70%, rgba(0,100,180,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 55% 10%, rgba(0,160,210,0.06) 0%, transparent 55%),
    /* Bottom-left accent arc */
    radial-gradient(circle at 0% 100%, transparent 549px, rgba(255,255,255,0.032) 550px, rgba(255,255,255,0.032) 551.5px, transparent 553px),
    /* Bottom-left main arc — crosses top-right main arc */
    radial-gradient(circle at 0% 100%, transparent 949px, rgba(255,255,255,0.046) 950px, rgba(255,255,255,0.046) 951.5px, transparent 953px),
    /* Top-right main arc — crosses bottom-left main arc */
    radial-gradient(circle at 100% 0%, transparent 949px, rgba(255,255,255,0.046) 950px, rgba(255,255,255,0.046) 951.5px, transparent 953px),
    /* Top-right accent arc */
    radial-gradient(circle at 100% 0%, transparent 549px, rgba(255,255,255,0.032) 550px, rgba(255,255,255,0.032) 551.5px, transparent 553px);
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
}

/* ── Full-section aurora — covers entire hero, breathes gently ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 12% 45%, rgba(0,200,245,0.11) 0%, transparent 58%),
    radial-gradient(ellipse 55% 65% at 88% 32%, rgba(0,115,195,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 78% 48% at 50% 92%, rgba(0,155,218,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 48% 60% at 72% 18%, rgba(0,78,158,0.07) 0%, transparent 52%);
  z-index: 1;
  pointer-events: none;
  will-change: opacity, transform;
  animation: heroAurora 18s ease-in-out infinite alternate;
}
@keyframes heroAurora {
  0%   { opacity: 0.60; transform: translateY(0px)  translateZ(0); }
  35%  { opacity: 0.88; transform: translateY(-8px) translateZ(0); }
  65%  { opacity: 0.68; transform: translateY(6px)  translateZ(0); }
  100% { opacity: 0.92; transform: translateY(-4px) translateZ(0); }
}

/* ── Orb 1 — slow drift top-left ── */
.hero__orb--1 {
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,185,230,0.20) 0%, transparent 65%);
  top: -220px; left: -180px;
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
  will-change: transform;
  animation: orbFloat1 22s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0px,    0px)  translateZ(0); }
  30%       { transform: translate(50px, -35px) translateZ(0); }
  65%       { transform: translate(-22px, 24px) translateZ(0); }
}

/* ── Orb 2 — slow drift bottom-right ── */
.hero__orb--2 {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 58%, rgba(0,100,175,0.18) 0%, transparent 65%);
  bottom: -170px; right: -140px;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  will-change: transform;
  animation: orbFloat2 28s ease-in-out infinite;
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0px,   0px) translateZ(0); }
  40%       { transform: translate(-38px, 28px) translateZ(0); }
  75%       { transform: translate(22px, -18px) translateZ(0); }
}

/* ── Orb 3 — slow pulse at centre ── */
.hero__orb--3 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,158,210,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.62;
  will-change: transform;
  transform: translate(-50%, -50%) translateZ(0);
  animation: orbFloat3 20s ease-in-out infinite alternate;
}
@keyframes orbFloat3 {
  0%   { transform: translate(-50%, -50%) translateZ(0) scale(1); }
  100% { transform: translate(-50%, -50%) translateZ(0) scale(1.15); }
}

/* ── Orb 4 — accent top-right ── */
.hero__orb--4 {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,250,0.10) 0%, transparent 65%);
  top: -60px; right: -80px;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  will-change: transform;
  animation: orbFloat4 24s ease-in-out infinite alternate;
}
@keyframes orbFloat4 {
  0%   { transform: translate(0px, 0px) translateZ(0); }
  50%  { transform: translate(-30px, 35px) translateZ(0); }
  100% { transform: translate(20px, -20px) translateZ(0); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge { display: none; }

.hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.3rem;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}
.hero__title .accent {
  display: block;
  background: linear-gradient(90deg, #5fd4f0 0%, #0bbfe8 50%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.text-accent {
  background: linear-gradient(90deg, #5fd4f0 0%, #0bbfe8 50%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero__sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.82;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.4rem;
}

/* Social proof */
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 7px 16px 7px 7px;
}
.hero__proof-avatars { display: flex; }
.hero__proof-avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  margin-left: -7px;
  position: relative;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.hero__proof-avatars span:first-child { margin-left: 0; }
.hero__proof-avatars span img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Smalle verticale streep als scheiding */
.hero__proof-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Sterren + score */
.hero__proof-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__proof-stars {
  display: flex;
  gap: 1px;
}
.hero__proof-stars svg {
  width: 13px; height: 13px;
  color: #fbbf24;
  flex-shrink: 0;
}
.hero__proof-score {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero__proof-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero__proof-text { display: none; }

.hero__scroll { display: none; }
@keyframes scrollPulse { }

/* ── Cases: horizontale scroll-band ── */
.hero__cases {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 0;
}
.hero__cases::before,
.hero__cases::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 5;
  pointer-events: none;
}
.hero__cases::before {
  left: 0;
  background: linear-gradient(to right, #00334a 0%, transparent 100%);
}
.hero__cases::after {
  right: 0;
  background: linear-gradient(to left, #005f87 0%, transparent 100%);
}
.hero__cases-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: casesScroll 32s linear infinite;
  padding: 20px 10px 28px;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero__cases-track:hover { animation-play-state: paused; }
@keyframes casesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero__case {
  flex: 0 0 400px;
  height: 248px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s, border-color 0.4s;
  cursor: pointer;
  background: rgba(0,0,0,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero__case:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 20px 52px rgba(0,0,0,0.32);
  border-color: rgba(255,255,255,0.18);
}
.hero__case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), filter 0.4s;
  filter: brightness(0.95);
}
.hero__case:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* Per-case object-position finetuning */
.hero__case--westfield img    { object-position: center 15%; }
.hero__case--boks img         { object-position: center center; }
.hero__case--toegankelijk img { object-position: center center; }

/* ============================================================
   TRUSTED TICKER
   ============================================================ */
.trusted {
  padding: 26px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.trusted__label {
  text-align: center;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.ticker-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 13%, #fff 87%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 13%, #fff 87%, transparent);
}
.ticker {
  display: flex;
  animation: tickerMove 26s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.ticker:hover { animation-play-state: paused; }
.ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 34px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color var(--transition);
}
.ticker__item:hover { color: var(--blue-mid); }
.ticker__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.45;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
  padding: 112px 0;
  background: var(--white);
}
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header p {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 500px;
  font-weight: 400;
}
.section-header--center p { margin: 12px auto 0; }

/* ============================================================
   PROJECTS / CASES — showcase slider
   ============================================================ */
.projects {
  padding: 120px 0 110px;
  background: var(--white);
}
.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}
.projects__header-left { flex-shrink: 0; }
.projects__header-desc {
  max-width: 340px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-bottom: 6px;
}

/* ── Showcase wrapper: het kader ── */
.sc-wrap {
  position: relative;
}
.sc {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 0 0 4px rgba(0,131,175,0.06),
    0 20px 60px rgba(0,0,0,0.09);
  overflow: hidden;
  background: #fff;
}

/* ── Stage: vaste hoogte, crossfade ── */
.sc__stage {
  position: relative;
  height: 480px;
  overflow: hidden;
}

/* ── Eén slide ── */
.sc__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 55% 45%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.sc__slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Afbeelding met inset kader ── */
.sc__img {
  overflow: hidden;
  position: relative;
}
.sc__img::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.sc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Info kolom ── */
.sc__body {
  background: #fff;
  padding: 48px 48px 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border-left: 1px solid rgba(0,0,0,0.06);
}
.sc__tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  border: 1px solid rgba(0,131,175,0.15);
  border-radius: 100px;
  padding: 4px 12px;
  align-self: flex-start;
}
.sc__title {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.sc__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

/* CTA */
.sc__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue-mid);
  text-decoration: none;
  align-self: flex-start;
  margin-top: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.sc__cta svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.sc__cta:hover { color: var(--blue); gap: 13px; }
.sc__cta:hover svg { transform: translateX(3px); }

/* ── Footer balk ── */
.sc__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px 0 28px;
  height: 60px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fafafa;
}

/* Teller */
.sc__counter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sc__counter-sep {
  width: 28px;
  height: 1px;
  background: var(--gray-100);
  flex-shrink: 0;
}
.sc__counter-total {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.5;
}

/* ── Segmented progress bars ── */
.sc__segments {
  flex: 1;
  display: flex;
  gap: 5px;
  align-items: center;
}
.sc__seg {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.sc__seg-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 2px;
  width: 0%;
}
.sc__seg.done .sc__seg-fill {
  width: 100%;
}
.sc__seg.active .sc__seg-fill {
  animation: sc-seg-fill 5s linear forwards;
}
@keyframes sc-seg-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Pijlknoppen */
.sc__arrows {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.sc__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.sc__arrow svg { width: 15px; height: 15px; }
.sc__arrow:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
}

/* ── Slide body entrance animation ── */
.sc__slide.active .sc__body {
  animation: sc-body-in 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes sc-body-in {
  from { transform: translateX(14px); }
  to   { transform: translateX(0); }
}

/* ── Counter flip ── */
.sc__counter-current {
  overflow: hidden;
  display: inline-block;
  min-width: 22px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.sc__counter-current.flip {
  animation: sc-counter-flip 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes sc-counter-flip {
  0%   { transform: translateY(0);     opacity: 1; }
  45%  { transform: translateY(-110%); opacity: 0; }
  55%  { transform: translateY(110%);  opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}

/* ── Annotatie ── */
.sc__annotation {
  position: absolute;
  bottom: 72px;
  right: -12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  pointer-events: none;
  z-index: 10;
  transform: rotate(-4deg);
}
.sc__annotation span {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-mid);
  white-space: nowrap;
  display: block;
}
.sc__annotation svg {
  width: 88px;
  height: 58px;
  opacity: 0.92;
}

/* ── Generic handwritten annotation ── */
.annot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  pointer-events: none;
  z-index: 10;
}
.annot span {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: 1.05rem;
  color: #0083af;
  white-space: nowrap;
  display: block;
  font-weight: 700;
  line-height: 1.3;
}
.annot svg { width: 88px; height: 58px; opacity: 0.92; }

/* Placement modifiers */
.annot--services { bottom: -10px; right: -10px; transform: rotate(-3deg); }
.annot--process  { top: -14px;   right: -6px;  transform: rotate(-4deg); }
.annot--reviews  { top: -44px;   right: 8px;   transform: rotate(2deg);  align-items: flex-end; }
.annot--cta      { bottom: 92px; right: 40px;  transform: rotate(-3deg); }
.annot--hero     { bottom: 30px; right: 50px;  transform: rotate(-4deg); }
.annot--svc-hero { top: -44px; left: 10px; right: auto; transform: rotate(-4deg); align-items: flex-start; }
.annot--svc-cta  { top: -40px; right: 24px; transform: rotate(4deg); }
.annot--svc-proc { top: -18px; right: 0;    transform: rotate(-4deg); }

/* Color overrides for dark-background sections */
.annot--cta span,
.annot--hero span { color: rgba(255,255,255,0.85); }
.annot--svc-cta span { color: rgba(255,255,255,0.85); }
.annot--process span { color: rgba(255,255,255,0.80); }
.annot--svc-hero span { color: rgba(255,255,255,0.88); }
.annot--svc-hero svg { transform: scaleX(-1); }
.annot--svc-hero svg path { stroke: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .annot span { font-size: 0.88rem; }
  .annot svg  { width: 68px; height: 46px; }

  /* Tighten placements that would overflow on small screens */
  .annot--reviews { top: -36px; right: 4px; }
  .annot--cta     { bottom: 56px; right: 16px; }
  .annot--hero    { bottom: 16px; right: 12px; }
  .annot--services { bottom: -6px; right: -4px; }
  .annot--svc-cta { top: -32px; right: 12px; }
  .annot--svc-proc { top: -14px; right: 0; }
}


/* ============================================================
   SVC — sticky scroll (clean white + alternating image frame)
   ============================================================ */
.svc {
  height: 500vh;
  position: relative;
}

.svc__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* Panel: absolute, full-viewport, 2-column grid */
.svc__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 46% 54%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.svc__panel.is-active {
  opacity: 1;
  pointer-events: auto;
}
.svc__panel--flip .svc__media { order: -1; }

/* ── Content column ── */
.svc__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 5vh, 72px) clamp(32px, 4vw, 56px) clamp(40px, 5vh, 72px) clamp(48px, 6vw, 96px);
}
.svc__panel--flip .svc__copy {
  padding: clamp(40px, 5vh, 72px) clamp(48px, 6vw, 96px) clamp(40px, 5vh, 72px) clamp(32px, 4vw, 56px);
}

.svc__inner {
  width: 100%;
  max-width: 420px;
  transform: translateY(14px);
  opacity: 0;
  transition:
    transform 0.68s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
    opacity 0.58s ease 0.08s;
}
.svc__panel.is-active .svc__inner {
  transform: translateY(0);
  opacity: 1;
}

.svc__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.svc__tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0087b4;
}
.svc__step {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: rgba(10,22,40,0.2);
}

.svc__title {
  font-size: clamp(1.65rem, 2.3vw, 2.6rem);
  font-weight: 900;
  color: #0b1f38;
  letter-spacing: -0.038em;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}
.svc__title em {
  font-style: normal;
  color: #0087b4;
}

.svc__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.77;
  margin: 0 0 1.4rem;
}

.svc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
}
.svc__list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  font-weight: 600;
  color: #0b1f38;
}
.svc__list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23dceef6'/%3E%3Cpath d='M4.5 8.5l2.3 2.3 4.7-5' stroke='%230087b4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.svc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #0087b4;
  color: #fff;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}
.svc__btn:hover {
  background: #006f96;
  transform: translateY(-2px);
  gap: 12px;
}

/* ── Image column ── */
.svc__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: clamp(32px, 4vw, 64px);
}

.svc__img-frame {
  width: 100%;
  max-width: 580px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(10,22,40,0.04),
    0 6px 16px rgba(10,22,40,0.07),
    0 20px 50px rgba(10,22,40,0.11),
    0 40px 80px rgba(10,22,40,0.06);
  border: 1px solid rgba(10,22,40,0.08);
  transform: scale(0.97) translateY(10px);
  transition: transform 0.72s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}
.svc__panel.is-active .svc__img-frame {
  transform: scale(1) translateY(0);
}
.svc__img-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Progress bar ── */
.svc__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(10,22,40,0.06);
  z-index: 20;
}
.svc__progress-fill {
  height: 100%;
  width: 25%;
  background: #0087b4;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Mobile — keep full sticky-scroll, switch to column layout ── */
@media (max-width: 768px) {
  /* Preserve the full scroll height so the JS-driven sticky works */
  .svc { height: 500vh; }
  .svc__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh; /* respects mobile browser chrome */
    overflow: hidden;
    background: #fff;
  }

  /* Override 2-col grid → column: image on top, content below */
  .svc__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .svc__panel.is-active { opacity: 1; pointer-events: auto; }

  /* Image column: fixed upper portion */
  .svc__media {
    order: -1;
    width: 100%;
    flex: 0 0 42%;
    padding: 0;
    background: #fff;
    display: flex;
    align-items: stretch;
  }
  .svc__panel--flip .svc__media { order: -1; }

  /* Image frame: fill the media column edge-to-edge */
  .svc__img-frame {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transform: scale(0.98) translateY(6px);
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1) 0.05s;
  }
  .svc__panel.is-active .svc__img-frame { transform: scale(1) translateY(0); }
  .svc__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    aspect-ratio: unset;
  }

  /* Content column: remaining space */
  .svc__copy {
    flex: 1;
    border-right: none !important;
    border-left: none !important;
    width: 100%;
    padding: 14px 20px 10px;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }
  .svc__inner { max-width: 100%; }
  .svc__eyebrow { margin-bottom: 0.6rem; }
  .svc__title { font-size: clamp(1.2rem, 4.5vw, 1.45rem); margin-bottom: 0.35rem; }
  .svc__desc { font-size: 0.8rem; line-height: 1.5; margin-bottom: 0.6rem; }
  .svc__list { grid-template-columns: 1fr 1fr; margin-bottom: 0.65rem; gap: 4px 10px; }
  .svc__list li { font-size: 0.77rem; }
  .svc__btn { font-size: 0.77rem; padding: 0.5rem 0.95rem; margin-top: 0; }
  .svc__progress-bar { display: block; }
}
@media (max-width: 480px) {
  .svc__list { grid-template-columns: 1fr; }
  .svc__copy { padding: 12px 16px 8px; }
}

/* ============================================================
   PROCESS — numbered timeline (werkwijze & aanpak)
   ============================================================ */
.process {
  padding: 130px 0;
  background: linear-gradient(145deg, #00334a 0%, #004d6e 50%, #005f87 100%);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(0,0,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(0,0,0,0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Centered header ── */
.process__head {
  text-align: center;
  margin-bottom: 88px;
  position: relative;
}
.process__head .section-tag {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.15);
}
.process__head h2 { color: #fff; margin-top: 16px; margin-bottom: 18px; }
.process__head-sub {
  max-width: 500px;
  margin: 0 auto;
  color: rgba(255,255,255,0.50);
  font-size: 0.95rem;
  line-height: 1.80;
}

/* ── 4-column grid ── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* ── Per-step connector ── */
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(50% + 48px);
  width: 0;
  height: 1px;
  pointer-events: none;
  z-index: 0;
  transition: width 0.55s cubic-bezier(.4,0,.2,1);
}
.process__steps.visible .process__step:not(:last-child)::after {
  width: calc(100% - 96px);
}
.process__steps.visible .process__step:nth-child(1)::after {
  background: rgba(255,255,255,0.55);
  transition-delay: 0.05s;
}
.process__steps.visible .process__step:nth-child(2)::after {
  background: rgba(255,255,255,0.35);
  transition-delay: 0.30s;
}
.process__steps.visible .process__step:nth-child(3)::after {
  background: rgba(255,255,255,0.16);
  transition-delay: 0.55s;
}

/* ── Individual step ── */
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 22px;
  position: relative;
  z-index: 1;
  cursor: default;
}

/* ── Circle — frosted glass ── */
.process__circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(0, 16, 28, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 4px 24px rgba(0,0,0,0.22);
  outline: 1px solid rgba(255,255,255,0.06);
  outline-offset: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  transition:
    border-color  0.38s ease,
    box-shadow    0.38s ease,
    color         0.38s ease,
    background    0.38s ease,
    outline-color 0.38s ease;
}
.process__circle svg {
  width: 32px;
  height: 32px;
  transition: transform 0.38s cubic-bezier(.34,1.56,.64,1);
}
.process__circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(255,255,255,0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}
.process__step:hover .process__circle {
  background: rgba(0, 22, 38, 0.68);
  border-color: rgba(255,255,255,0.38);
  outline-color: rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 36px rgba(0,205,235,0.24),
    0 8px 32px rgba(0,0,0,0.28);
  color: #fff;
}
.process__step:hover .process__circle::after { opacity: 1; }
.process__step:hover .process__circle svg    { transform: scale(1.10); }

/* ── Step text ── */
.process__step h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin: 0 0 10px;
  transition: color 0.3s;
}
.process__step:hover h3 { color: #fff; }

.process__step p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.44);
  line-height: 1.82;
  margin: 0;
  transition: color 0.3s;
}
.process__step:hover p { color: rgba(255,255,255,0.65); }

/* ── CTA button — solid white pill ── */
.process__cta-wrap {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
.process__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  color: #003d5c;
  border-radius: 100px;
  padding: 15px 34px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.process__cta-btn:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.process__cta-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor; flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
.process__cta-btn:hover svg { transform: translateX(4px); }

/* ============================================================
   WERK — our work showcase
   ============================================================ */
.werk {
  padding: 120px 0 110px;
  background: #fff;
}
.werk__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}
.werk__head-left { flex-shrink: 0; }
.werk__head-desc {
  max-width: 340px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-bottom: 6px;
}
.werk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.wcard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #0a1628;
}
.wcard__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.wcard:hover .wcard__img img { transform: scale(1.04); }

.wcard:not(.wcard--cta)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.48) 48%, rgba(0,0,0,0.84) 100%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.4s ease;
}
.wcard:not(.wcard--cta):hover::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.9) 100%);
}

.wcard__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 36px 40px;
}
.wcard__tag {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.wcard__title {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.wcard__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 100%;
}
.wcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,131,175,0.82);
  border: 1px solid rgba(0,131,175,0.5);
  border-radius: 100px;
  padding: 9px 22px;
  text-decoration: none;
  transition: background 0.25s, gap 0.25s;
}
.wcard:hover .wcard__cta { background: #0083af; gap: 12px; }
.wcard__cta svg { flex-shrink: 0; transition: transform 0.25s; }
.wcard:hover .wcard__cta svg { transform: translateX(2px); }

.wcard:not(.wcard--cta) { height: 340px; }

.wcard--cta {
  background: linear-gradient(145deg, #f0f9fd 0%, #e8f4fb 100%);
  border: 2px dashed rgba(0,131,175,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  cursor: default;
}
.wcard__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 32px;
}
.wcard__cta-annot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.wcard__cta-annot span {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: 1rem;
  color: #0083af;
  font-weight: 700;
}
.wcard__cta-text {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 900;
  color: #0a1628;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}
.wcard--cta .btn.btn-blue { text-decoration: none; }

@media (max-width: 768px) {
  .werk__head { flex-direction: column; align-items: flex-start; }
  .werk__grid { grid-template-columns: 1fr; }
  .wcard:not(.wcard--cta) { height: 280px; }
  .wcard--cta { height: 280px; }
  .wcard__overlay { padding: 24px 28px; }
  .wcard__title { font-size: clamp(1.2rem, 5vw, 1.6rem); }
}

/* ============================================================
   REVIEWS — Spotlight Stage
   ============================================================ */
.reviews {
  padding: 120px 0 96px;
  background: #ffffff;
  background-image:
    radial-gradient(circle at 18% 45%, rgba(0,131,175,0.03) 0%, transparent 52%),
    radial-gradient(circle at 82% 65%, rgba(0,131,175,0.025) 0%, transparent 48%);
  overflow: hidden;
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,131,175,0.22) 40%, rgba(0,131,175,0.22) 60%, transparent);
  pointer-events: none;
}
.reviews__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 32px;
}
.reviews__heading { max-width: 560px; }
.reviews__sub {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 460px;
}

/* ── Google rating card ── */
.reviews__rc {
  background: #ffffff;
  border: 1px solid rgba(0,131,175,0.14);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  flex-shrink: 0;
}
.reviews__rc-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews__rc-gicon { width: 18px; height: 18px; flex-shrink: 0; }
.reviews__rc-header span {
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
}
.reviews__rc-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.reviews__rc-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0a1628;
  letter-spacing: -0.05em;
  line-height: 1;
}
.reviews__rc-stars {
  display: flex;
  gap: 2px;
  align-items: center;
  padding-bottom: 3px;
}
.reviews__rc-stars svg { width: 14px; height: 14px; }
.reviews__rc-caption {
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* ── Carousel: centered 3-card ── */
.reviews__viewport {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 36px;
  position: relative;
}
.reviews__rail {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Review card ── */
.rcard {
  flex-shrink: 0;
  width: 400px;
  background: #ffffff;
  border: 1px solid rgba(0,131,175,0.1);
  border-radius: 20px;
  padding: 36px 40px 32px;
  box-shadow: 0 2px 16px rgba(10,22,40,0.05);
  opacity: 0.5;
  transform: scale(0.92) translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.rcard--active {
  opacity: 1;
  transform: scale(1) translateY(0);
  box-shadow: 0 8px 48px rgba(0,131,175,0.12), 0 2px 16px rgba(10,22,40,0.07);
  pointer-events: auto;
}
.rcard--adj {
  opacity: 0.72;
  transform: scale(0.96) translateY(6px);
}
.rcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rcard__stars { display: flex; gap: 2px; }
.rcard__stars svg { width: 15px; height: 15px; fill: #f59e0b; }
.rcard__g { width: 20px; height: 20px; flex-shrink: 0; }
.rcard__body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #334155;
  margin: 0 0 24px;
  font-style: italic;
}
.rcard__body strong { color: #0a1628; font-style: normal; }
.rcard__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,131,175,0.09);
}
.rcard__av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0,131,175,0.18);
}
.rcard__info { display: flex; flex-direction: column; gap: 2px; }
.rcard__name { font-size: 0.85rem; font-weight: 700; color: #0a1628; }
.rcard__role { font-size: 0.72rem; color: #94a3b8; }

/* ── Navigation bar ── */
.reviews__navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
  padding: 0 24px;
}
.reviews__arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,131,175,0.22);
  background: #fff;
  color: #0083af;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.reviews__arr:hover {
  border-color: #0083af;
  background: rgba(0,131,175,0.06);
  transform: scale(1.09);
  box-shadow: 0 2px 12px rgba(0,131,175,0.14);
}
.reviews__dots { display: flex; gap: 7px; align-items: center; }
.reviews__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(0,131,175,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  flex-shrink: 0;
}
.reviews__dot.is-active {
  background: #0083af;
  width: 22px;
  border-radius: 99px;
}

/* ── Google CTA ── */
.reviews__google-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-bottom: 8px;
}
.reviews__google-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 1.5px solid rgba(0,131,175,0.18);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
}
.reviews__google-cta:hover {
  border-color: #0083af;
  background: rgba(0,131,175,0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,131,175,0.12);
}

@media (max-width: 600px) {
  .rcard { width: calc(100vw - 64px); }
}

/* ============================================================
   CTA — full-width section with animated orbs
   ============================================================ */
.cta-section {
  position: relative;
  background: linear-gradient(145deg, #00334a 0%, #004d6e 50%, #005f87 100%);
  padding: 96px 24px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  contain: layout style paint;
}

/* White gradient stripe at top of every CTA section */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.55) 20%,
    rgba(255,255,255,0.92) 50%,
    rgba(255,255,255,0.55) 80%,
    transparent 100%
  );
  z-index: 100;
  pointer-events: none;
}

/* ── Animated glow orbs ─────────────────────────────────── */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: opacity;
  transform: translateZ(0);
}

/* Orb 1 — cyan, top-left */
.cta-orb--1 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(0,190,240,0.30) 0%, rgba(0,150,200,0.10) 50%, transparent 72%);
  top: -20%; left: -12%;
  opacity: 0.80;
}

/* Orb 2 — blue, bottom-right */
.cta-orb--2 {
  width: 44vw; height: 44vw;
  background: radial-gradient(circle, rgba(0,160,220,0.25) 0%, rgba(0,110,180,0.08) 50%, transparent 72%);
  bottom: -20%; right: -12%;
  opacity: 0.75;
}

/* Orb 3 — soft ambient center */
.cta-orb--3 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(95,212,240,0.16) 0%, rgba(0,90,150,0.06) 55%, transparent 72%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  opacity: 0.70;
}

/* ── Content ────────────────────────────────────────────── */
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

/* Availability badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,214,0.12);
  border: 1px solid rgba(0,168,214,0.25);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7dd6ed;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.cta-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00d4a8;
  box-shadow: 0 0 8px rgba(0,212,168,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Title */
.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  overflow: visible;
}
.cta-title__accent {
  display: inline-block;
  /* Extra padding so the gradient background isn't clipped on italic descenders */
  padding: 0 0.12em;
  margin: 0 -0.12em;
  background: linear-gradient(90deg, #00c9f5 0%, #0083af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* Sub text */
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Buttons */
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Keep old classes inert */
.cta-box   { display: none; }
.cta-grid  { display: none; }
.cta-stats { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */

/* ── Wrapper — same gradient + orbs as CTA section ── */
.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: layout style paint;
  background: linear-gradient(145deg, #00334a 0%, #004d6e 50%, #005f87 100%);
}

/* Orbs — static glows, zero animation cost */
.footer__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translateZ(0);
}
.footer__orb--1 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(0,190,240,0.18) 0%, rgba(0,150,200,0.06) 55%, transparent 72%);
  top: -20%; left: -12%;
  opacity: 0.70;
}
.footer__orb--2 {
  width: 46vw; height: 46vw;
  background: radial-gradient(circle, rgba(0,160,220,0.16) 0%, rgba(0,110,180,0.05) 55%, transparent 72%);
  bottom: -20%; right: -10%;
  opacity: 0.65;
}
.footer__orb--3 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(95,212,240,0.10) 0%, transparent 72%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  opacity: 0.60;
}

/* ── Availability bar ── */
.footer__avail-wrap {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__avail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
}
.footer__avail-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
}
.footer__avail-left strong {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.footer__avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.footer__avail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #4dd9ff;
  white-space: nowrap;
  transition: gap var(--transition), color var(--transition);
  letter-spacing: -0.01em;
}
.footer__avail-link:hover { color: #fff; gap: 10px; }

/* ── Main footer body ── */
.footer__main {
  position: relative;
  z-index: 2;
  padding: 72px 0 36px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo + naam */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer__logo span {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer__brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.85;
  max-width: 230px;
  margin-bottom: 26px;
}

/* Social icons */
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: rgba(77,217,255,0.45);
  color: #4dd9ff;
  background: rgba(77,217,255,0.08);
  transform: translateY(-2px);
}
.footer__social svg { width: 14px; height: 14px; }

/* Nav columns */
.footer__col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li { line-height: 1; }
.footer__col ul a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition), padding-left var(--transition);
  font-weight: 400;
  display: inline-block;
}
.footer__col ul a:hover {
  color: rgba(255,255,255,0.92);
  padding-left: 4px;
}
.footer__col-muted {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.28);
  font-weight: 400;
}

/* Contact items with icons */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contact-item svg {
  flex-shrink: 0;
  color: rgba(77,217,255,0.65);
  width: 14px;
  height: 14px;
}
.footer__contact-item a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition), padding-left var(--transition);
  font-weight: 400;
  display: inline-block;
}
.footer__contact-item a:hover {
  color: rgba(255,255,255,0.92);
  padding-left: 2px;
}
.footer__contact-item span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.28);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.01em;
}
.footer__bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); text-decoration: none; }
.footer__bottom a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom-links { display: flex; gap: 22px; }

/* Responsive */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer__avail { flex-direction: column; align-items: stretch; gap: 10px; }
  .footer__avail-link { justify-content: center; width: 100%; }
}
@media (max-width: 640px) {
  .footer__main { padding: 48px 0 28px; }

  /* 2-col grid: brand full-width on top, diensten + bedrijf side by side, contact full-width */
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 4px;
  }
  .footer__brand p { max-width: 100%; }
  /* Contact column spans full width on its own row */
  .footer__col:last-child { grid-column: 1 / -1; }

  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer__bottom-links { justify-content: center; }
  .footer__orb--1, .footer__orb--2, .footer__orb--3 { opacity: 0.55; }
}

/* ============================================================
   FLOATING CONTACT WIDGET
   ============================================================ */
.fcw {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

/* ── Popup Card ── */
.fcw__card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(10,22,40,0.22), 0 4px 24px rgba(0,131,175,0.12);
  width: 320px;
  border: 1px solid rgba(0,131,175,0.10);
  position: relative;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1);
  transform-origin: bottom right;
  overflow: hidden;
}
.fcw__card.fcw--open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.fcw__trigger { pointer-events: auto; }

/* ── Gradient Header ── */
.fcw__card-header {
  background: linear-gradient(145deg, #00334a 0%, #004d6e 50%, #005f87 100%);
  padding: 20px 20px 16px;
  position: relative;
  overflow: hidden;
}
.fcw__card-header::before {
  content: '';
  position: absolute;
  top: -28px; right: -28px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.fcw__card-header::after {
  content: '';
  position: absolute;
  bottom: -18px; left: -18px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

/* ── Close button (inside header) ── */
.fcw__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  padding: 0;
  z-index: 2;
}
.fcw__close svg { width: 13px; height: 13px; }
.fcw__close:hover { background: rgba(255,255,255,0.28); }

/* ── Header content ── */
.fcw__header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.fcw__avatar-wrap { position: relative; flex-shrink: 0; }
.fcw__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,0.35);
}
.fcw__online-dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 11px; height: 11px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #0b1e38;
}
.fcw__intro { display: flex; flex-direction: column; line-height: 1.3; }
.fcw__intro strong {
  font-size: 0.95rem; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
}
.fcw__intro span { font-size: 0.76rem; color: rgba(255,255,255,0.70); font-weight: 500; }

/* ── Response-time badge ── */
.fcw__response-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.715rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.fcw__response-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ── Chat area ── */
.fcw__chat {
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 240px;
  scroll-behavior: smooth;
}

/* ── Typing indicator ── */
.fcw__typing {
  display: none;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  border-radius: 14px 14px 14px 4px;
  padding: 11px 16px;
  border: 1px solid #e2e8f0;
  width: fit-content;
}
.fcw__typing.fcw__typing--visible { display: flex; }
.fcw__typing span {
  width: 6px; height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  display: block;
  animation: fcw-dot-bounce 1.2s ease-in-out infinite;
}
.fcw__typing span:nth-child(2) { animation-delay: 0.18s; }
.fcw__typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes fcw-dot-bounce {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.45; }
  30%            { transform: translateY(-5px); opacity: 1;    }
}

/* ── Chat bubbles ── */
.fcw__bubble {
  background: #f1f5f9;
  border-radius: 14px 14px 14px 4px;
  padding: 11px 14px;
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  display: none;
}
.fcw__bubble.fcw__bubble--visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.fcw__bubble p {
  font-size: 0.855rem; color: #1e293b;
  line-height: 1.6; margin: 0;
}
.fcw__bubble-time {
  font-size: 0.67rem; color: #94a3b8;
  margin-top: 5px; display: block;
}

/* ── Quick-topic chips ── */
.fcw__chips { padding: 10px 14px 6px; }
.fcw__chips-label {
  font-size: 0.695rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 7px;
}
.fcw__chips-row { display: flex; flex-wrap: wrap; gap: 6px; }
.fcw__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.775rem;
  color: #1e293b;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.fcw__chip:hover {
  border-color: #0087b4;
  background: #f0f7fc;
  color: #0087b4;
}

/* ── Divider ── */
.fcw__divider {
  height: 1px;
  background: #f1f5f9;
  margin: 2px 0;
}

/* ── Action buttons ── */
.fcw__actions {
  padding: 8px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fcw__btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 12px;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.fcw__btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.fcw__btn--primary {
  background: linear-gradient(135deg, #00334a 0%, #0087b4 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,135,180,0.28);
}
.fcw__btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,135,180,0.38); }
.fcw__btn--secondary {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.fcw__btn--secondary:hover { background: #dcfce7; transform: translateY(-1px); }

/* ── Input area ── */
.fcw__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid #f1f5f9;
}
.fcw__input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 0.855rem;
  font-family: inherit;
  color: #1e293b;
  outline: none;
  background: #f8fafc;
  transition: border-color 0.18s;
}
.fcw__input:focus { border-color: #0087b4; background: #fff; }
.fcw__input::placeholder { color: #94a3b8; }
.fcw__send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0087b4 0%, #00b4d8 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
.fcw__send:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(0,131,175,0.4); }
.fcw__send svg { width: 14px; height: 14px; }

/* ── User messages ── */
.fcw__user-msg {
  align-self: flex-end;
  background: linear-gradient(135deg, #0087b4, #00b4d8);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 9px 14px;
  font-size: 0.855rem;
  line-height: 1.5;
  max-width: 85%;
  word-break: break-word;
}

/* ── Trigger wrapper ── */
.fcw__trigger-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  pointer-events: auto;
}

/* ── Hover label ── */
.fcw__trigger-label {
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(10,22,40,0.13);
  border: 1px solid var(--gray-100);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.fcw__trigger-wrap:hover .fcw__trigger-label {
  opacity: 1;
  transform: translateX(0);
}
/* Hide label when card is open */
.fcw__card.fcw--open ~ .fcw__trigger-wrap .fcw__trigger-label { display: none; }

/* ── Trigger button ── */
.fcw__trigger {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: linear-gradient(145deg, #00334a 0%, #004d6e 50%, #005f87 100%);
  box-shadow: 0 8px 28px rgba(0,77,110,0.32), 0 2px 8px rgba(0,131,175,0.25);
  position: relative;
  transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.fcw__trigger:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 36px rgba(0,77,110,0.42), 0 4px 14px rgba(0,131,175,0.34);
}
.fcw__trigger-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  padding: 0;
}
.fcw__trigger-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Notification badge ── */
.fcw__trigger-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  z-index: 2;
  transition: transform 0.22s cubic-bezier(.4,1.4,.6,1), opacity 0.22s ease;
}
.fcw__trigger-badge.fcw__trigger-badge--hidden {
  transform: scale(0);
  opacity: 0;
}

/* ── Ping ring ── */
.fcw__trigger-ping {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(0, 135, 180, 0.45);
  animation: fcw-ping 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fcw-ping {
  0%   { transform: scale(1);   opacity: 0.75; }
  70%  { transform: scale(1.35); opacity: 0;   }
  100% { transform: scale(1);   opacity: 0;   }
}

/* ============================================================
   SCROLL ANIMATIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.06s !important; }
.d2 { transition-delay: 0.14s !important; }
.d3 { transition-delay: 0.22s !important; }
.d4 { transition-delay: 0.30s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .projects__header   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .projects__grid     { grid-template-columns: repeat(2, 1fr); }
  .services__track    { grid-template-columns: repeat(2, 1fr); }
  .process__steps          { grid-template-columns: 1fr 1fr; gap: 56px 24px; }
  .process__step:not(:last-child)::after { display: none; }
  .process__circle         { outline: none; }
}

@media (max-width: 768px) {
  body.mobile-menu-open { overflow: hidden; }

  .navbar__links, .navbar__cta { display: none; }
  .hamburger                   { display: flex; }

  /* Navbar pill — compact on mobile */
  .navbar-wrap          { padding: 10px 14px; }
  .navbar-wrap.scrolled { padding: 8px 14px; }
  .navbar               { padding: 7px 7px 7px 16px; border-radius: 16px; gap: 8px; }
  .navbar__logo img     { height: 34px; }

  /* Mobile menu: full-screen fixed overlay — position handled by base CSS */

  /* Hero */
  .hero { padding: 100px 0 0; }
  .hero__title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero__case { flex: 0 0 240px; height: 150px; }

  /* Sections */
  .projects__grid               { grid-template-columns: 1fr; }
  .services__track              { grid-template-columns: 1fr; }
  .process                      { padding: 80px 0; }
  .process__head                { margin-bottom: 52px; }
  .process__steps               { grid-template-columns: 1fr; gap: 44px; }
  .process__step                { padding: 0 16px; }
  .reviews__top              { flex-direction: column; gap: 28px; margin-bottom: 40px; }
  .reviews__rc               { width: 100%; max-width: 100%; margin-left: 0 !important; align-self: stretch; }
  .reviews__stage            { padding: 0 16px; margin-bottom: 36px; }
  .reviews__slide            { padding: 36px 28px 28px; }
  .reviews__qmark            { font-size: 96px; top: 6px; left: 10px; }
  .reviews__person-stars     { display: none; }
  .reviews__navrow           { gap: 8px; padding: 0 16px; }
  .reviews__navbtn           { width: 42px; height: 42px; }
  .reviews__footer           { padding: 0 16px; }

  .cta-box                      { padding: 44px 22px; }

  /* CTA section */
  .cta-title   { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Showcase slider — stacked on mobile */
  .sc__stage { height: auto; overflow: visible; }
  .sc__slide {
    position: relative;
    inset: auto;
    display: none;
    flex-direction: column;
    opacity: 1;
    pointer-events: none;
    transition: none;
    grid-template-columns: 1fr;
  }
  .sc__slide.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  .sc__slide.active .sc__body { animation: none; }
  .sc__img { height: 220px; }
  .sc__body {
    padding: 24px 20px 28px;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    gap: 14px;
  }
  .sc__title { font-size: 1.35rem; }
  .sc__annotation { display: none; }
  .sc { overflow: visible; }
  .sc__arrow { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .fcw { bottom: 18px; right: 16px; }
  .fcw__card { width: calc(100vw - 32px); }
  .fcw__trigger-label { display: none; }

  /* Mobile menu: 1-col service grid on tiny screens */
  .mobile-menu__svc-grid { grid-template-columns: 1fr; }

  /* Navbar pill: snug on tiny phones */
  .navbar-wrap { padding: 8px 10px; }
  .navbar      { border-radius: 14px; padding: 7px 7px 7px 14px; }

  /* Reviews */
  .reviews              { padding: 80px 0 52px; }
  .reviews__top         { margin-bottom: 28px; }
  .reviews__rc          { width: 100%; max-width: 100%; margin-left: 0 !important; }
  .reviews__rc-num      { font-size: 2rem; }
  .reviews__rc-caption  { white-space: normal; }
  .reviews__slide       { padding: 28px 20px 24px; }
  .reviews__qtext       { font-size: 0.92rem; line-height: 1.82; }
  .reviews__navbtn      { width: 36px; height: 36px; gap: 7px; }

  /* Hero */
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero__sub   { font-size: 0.92rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  /* CTA */
  .cta-title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .cta-sub   { font-size: 0.88rem; }
}

/* ============================================================
   MOBILE RESPONSIVENESS FIXES — 390px (iPhone 14)
   ============================================================ */

/* ── Global heading sizes on small phones ── */
@media (max-width: 480px) {
  h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── Container horizontal padding reduction ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* ── Hero section — additional fixes ── */
@media (max-width: 480px) {
  .hero { padding: 90px 0 0; }
  .hero__inner { padding: 0 4px; }
  .hero__sub { padding: 0 4px; max-width: 100%; }
  .hero__proof { flex-wrap: wrap; justify-content: center; padding: 7px 12px; }
  .hero__cases-track { gap: 12px; }
  .hero__case { flex: 0 0 200px; height: 130px; }
}

/* ── Sections — reduce large vertical padding ── */
@media (max-width: 768px) {
  .projects  { padding: 72px 0; }
  .werk      { padding: 72px 0 64px; }
  .reviews   { padding: 72px 0 56px; }
  .cta-section { padding: 72px 16px; }
  .svc-showcase { padding-top: 72px; }
}

@media (max-width: 480px) {
  .projects  { padding: 56px 0; }
  .werk      { padding: 56px 0 48px; }
  .reviews   { padding: 56px 0 44px; }
  .cta-section { padding: 56px 16px; }
  .process   { padding: 60px 0; }
  .process__head { margin-bottom: 40px; }
}

/* ── Projects header ── */
@media (max-width: 480px) {
  .projects__header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .projects__header-desc { max-width: 100%; }
}

/* ── Showcase (sc) slider — better mobile sizing ── */
@media (max-width: 480px) {
  .sc__img { height: 180px; }
  .sc__body { padding: 20px 16px 24px; gap: 12px; }
  .sc__title { font-size: 1.2rem; }
  .sc__desc  { font-size: 0.85rem; }
  .sc__footer { padding: 0 16px 0 20px; }
}

/* ── Werk head ── */
@media (max-width: 480px) {
  .werk__head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .werk__head-desc { max-width: 100%; }
  .wcard:not(.wcard--cta) { height: 240px; }
  .wcard--cta { height: 240px; }
  .wcard__overlay { padding: 20px 20px; }
  .wcard__cta-inner { padding: 24px 20px; }
}

/* ── Reviews — better carousel on mobile ── */
@media (max-width: 480px) {
  .rcard { width: calc(100vw - 48px); padding: 28px 24px 24px; }
  .reviews__viewport { padding: 16px 0 28px; }
  .reviews__top { flex-direction: column; gap: 20px; }
  .reviews__rc { width: 100%; max-width: 100%; margin-left: 0 !important; }
}

/* ── CTA section buttons ── */
@media (max-width: 480px) {
  .cta-actions .btn { width: 100%; max-width: 100%; }
  .cta-badge { font-size: 0.68rem; padding: 6px 12px; }
}

/* ── Footer ── */
@media (max-width: 480px) {
  .footer__avail { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer__avail-link { justify-content: flex-start; }
  .footer__main { padding: 40px 0 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .footer__col:last-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer__bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
}

/* ── Floating contact widget — prevent overlap ── */
@media (max-width: 480px) {
  .fcw { bottom: 16px; right: 14px; }
  .fcw__card { width: calc(100vw - 28px); max-height: 85vh; overflow-y: auto; }
  .fcw__trigger { width: 54px; height: 54px; }
}

/* ── Navbar pill ── */
@media (max-width: 390px) {
  .navbar-wrap { padding: 8px 8px; }
  .navbar { padding: 6px 6px 6px 12px; gap: 6px; }
  .navbar__logo img { height: 30px; }
  .hamburger { width: 36px; height: 36px; }
}

/* ── SVC-Showcase tab labels — already handled at 960px but reinforce ── */
@media (max-width: 480px) {
  .svc-showcase__nav { gap: 0.35rem; padding: 14px 10px; }
  .svc-showcase__tab { padding: 0.4rem 0.55rem; }
  .svc-showcase__tab-label { display: none; }
  .svc-showcase__header { margin-bottom: 32px; }
  .svc-showcase__header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
}

/* ── Process section ── */
@media (max-width: 480px) {
  .process__steps { gap: 36px; }
  .process__circle { width: 80px; height: 80px; outline: none; }
  .process__circle svg { width: 28px; height: 28px; }
  .process__cta-wrap { margin-top: 48px; }
  .process__cta-btn { padding: 13px 28px; font-size: 0.92rem; }
}

/* ── Trusted ticker — reduce padding on mobile ── */
@media (max-width: 480px) {
  .trusted { padding: 20px 0; }
  .ticker__item { padding: 0 20px; font-size: 0.82rem; }
}