@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --navy: #0F1E4D;
  --orange: #F18A3D;
  --orange-dark: #d9752c;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.82);
  --radius: 3px;
  --stof:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1.5px, transparent 1.5px, transparent 4px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.07) 0px, rgba(0,0,0,0.07) 1.5px, transparent 1.5px, transparent 4px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hg-fade: 800ms;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: 'Inter', Arial, sans-serif; color: var(--white); background: var(--navy); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.15; }

/* ─── STREEP-LAAG ─── */
.streep-laag {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg,
    transparent 0px, transparent 20px,
    rgba(255,255,255,0.18) 20px, rgba(255,255,255,0.18) 21px,
    transparent 21px, transparent 46px,
    var(--orange) 46px, var(--orange) 48px,
    transparent 48px, transparent 94px,
    var(--orange) 94px, var(--orange) 95px,
    transparent 95px, transparent 115px,
    rgba(255,255,255,0.18) 115px, rgba(255,255,255,0.18) 116px,
    transparent 116px, transparent 160px
  );
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 15%, transparent 70%);
          mask-image: linear-gradient(to bottom, black 0%, black 15%, transparent 70%);
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 20px; left: 50%; z-index: 1000;
  top: calc(20px + env(safe-area-inset-top, 0px));
  transform: translateX(-50%);
  max-width: calc(100% - 48px);
  background: rgba(15,30,77,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  box-shadow: 0 24px 56px -22px rgba(6,10,24,0.6);
  padding: 7px 7px 7px 22px;
  display: flex; align-items: center; gap: 6px;
  transition: background var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(15,30,77,0.97);
  box-shadow: 0 24px 56px -22px rgba(6,10,24,0.8);
}
.nav-logo { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 21px; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 0.01em; margin-right: 6px; white-space: nowrap; }
.logo-dot { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase; padding: 8px 14px; border-radius: 100px; white-space: nowrap; transition: color 200ms, background 200ms; }
.nav-links a:hover { color: var(--white); background: rgba(45,99,214,0.25); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; border-radius: 100px !important; text-transform: none !important; letter-spacing: 0 !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 998; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.mobile-menu-backdrop.open { display: block; opacity: 1; }
.mobile-menu {
  display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--stof), rgba(12,22,58,0.97);
  background-blend-mode: soft-light;
  border-radius: 24px 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 12px 28px 40px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-handle { width: 40px; height: 4px; background: rgba(255,255,255,0.18); border-radius: 2px; margin: 0 auto 28px; }
.mobile-menu a { display: flex; align-items: center; justify-content: space-between; color: var(--white); text-decoration: none; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.7rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color var(--transition); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a::after { content: '→'; font-size: 1.1rem; opacity: 0.3; transition: opacity var(--transition), transform var(--transition); font-family: 'Inter', Arial, sans-serif; font-weight: 400; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu a:hover::after { opacity: 0.8; transform: translateX(4px); }
.mobile-menu a.nav-cta-mobile { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; font-family: 'Inter', Arial, sans-serif; font-weight: 600; justify-content: center; border-bottom: none; }
.mobile-menu a.nav-cta-mobile::after { display: none; }
.mobile-menu a.nav-cta-mobile:hover { background: var(--orange-dark); color: var(--white); }

/* ─── HERO ─── */
#hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: visible; z-index: 1; background: transparent; }
#hero-gallery-canvas {
  position: absolute; inset: 0; z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 52%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, black 52%, transparent 100%);
}
#hero-gallery-canvas img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  transition: opacity var(--hg-fade, 800ms) ease-in-out;
  will-change: opacity;
}
#hero-gallery-canvas img.hg-visible { opacity: 1; }

/* ── Carousel pijlen ── */
.hg-arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  z-index: 3; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(15,30,77,0.35); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75); cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hg-arrow:hover { background: rgba(241,138,61,0.7); border-color: transparent; color: #fff; }
.hg-arrow-prev { left: 32px; }
.hg-arrow-next { right: 32px; }

/* ── Carousel bolletjes ── */
.hg-dots {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px; align-items: center;
}
.hg-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hg-dot.active { background: var(--orange); transform: scale(1.4); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(15,30,77,0.72) 0%, rgba(15,30,77,0.25) 55%, transparent 100%),
    linear-gradient(to bottom, rgba(15,30,77,0.10) 0%, transparent 22%, rgba(15,30,77,0.35) 52%, rgba(15,30,77,0.80) 72%, rgba(15,30,77,0.9) 85%, rgba(15,30,77,0) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto 0 max(40px, calc((100vw - 1200px) / 2 + 40px)); padding: 120px 40px 140px 0; }

/* ─── HERO KICKER ─── */
.hero-kicker { margin-bottom: 30px; }
.hero-kicker-label { display: block; font-family: 'Inter', Arial, sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.hero-carousel-wrap { position: relative; height: 2.6rem; overflow: hidden; width: 340px; }
.hero-carousel-word { position: absolute; top: 0; left: 0; display: inline-block; white-space: nowrap; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--orange); transform: translateY(0); opacity: 1; transition: transform 0.4s ease, opacity 0.4s ease; }
.hero-carousel-word.exit { transform: translateY(100%); opacity: 0; }
.hero-carousel-word.enter-start { transform: translateY(-100%); opacity: 0; transition: none; }

/* ─── HERO TOGGLE ─── */
.hero-toggle { display: inline-flex; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 4px; margin-bottom: 28px; }
.hero-toggle button { background: none; border: none; padding: 10px 24px; border-radius: 50px; font-family: 'Inter', Arial, sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: rgba(255,255,255,0.55); cursor: pointer; transition: background var(--transition), color var(--transition); }
.hero-toggle button:hover { color: rgba(255,255,255,0.85); }
.hero-toggle button.active { background: var(--orange); color: var(--white); }

/* ─── HERO COMPARE ─── */
.hero-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 600px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); transition: opacity 0.25s ease; }
.hero-compare.fade { opacity: 0; }
.hero-compare-col h4 { font-family: 'Inter', Arial, sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.hero-compare-col.yes h4 { color: var(--orange); }
.hero-compare-col.no h4 { color: rgba(255,255,255,0.35); }
.hero-compare-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.88); line-height: 1.5; margin-bottom: 11px; font-weight: 300; }
.hero-compare-col.no .hero-compare-item { color: rgba(255,255,255,0.38); }
.hero-compare-item svg { flex-shrink: 0; margin-top: 3px; width: 13px; height: 13px; }
.hero-compare-dash { flex-shrink: 0; margin-top: 9px; width: 10px; height: 1.5px; background: rgba(255,255,255,0.3); }
.hero-title { font-size: clamp(3rem, 5.5vw, 4.8rem); font-weight: 700; color: var(--white); line-height: 1.1; max-width: 820px; margin-bottom: 16px; transition: opacity 0.25s ease; }
.hero-title em { font-style: italic; color: inherit; }
.hero-title.fade { opacity: 0; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 580px; line-height: 1.6; margin-bottom: 40px; font-weight: 300; transition: opacity 0.25s ease; }
.hero-sub.fade { opacity: 0; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: var(--white); text-decoration: none; padding: 16px 32px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; border-radius: var(--radius); transition: background var(--transition), transform var(--transition); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); text-decoration: none; padding: 16px 32px; font-size: 0.9rem; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.35); border-radius: var(--radius); transition: border-color var(--transition), background var(--transition); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-founders { position: absolute; bottom: 60px; right: 40px; display: flex; align-items: center; gap: 12px; z-index: 2; }
.hero-founder-avatars { display: flex; }
.hero-founder-avatars .avatar-circle { width: 44px; height: 44px; border-radius: 50%; border: 2.5px solid var(--orange); overflow: hidden; margin-left: -12px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; color: var(--white); font-size: 0.9rem; }
.hero-founder-avatars .avatar-circle:first-child { margin-left: 0; }
.hero-founder-avatars img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-founders-text { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
.hero-founders-text strong { color: var(--white); display: block; }

/* ─── VOOR WIE ─── */
#voor-wie { background: transparent; padding: 100px 40px; }
.voor-wie-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.voor-wie-left .section-title { color: var(--white); }
.voor-wie-left .section-title em { font-style: italic; color: inherit; }
.vw-body { font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.8; font-weight: 300; }
.vw-body + .vw-body { margin-top: 16px; }
.vw-actions { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; align-items: flex-start; }
.vw-wa-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.vw-wa-link:hover { color: var(--white); }
.vw-wa-link svg { width: 16px; height: 16px; fill: #25D366; flex-shrink: 0; }
.voor-wie-right { display: flex; flex-direction: column; justify-content: center; }
.vw-foto-wrap { position: relative; width: 100%; max-width: 460px; aspect-ratio: 4 / 3; margin: 0 auto; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 16px 44px rgba(0,0,0,0.3); }
.vw-foto { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* ─── WAT WE DOEN ─── */
#wat-we-doen { background: transparent; padding: 100px 40px; }
.wwd-inner { max-width: 1200px; margin: 0 auto; }
.wwd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.wwd-left .section-title { color: var(--white); }
.wwd-left .section-title em { font-style: italic; color: inherit; }
.wwd-intro { font-size: 1rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; margin-top: 20px; }
.wwd-steps-panel { }
.wwd-step-row { border-bottom: 1px solid rgba(255,255,255,0.08); cursor: pointer; }
.wwd-step-row-head { display: flex; align-items: center; gap: 16px; padding: 22px 0; }
.wwd-step-circle { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.35); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); }
.wwd-step-row.active .wwd-step-circle { background: var(--orange); border-color: var(--orange); color: var(--white); }
.wwd-step-row:hover:not(.active) .wwd-step-circle { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.65); }
.wwd-step-row-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; color: rgba(255,255,255,0.4); font-weight: 700; line-height: 1.25; transition: color var(--transition); }
.wwd-step-row.active .wwd-step-row-title { color: var(--white); }
.step-inline-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--orange); transition: color var(--transition); }
.step-inline-link:hover { color: var(--orange); }
.wwd-step-row:hover:not(.active) .wwd-step-row-title { color: rgba(255,255,255,0.75); }
.wwd-step-row-body { overflow: hidden; max-height: 0; padding-left: 50px; transition: max-height 0.38s ease, padding-bottom 0.38s ease; }
.wwd-step-row.active .wwd-step-row-body { max-height: 140px; padding-bottom: 20px; }
.wwd-step-row-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* ─── HET LOOPPAD (scrollytelling) ─── */
#looppad { position: relative; z-index: 1; height: 700vh; height: 700svh; }
.lp-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; flex-direction: column; }
.lp-top { display: flex; justify-content: space-between; align-items: center; padding: 100px 48px 0; }
.lp-top .section-label { margin-bottom: 0; }
.lp-progress { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); transition: color var(--transition); }
.lp-stage { position: relative; flex: 1; }
.lp-bignum { position: absolute; right: 1vw; top: 50%; transform: translateY(-55%); font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 700; font-size: clamp(11rem, 38vh, 26rem); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(241,138,61,0.26); pointer-events: none; user-select: none; transition: opacity 0.45s ease; }
.lp-bignum.hidden { opacity: 0; }
.lp-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 48px; opacity: 0; transform: translateY(48px); transition: opacity 0.55s ease, transform 0.55s ease; pointer-events: none; }
.lp-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lp-slide.past { transform: translateY(-48px); }
.lp-slide-kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.lp-slide h2 { font-size: clamp(2.2rem, 3.8vw, 3.4rem); color: var(--white); margin-bottom: 18px; max-width: 800px; }
.lp-slide h2 em { font-style: italic; color: inherit; }
.lp-slide h3 { font-size: clamp(1.9rem, 3.4vw, 3rem); color: var(--white); margin-bottom: 16px; max-width: 760px; }
.lp-slide p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 540px; font-weight: 300; }
.lp-slide .btn-wa { margin-top: 20px; }
.lp-finish-avatars { display: flex; justify-content: center; margin-top: 16px; }
.lp-avatar { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; border: 3px solid var(--navy); box-shadow: 0 4px 14px rgba(0,0,0,0.35); background: var(--stof), var(--navy); background-blend-mode: soft-light; }
.lp-avatar:not(:first-child) { margin-left: -18px; }
.lp-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.lp-finish-title { font-style: italic; font-size: clamp(3rem, 6.5vw, 5.2rem) !important; }
.lp-scroll-hint { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lp-routebar { position: relative; height: 150px; flex-shrink: 0; }
.lp-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
#lpPathBase { stroke: rgba(241,138,61,0.32); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 0.5 12; }
#lpPathWalked { stroke: var(--orange); stroke-width: 2.5; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(241,138,61,0.5)); }
.lp-walker { position: absolute; top: 0; left: 0; width: 54px; height: 46px; margin: -40px 0 0 -27px; color: var(--orange); pointer-events: none; z-index: 3; transition: transform 0.1s linear; filter: drop-shadow(0 2px 10px rgba(241,138,61,0.45)); }
.lp-walker svg { width: 100%; height: 100%; display: block; }
.lp-boat svg { transform-origin: 50% 82%; animation: lpBob 2.4s ease-in-out infinite; }
@keyframes lpBob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-3px) rotate(3deg); } }
.lp-wake { position: absolute; left: 2px; top: 68%; display: flex; gap: 4px; pointer-events: none; }
.lp-wake i { width: 5px; height: 5px; border-radius: 50%; background: rgba(241,138,61,0.6); opacity: 0; }
.lp-boat.moving .lp-wake i { animation: lpWake 0.7s ease-out infinite; }
.lp-boat.moving .lp-wake i:nth-child(2) { animation-delay: 0.12s; }
.lp-boat.moving .lp-wake i:nth-child(3) { animation-delay: 0.24s; }
@keyframes lpWake { 0% { opacity: 0.6; transform: translateX(0) scale(1); } 100% { opacity: 0; transform: translateX(-16px) scale(0.3); } }
.lp-dot { position: absolute; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: rgba(241,138,61,0.35); transition: background var(--transition), box-shadow var(--transition), transform var(--transition); z-index: 2; }
.lp-dot::after { content: attr(data-label); position: absolute; top: 16px; left: 50%; transform: translateX(-50%); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); white-space: nowrap; transition: color var(--transition); }
.lp-dot.passed { background: var(--orange); box-shadow: 0 0 16px rgba(241,138,61,0.7); transform: scale(1.3); }
.lp-dot.passed::after { color: var(--orange); }

/* ─── LOOPPAD MINI-SCÈNES ─── */
.lp-scene { margin-bottom: 30px; }
@keyframes lpPop { to { opacity: 1; transform: translateY(0) scale(1); } }
.lp-scene-chat { display: flex; flex-direction: column; gap: 10px; width: 300px; }
.chat-bubble { max-width: 250px; padding: 10px 16px; border-radius: 14px; font-size: 0.85rem; line-height: 1.45; opacity: 0; transform: translateY(14px) scale(0.92); text-align: left; }
.chat-bubble.in { align-self: flex-start; background: rgba(255,255,255,0.1); color: var(--white); border-bottom-left-radius: 4px; }
.chat-bubble.out { align-self: flex-end; background: var(--orange); color: var(--white); border-bottom-right-radius: 4px; }
.lp-slide.active .chat-bubble { animation: lpPop 0.45s cubic-bezier(0.34,1.4,0.64,1) forwards; }
.lp-slide.active .b1 { animation-delay: 0.35s; }
.lp-slide.active .b2 { animation-delay: 1.05s; }
.lp-slide.active .b3 { animation-delay: 1.75s; }
.lp-scene-test { display: flex; flex-direction: column; gap: 14px; width: 320px; }
.test-row { display: flex; align-items: center; gap: 12px; }
.test-row span { width: 90px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); text-align: right; flex-shrink: 0; }
.test-bar { flex: 1; height: 10px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; }
.test-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), #f6a96b); border-radius: 6px; }
.lp-slide.active .test-bar i { animation: lpFill 1.1s cubic-bezier(0.22,1,0.36,1) forwards; }
.lp-slide.active .test-row:nth-child(1) i { animation-delay: 0.35s; }
.lp-slide.active .test-row:nth-child(2) i { animation-delay: 0.6s; }
.lp-slide.active .test-row:nth-child(3) i { animation-delay: 0.85s; }
@keyframes lpFill { to { width: var(--v); } }
.lp-scene-routes { width: 320px; height: 150px; }
.lp-scene-routes .r { fill: none; stroke: rgba(255,255,255,0.25); stroke-width: 2; stroke-dasharray: 420; stroke-dashoffset: 420; }
.lp-scene-routes .r.main { stroke: var(--orange); stroke-width: 2.5; filter: drop-shadow(0 0 5px rgba(241,138,61,0.5)); }
.lp-slide.active .lp-scene-routes .r { animation: lpDraw 1.2s ease forwards; }
.lp-slide.active .lp-scene-routes .r1 { animation-delay: 0.35s; }
.lp-slide.active .lp-scene-routes .r2 { animation-delay: 0.55s; }
.lp-slide.active .lp-scene-routes .r3 { animation-delay: 0.75s; }
@keyframes lpDraw { to { stroke-dashoffset: 0; } }
.lp-scene-routes .rdot { fill: var(--orange); }
.lp-scene-koffie { position: relative; width: 120px; height: 130px; display: flex; align-items: flex-end; justify-content: center; }
.lp-scene-koffie .cup { width: 84px; height: 84px; stroke: var(--orange); fill: none; stroke-width: 1.4; }
.steam { position: absolute; bottom: 86px; width: 8px; height: 26px; border-radius: 8px; background: rgba(255,255,255,0.35); filter: blur(4px); opacity: 0; }
.steam.s1 { left: 38px; } .steam.s2 { left: 56px; } .steam.s3 { left: 74px; }
.lp-slide.active .steam { animation: lpSteam 2.2s ease-in-out infinite; }
.lp-slide.active .s2 { animation-delay: 0.5s; }
.lp-slide.active .s3 { animation-delay: 1s; }
@keyframes lpSteam { 0% { opacity: 0; transform: translateY(6px) scaleY(0.7); } 35% { opacity: 0.7; } 100% { opacity: 0; transform: translateY(-26px) scaleY(1.15); } }
.lp-scene-checkins { display: flex; gap: 20px; }
.check { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; transform: translateY(14px) scale(0.92); }
.check span:last-child { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.check-dot { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--orange); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1rem; background: rgba(241,138,61,0.08); }
.lp-slide.active .check { animation: lpPop 0.5s cubic-bezier(0.34,1.4,0.64,1) forwards; }
.lp-slide.active .check.c1 { animation-delay: 0.4s; }
.lp-slide.active .check.c2 { animation-delay: 0.8s; }
.lp-slide.active .check.c3 { animation-delay: 1.2s; }
.lp-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.lp-confetti i { position: absolute; left: 50%; top: 55%; width: 8px; height: 8px; border-radius: 2px; opacity: 0; background: var(--orange); }
.lp-confetti i:nth-child(3n) { background: #f6a96b; border-radius: 50%; }
.lp-confetti i:nth-child(4n) { background: rgba(255,255,255,0.85); }
.lp-confetti i:nth-child(1)  { --dx: -150px; --dy: -190px; }
.lp-confetti i:nth-child(2)  { --dx: 130px;  --dy: -220px; }
.lp-confetti i:nth-child(3)  { --dx: -70px;  --dy: -250px; }
.lp-confetti i:nth-child(4)  { --dx: 200px;  --dy: -150px; }
.lp-confetti i:nth-child(5)  { --dx: -220px; --dy: -120px; }
.lp-confetti i:nth-child(6)  { --dx: 60px;   --dy: -260px; }
.lp-confetti i:nth-child(7)  { --dx: -180px; --dy: -230px; }
.lp-confetti i:nth-child(8)  { --dx: 240px;  --dy: -200px; }
.lp-confetti i:nth-child(9)  { --dx: -40px;  --dy: -170px; }
.lp-confetti i:nth-child(10) { --dx: 170px;  --dy: -250px; }
.lp-slide.active .lp-confetti i { animation: lpConfetti 1.5s cubic-bezier(0.16,1,0.3,1) forwards; animation-delay: 0.45s; }
@keyframes lpConfetti { 0% { opacity: 0; transform: translate(0,0) rotate(0deg); } 15% { opacity: 1; } 100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(320deg); } }
@media (max-width: 768px) {
  .lp-top { padding: 88px 20px 0; }
  .lp-slide { padding: 0 22px; }
  .lp-bignum { font-size: 9rem; right: -1vw; top: 24%; }
  .lp-scene-chat, .lp-scene-test { width: 260px; }
  .lp-scene-routes { width: 260px; height: 120px; }
  .lp-scene-checkins { gap: 14px; }

  /* ── Mobiele routebar: horizontaal scrollend ── */
  .lp-routebar {
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 24px 24px;
  }
  .lp-routebar::-webkit-scrollbar { display: none; }

  /* SVG-lijn en walker verbergen — mobiel gebruikt de strip */
  .lp-svg { display: none; }
  .lp-walker { display: none; }

  /* Dots vervangen door inline strip */
  .lp-dot { display: none; }

  /* Strip container wordt via JS ingebouwd — zie lp-mobile-strip */
  .lp-mobile-strip {
    position: relative;
    flex-shrink: 0;
  }

  .lp-mobile-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 2;
  }

  .lp-mobile-node-dot {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.75rem; font-weight: 700;
    color: rgba(255,255,255,0.4);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  }

  .lp-mobile-node.reached .lp-mobile-node-dot {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 12px rgba(241,138,61,0.6);
  }

  .lp-mobile-node-label {
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    transition: color 0.3s ease;
    margin-top: 4px;
  }

  .lp-mobile-node.reached .lp-mobile-node-label { color: var(--orange); }

  /* Bootje boven de golflijn */
  .lp-mobile-boat {
    position: absolute;
    width: 40px; height: 34px;
    color: var(--orange);
    filter: drop-shadow(0 2px 10px rgba(241,138,61,0.55));
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1), top 0.4s cubic-bezier(0.4,0,0.2,1);
    animation: lpBob 2.4s ease-in-out infinite;
    transform-origin: 50% 80%;
    pointer-events: none;
    z-index: 3;
  }

  .lp-mobile-boat svg { width: 100%; height: 100%; display: block; }
}

/* Korte viewports (kleine laptopvensters, liggend mobiel): looppad compacter
   houden zodat de content nooit over de vaarroute-balk heen valt. */
@media (max-height: 720px) and (min-width: 769px) {
  .lp-top { padding-top: 64px; }
  .lp-routebar { height: 110px; }
  .lp-slide-kicker { margin-bottom: 8px; }
  .lp-slide h3 { margin-bottom: 10px; }
  .lp-finish-title { font-size: clamp(2.2rem, 5.5vw, 3.6rem) !important; }
  .lp-finish-avatars { margin-top: 10px; }
  .lp-slide .btn-wa { margin-top: 14px; }
}

/* ─── KANSEN TEASER ─── */
#kansen-teaser { background: transparent; padding: 100px 40px; }
.kt-inner { max-width: 1200px; margin: 0 auto; }
.kt-header { margin-bottom: 48px; }
.kt-header .section-title { color: var(--white); }
.kt-header .section-title em { font-style: italic; color: inherit; }
.kt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.kt-card { background: var(--orange); border: none; border-radius: 10px; padding: 32px 28px; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); cursor: pointer; text-decoration: none; display: block; position: relative; overflow: hidden; }
.kt-card::before { content: ''; position: absolute; inset: 0; background: var(--stof); opacity: 0.35; pointer-events: none; }
.kt-card:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(241,138,61,0.25); }
.kt-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); display: block; margin-bottom: 12px; position: relative; z-index: 1; }
.kt-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 8px; position: relative; z-index: 1; }
.kt-card p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.7; position: relative; z-index: 1; }
.kt-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-ghost-navy { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); text-decoration: none; padding: 15px 28px; font-size: 0.9rem; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.35); border-radius: var(--radius); transition: border-color var(--transition), background var(--transition); }
.btn-ghost-navy:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── SECTION SHARED ─── */
section { position: relative; z-index: 1; }
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.section-title { font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 700; line-height: 1.05; margin-bottom: 20px; }
.section-intro { font-size: 1rem; color: var(--text-muted); max-width: 540px; line-height: 1.8; font-weight: 300; }

/* ─── DNA ─── */
#dna { background: transparent; padding: 120px 40px; }
.dna-inner { max-width: 1200px; margin: 0 auto; }
.dna-header { margin-bottom: 72px; }
.dna-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.dna-card { background: var(--stof), var(--orange); background-blend-mode: soft-light; padding: 48px 36px; position: relative; overflow: hidden; transition: background var(--transition), transform var(--transition); }
.dna-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--orange); transition: height 0.4s ease; }
.dna-card:hover { background: var(--stof), rgba(45,99,214,0.7); background-blend-mode: soft-light; transform: translateY(-4px); }
.dna-card:hover::before { height: 100%; }
.dna-number { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 24px; }
.dna-icon { width: 48px; height: 48px; margin-bottom: 24px; background: rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.dna-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.dna-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.dna-card .dna-sub { font-size: 0.7rem; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.dna-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── SERVICES ─── */
#diensten { background: transparent; padding: 120px 40px; }
.diensten-inner { max-width: 1200px; margin: 0 auto; }
.diensten-header { margin-bottom: 72px; }
.diensten-header .section-title { color: var(--white); }
.diensten-header .section-intro { color: var(--text-muted); }
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dienst-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 48px 40px; border-radius: 10px; transition: background var(--transition), border-color var(--transition), transform var(--transition); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.dienst-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.dienst-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); transform: translateY(-4px); }
.dienst-card:hover::after { transform: scaleX(1); }
.dienst-num { font-size: 0.7rem; color: var(--orange); letter-spacing: 0.15em; font-weight: 600; margin-bottom: 32px; }
.dienst-icon { width: 56px; height: 56px; border: 1.5px solid rgba(255,255,255,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.dienst-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.dienst-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
.dienst-card .dienst-tagline { font-style: italic; color: var(--orange); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.95rem; margin-bottom: 20px; }
.dienst-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; flex: 1; }
.dienst-cta { margin-top: 32px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; border: none; color: var(--white); text-decoration: none; padding: 12px 20px; border-radius: var(--radius); font-size: 0.86rem; font-weight: 600; transition: background var(--transition), transform var(--transition); white-space: nowrap; box-shadow: 0 4px 16px rgba(37,211,102,0.25); }
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-wa svg { width: 16px; height: 16px; fill: var(--white); flex-shrink: 0; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--text-muted); text-decoration: none; padding: 11px 18px; border-radius: var(--radius); font-size: 0.82rem; font-weight: 500; transition: border-color var(--transition), color var(--transition); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* ─── REVIEWS CAROUSEL ─── */
.reviews-section { padding: 60px 0; overflow: hidden; background: transparent; position: relative; z-index: 1; }
.reviews-header { max-width: 1200px; margin: 0 auto 40px; padding: 0 40px; }
.carousel-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(to right, #0F1E4D, transparent); z-index: 2; pointer-events: none; }
.carousel-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(to left, #0F1E4D, transparent); z-index: 2; pointer-events: none; }
.reviews-section.dark .carousel-fade-l { background: linear-gradient(to right, #0F1E4D, transparent); }
.reviews-section.dark .carousel-fade-r { background: linear-gradient(to left, #0F1E4D, transparent); }
.carousel-track { display: flex; gap: 20px; width: max-content; animation: marquee 32s linear infinite; padding: 4px 0; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card { background: var(--stof), var(--orange); background-blend-mode: soft-light; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 28px 32px; width: 320px; flex-shrink: 0; }
.reviews-section.dark .review-card { background: var(--stof), var(--orange); background-blend-mode: soft-light; border-color: rgba(255,255,255,0.1); }
.review-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviews-section.dark .review-text { color: rgba(255,255,255,0.8); }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; color: var(--white); font-size: 0.75rem; flex-shrink: 0; }
.reviews-section.dark .review-avatar { background: var(--orange); }
.review-meta strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); }
.reviews-section.dark .review-meta strong { color: var(--white); }
.review-meta span { font-size: 0.75rem; color: var(--text-muted); }
.reviews-section.dark .review-meta span { color: var(--text-muted); }

/* ─── COMMUNITY ─── */
#community { background: transparent; padding: 120px 40px 60px; }
.community-inner { max-width: 1200px; margin: 0 auto; }
.community-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.community-text .section-title { margin-bottom: 20px; }
.community-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; font-size: 1rem; font-weight: 300; }
.community-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.community-bullet { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.community-bullet::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
.community-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 200px; gap: 12px; }
.community-images img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }
.community-images img:first-child { grid-column: 1 / -1; }
.community-cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── BEDRIJVEN ─── */
#bedrijven { background: transparent; padding: 100px 40px; }
.bedrijven-inner { max-width: 1200px; margin: 0 auto; }
.bedrijven-header { margin-bottom: 48px; }
.bedrijven-header .section-title { color: var(--white); }
.bedrijven-header .section-title em { font-style: italic; color: inherit; }
.bedrijven-header .section-intro { color: var(--text-muted); max-width: 600px; }
.bedrijven-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.bedrijven-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 36px 28px; position: relative; overflow: hidden; transition: background var(--transition), border-color var(--transition); }
.bedrijven-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.bedrijven-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.bedrijven-card:hover::after { transform: scaleX(1); }
.bedrijven-card-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; color: var(--orange); margin-bottom: 20px; }
.bedrijven-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.bedrijven-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
.bedrijven-bottom { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: center; }
.bedrijven-quote { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-left: 4px solid var(--orange); padding: 36px 40px; border-radius: 0 10px 10px 0; }
.bedrijven-quote blockquote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: 24px; }
.quote-author { display: flex; align-items: center; gap: 16px; }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.quote-meta { display: flex; flex-direction: column; gap: 4px; }
.quote-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.quote-role { font-size: 0.8rem; color: var(--text-muted); }
.bedrijven-cta-mini { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; color: var(--orange); text-decoration: none; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; transition: gap var(--transition); }
.bedrijven-cta-mini:hover { gap: 14px; }

/* ─── PROCESS ─── */
#process { background: transparent; padding: 120px 40px; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-intro { margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5%); right: calc(12.5%); height: 1px; background: rgba(255,255,255,0.12); z-index: 0; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; transition: background var(--transition); }
.process-step:hover .step-circle { background: var(--orange); }
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.process-cta { text-align: center; margin-top: 60px; }

/* ─── REFERRAL ─── */
#referral { background: transparent; padding: 80px 40px; }
.referral-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.referral-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.referral-inner h2 { font-size: clamp(2rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 20px; }
.referral-inner h2 em { font-style: italic; color: inherit; }
.referral-inner p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 560px; margin: 0 auto 32px; font-weight: 300; }
.referral-steps { display: flex; justify-content: center; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; }
.referral-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.referral-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; font-weight: 700; }
.referral-step p { font-size: 0.82rem; color: var(--text-muted); max-width: 140px; text-align: center; margin: 0; }

/* ─── REUSABLE BUTTONS ─── */
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--orange); text-decoration: none; padding: 16px 32px; font-size: 0.9rem; font-weight: 600; border-radius: var(--radius); white-space: nowrap; transition: background var(--transition), transform var(--transition); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); text-decoration: none; padding: 16px 32px; font-size: 0.9rem; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--radius); white-space: nowrap; transition: border-color var(--transition), background var(--transition); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── WA FLOAT ─── */
.wa-float { position: fixed; bottom: 32px; right: 32px; bottom: calc(32px + env(safe-area-inset-bottom, 0px)); right: calc(32px + env(safe-area-inset-right, 0px)); z-index: 999; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: #25D366; color: var(--white); text-decoration: none; border-radius: 50%; box-shadow: 0 8px 32px rgba(37,211,102,0.35); transition: transform var(--transition), box-shadow var(--transition); }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
.wa-float svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }

/* ─── KANSEN ALERT POPUP ─── */
.kansen-alert {
  position: fixed; bottom: -320px; right: 24px; width: 310px;
  background: var(--navy); border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 9998; transition: bottom 0.55s cubic-bezier(0.34, 1.2, 0.64, 1); overflow: hidden;
}
.kansen-alert.visible { bottom: 108px; }
.kansen-alert-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px 0; }
.kansen-alert-label { display: flex; align-items: center; gap: 7px; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); }
.kansen-alert-label svg { width: 13px; height: 13px; stroke: var(--orange); fill: none; stroke-width: 2; }
.kansen-alert-close { background: none; border: none; color: rgba(255,255,255,0.35); cursor: pointer; font-size: 1.3rem; line-height: 1; padding: 0 2px; transition: color var(--transition); }
.kansen-alert-close:hover { color: var(--white); }
.kansen-alert-body { padding: 10px 18px 0; }
.kansen-alert-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.kansen-alert-title em { font-style: italic; color: inherit; }
.kansen-alert-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.kansen-alert-item { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.kansen-alert-item::before { content: ''; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.kansen-alert-actions { padding: 0 18px 18px; display: flex; flex-direction: column; gap: 7px; }
.kansen-alert-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 16px; border-radius: var(--radius); font-size: 0.83rem; font-weight: 600; text-decoration: none; transition: background var(--transition), transform var(--transition); border: none; cursor: pointer; font-family: 'Inter', Arial, sans-serif; }
.kansen-alert-btn:hover { transform: translateY(-1px); }
.kansen-alert-btn.primary { background: var(--orange); color: var(--white); }
.kansen-alert-btn.primary:hover { background: var(--orange-dark); }
.kansen-alert-btn.primary svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }
.kansen-alert-btn.wa { background: #25D366; color: var(--white); }
.kansen-alert-btn.wa:hover { background: #1ebe5c; }
.kansen-alert-btn.wa svg { width: 14px; height: 14px; fill: white; flex-shrink: 0; }
@media (max-width: 480px) { .kansen-alert { right: 12px; left: 12px; width: auto; } }

/* ─── FOOTER ─── */
footer { background: transparent; padding: 72px 40px 32px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-brand h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 16px; }
.footer-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: border-color var(--transition), background var(--transition); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; }
.footer-social:hover { border-color: var(--orange); background: rgba(241,138,61,0.1); }
.footer-social:hover svg { stroke: var(--orange); }
.footer-social.insta svg { stroke: #E4405F; }
.footer-social.insta:hover svg { stroke: #E4405F; }
.footer-social.mail svg { stroke: none; }
.footer-social.mail:hover svg { stroke: none; }
.footer-social.linkedin { background: rgba(10,102,194,0.15); border-color: transparent; }
.footer-social.linkedin svg { fill: #0A66C2; stroke: none; }
.footer-social.linkedin:hover { border-color: transparent; background: rgba(10,102,194,0.25); }
.footer-social.linkedin:hover svg { fill: #0A66C2; }

/* ─── FOUNDERS ─── */
#founders { background: transparent; overflow: hidden; }
.founders-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: stretch; padding: 100px 40px 80px; }
.founders-left { display: flex; flex-direction: column; gap: 24px; }
.founders-left .section-label { margin-bottom: 0; }
.founders-title { color: var(--white); margin-top: -8px; margin-bottom: 0; line-height: 1.15; padding-bottom: 4px; overflow: visible; }
.founders-title em { font-style: italic; color: inherit; }
.founders-body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; max-width: 360px; }
.founders-photos { display: flex; align-items: center; justify-content: center; }
.founders-together-wrap { position: relative; width: 100%; max-width: 380px; aspect-ratio: 4 / 5; margin: 0 auto; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 16px 44px rgba(0,0,0,0.3); }
.founders-together-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-caption { font-size: 0.72rem; color: var(--text-muted); padding: 10px 0 4px; letter-spacing: 0.03em; }
.founder-flip-card { position: relative; height: 520px; perspective: 1200px; cursor: pointer; }
.flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; }
.founder-flip-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.flip-front img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.flip-back { background: var(--stof), var(--navy); background-blend-mode: soft-light; transform: rotateY(180deg); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px 32px; }
.flip-back-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 14px; display: block; }
.flip-back p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 300; margin-bottom: 14px; }
.founder-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; color: var(--orange); font-size: 0.92rem; line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; margin-bottom: 0 !important; }

/* ─── KOOPMAN NOTA ─── */
.koopman-nota { background: var(--stof), var(--navy); background-blend-mode: soft-light; border: 1px solid rgba(255,255,255,0.14); box-shadow: 3px 4px 20px rgba(0,0,0,0.3); border-radius: 10px; padding: 24px 28px 30px; position: relative; transform: rotate(-1deg); }
.koopman-nota::after { content: ''; position: absolute; bottom: 0; right: 0; width: 22px; height: 22px; background: linear-gradient(225deg, #0F1E4D 50%, transparent 50%); }
.koopman-nota-word { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 4px; }
.koopman-nota-type { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; border-bottom: 1px dashed rgba(255,255,255,0.2); padding-bottom: 12px; }
.koopman-nota p { font-size: 0.8rem; color: rgba(255,255,255,0.85); line-height: 1.75; font-weight: 300; margin-bottom: 8px; }
.koopman-nota p:last-child { margin-bottom: 0; }
.koopman-nota em { font-style: italic; color: var(--orange); font-weight: 500; }

/* ─── QUOTE MARQUEE ─── */
#quote-marquee { background: transparent; padding: 70px 0 0; overflow: hidden; position: relative; z-index: 1; }
.qm-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
#quote-marquee:hover .qm-track { animation-play-state: paused; }
.qm-track span {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 7.5rem); line-height: 1.1; white-space: nowrap;
  color: rgba(255,255,255,0.05);
  -webkit-text-stroke: 1px rgba(255,255,255,0.16);
  transition: color 0.6s ease, -webkit-text-stroke-color 0.6s ease;
}
#quote-marquee:hover .qm-track span { color: rgba(241,138,61,0.10); -webkit-text-stroke-color: rgba(241,138,61,0.5); }

/* ─── CONTACT ─── */
#contact { background: transparent; padding: 100px 40px; }
.contact-simple-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-simple-header { margin-bottom: 52px; }
.contact-simple-header .section-title { color: var(--white); }
.contact-simple-header .section-title em { color: inherit; font-style: italic; }
.contact-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.contact-option { display: flex; flex-direction: column; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 32px 16px; text-decoration: none; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.contact-option:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
.contact-option-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); margin-bottom: 4px; }
.contact-option-icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.55); fill: none; stroke-width: 1.5; transition: stroke var(--transition); }
.contact-option:hover .contact-option-icon svg { stroke: var(--orange); }
.contact-option.wa .contact-option-icon { background: rgba(37,211,102,0.12); }
.contact-option.wa .contact-option-icon svg { fill: #25D366; stroke: none; }
.contact-option.wa:hover .contact-option-icon svg { fill: #1ebe5c; }
.contact-option.insta .contact-option-icon svg { stroke: #E4405F; }
.contact-option.insta:hover .contact-option-icon svg { stroke: #E4405F; }
.contact-option.phone .contact-option-icon { background: rgba(52,199,89,0.12); }
.contact-option.phone .contact-option-icon svg { stroke: #34C759; }
.contact-option.phone:hover .contact-option-icon svg { stroke: #2ba84a; }
.contact-option.mail .contact-option-icon svg { stroke: none; }
.contact-option.mail:hover .contact-option-icon svg { stroke: none; }
.contact-option.linkedin .contact-option-icon { background: rgba(10,102,194,0.12); }
.contact-option.linkedin .contact-option-icon svg { fill: #0A66C2; stroke: none; }
.contact-option.linkedin:hover .contact-option-icon svg { fill: #0854a0; }
.contact-option-label { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.contact-option-sub { font-size: 0.75rem; color: var(--text-muted); }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .dna-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .bedrijven-cards { grid-template-columns: 1fr; }
  .bedrijven-bottom { grid-template-columns: 1fr; }
  .voor-wie-inner { grid-template-columns: 1fr; gap: 48px; }
  .wwd-layout { grid-template-columns: 1fr; }
  .kt-grid { grid-template-columns: 1fr 1fr; }
  .community-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* NAV */
  nav { left: 16px; right: 16px; transform: none; max-width: none; padding: 10px 14px; justify-content: center; position: fixed; }
  .nav-logo { margin-right: 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); }

  /* HERO */
  #hero { min-height: 100svh; align-items: flex-end; }
  #hero-gallery-canvas {
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 92%);
            mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 92%);
  }
  .hero-overlay {
    background:
      linear-gradient(to right, rgba(15,30,77,0.55) 0%, rgba(15,30,77,0.15) 70%, transparent 100%),
      linear-gradient(to bottom, rgba(15,30,77,0.15) 0%, transparent 25%, rgba(15,30,77,0.55) 65%, rgba(15,30,77,0.9) 85%, rgba(15,30,77,0) 100%);
  }
  .hero-content { padding: 0 20px 56px; margin: 0; max-width: 100%; }
  .hero-kicker { margin-bottom: 10px; }
  .hero-kicker-label { font-size: 0.65rem; letter-spacing: 0.1em; }
  .hero-carousel-wrap { height: 2rem; }
  .hero-toggle { margin-bottom: 14px; display: inline-flex; width: auto; }
  .hero-toggle button { padding: 7px 16px; font-size: 0.75rem; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); margin-bottom: 12px; line-height: 1.1; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 18px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 8px; width: 100%; max-width: 320px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { justify-content: center; width: 100%; padding: 13px 24px; font-size: 0.85rem; }
  .hero-compare { grid-template-columns: 1fr; gap: 20px; max-width: 100%; }
  .hero-founders { display: none; }
  .hg-arrow { display: none; }
  .hg-dots { bottom: 20px; }

  /* ALGEMEEN */
  #voor-wie, #wat-we-doen, #kansen-teaser, #dna, #diensten, #community, #bedrijven, #process, #contact, #referral { padding: 64px 24px; }
  .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* VOOR WIE */
  .voor-wie-inner { grid-template-columns: 1fr; gap: 40px; }
  .vw-foto-wrap { max-width: 240px; margin: 0 auto; }
  .vw-actions { width: 100%; }
  .vw-actions .btn-primary { width: 100%; justify-content: center; }

  /* FOUNDERS */
  .founders-layout { grid-template-columns: 1fr; padding: 56px 24px 0; gap: 36px; }
  .founders-left { padding-bottom: 0; }
  .founders-together-wrap { max-width: 260px; }
  .koopman-nota { transform: none; margin-top: 32px; }

  /* WAT WE DOEN */
  .wwd-layout { grid-template-columns: 1fr; gap: 40px; }
  .wwd-step-row-title { font-size: 1.15rem; }

  /* KANSEN */
  .kt-grid { grid-template-columns: 1fr; gap: 16px; }
  .kt-card { padding: 24px 20px; }
  .kt-cta { flex-direction: column; gap: 12px; }
  .kt-cta .btn-primary, .kt-cta .btn-secondary { width: 100%; justify-content: center; }

  /* DIENSTEN */
  .diensten-grid { grid-template-columns: 1fr; }
  .diensten-header { margin-bottom: 32px; }

  /* COMMUNITY */
  .community-layout { grid-template-columns: 1fr; gap: 40px; }
  .community-images { grid-template-rows: 180px 140px; }

  /* REVIEWS */
  .reviews-track { gap: 16px; }
  .review-card { min-width: 280px; padding: 28px 24px; }
  .reviews-header { padding: 0; margin-bottom: 32px; }

  /* BEDRIJVEN */
  .bedrijven-cards { grid-template-columns: 1fr; }
  .bedrijven-bottom { grid-template-columns: 1fr; gap: 16px; }
  .bedrijven-header { margin-bottom: 32px; }

  /* REFERRAL */
  .referral-steps { flex-direction: column; gap: 0; align-items: center; }
  .referral-step { flex-direction: row; align-items: flex-start; gap: 20px; width: 100%; max-width: 320px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .referral-step:last-child { border-bottom: none; }
  .referral-step-num { flex-shrink: 0; }
  .referral-step p { text-align: left; max-width: none; font-size: 0.9rem; padding-top: 10px; }

  /* CONTACT */
  .contact-options { grid-template-columns: 1fr; gap: 12px; }
  .contact-simple-header { margin-bottom: 32px; }

  /* PROCESS */
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  /* DNA */
  .dna-grid { grid-template-columns: 1fr; }

  /* FOOTER */
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .founder-flip-card { height: 320px; }
  .contact-options { grid-template-columns: 1fr; }
  .kt-grid { grid-template-columns: 1fr; }
}
