:root {
  --teal: #61C1B6;
  --teal-ink: #61C1B6;  /* on-dark accent text color */
  --teal-2: oklch(0.78 0.10 180);
  --magenta: #D65192;
  --magenta-ink: #D65192;
  --magenta-2: oklch(0.65 0.22 350);
  --bg: #0A0A0B;
  --bg-2: #111114;
  --bg-3: #17171C;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #FFFFFF;
  --text-2: rgba(255,255,255,0.72);
  --text-3: rgba(255,255,255,0.48);
  --anim: 1;
  --accent-intensity: 1;
}

[data-theme="light"] {
  --bg: #F7F5F0;        /* warm off-white, calm */
  --bg-2: #FFFFFF;      /* cards / panels */
  --bg-3: #EDE9E1;      /* subtle inset */
  --line: rgba(10,20,30,0.09);
  --line-2: rgba(10,20,30,0.16);
  --text: #14161A;
  --text-2: rgba(20,22,26,0.70);
  --text-3: rgba(20,22,26,0.50);
  --teal-ink: #1E6F66;      /* darker for contrast on white */
  --magenta-ink: #B03672;   /* darker for contrast on white */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body { background: var(--bg); transition: background 0.4s ease, color 0.4s ease; }

.mono { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* subtle dot grid */
.grid-bg {
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--magenta);
  color: #fff;
}
.btn-primary:hover { background: #c13f80; transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--magenta); }
.btn-teal { background: var(--teal); color: #000; }
.btn-teal:hover { background: #4db0a5; transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--teal); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--text); }

/* shine */
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }

/* Layout */
.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
[data-theme="light"] .nav.scrolled { background: rgba(250,250,248,0.82); border-bottom-color: rgba(0,0,0,0.06); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 10px 14px;
  color: var(--text-2);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  cursor: pointer;
  background: none; border: none;
  font-family: inherit;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--bg-3); }
.nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--magenta);
}

/* Desktop dropdown menu */
.nav-menu-item { position: relative; }
.nav-link.has-menu { display: inline-flex; align-items: center; gap: 6px; }
.nav-link.has-menu svg { transition: transform 0.25s cubic-bezier(.2,.8,.2,1); opacity: 0.7; }
.nav-link.has-menu.open svg { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 20px 60px -20px rgba(10,20,30,0.25), 0 2px 8px rgba(10,20,30,0.06);
  z-index: 60;
}
[data-theme="dark"] .nav-dropdown { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6); }
.nav-dropdown::before {
  content: ''; position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nav-dropdown.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd-item {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  background: none; border: none;
  color: var(--text);
  font-family: inherit; font-size: 14px; font-weight: 600;
  text-align: left; width: 100%; cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: -0.005em;
}
.nav-dd-item:hover { background: var(--bg-3); }
.nav-dd-item.active { background: var(--bg-3); color: var(--magenta-ink); }
.nav-dd-label { display: block; }
.nav-dd-desc { display: block; font-size: 12px; font-weight: 400; color: var(--text-3); margin-top: 3px; line-height: 1.4; }

@media (max-width: 960px) {
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .nav-cta { display: none; }
}

/* Mobile menu */
.burger { display: none; background: none; border: 1px solid var(--line-2); width: 44px; height: 44px; border-radius: 10px; cursor: pointer; color: var(--text); align-items: center; justify-content: center; }
@media (max-width: 960px) { .burger { display: flex; } }
.burger-lines { display: flex; flex-direction: column; gap: 4px; width: 18px; }
.burger-lines span { height: 1.5px; background: currentColor; border-radius: 2px; transition: all 0.3s; }
.burger.open .burger-lines span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.open .burger-lines span:nth-child(2) { opacity: 0; }
.burger.open .burger-lines span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 45;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(.7,.0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-list { display: flex; flex-direction: column; gap: 0; }
.mm-group { display: flex; flex-direction: column; padding: 18px 0 8px; border-bottom: 1px solid var(--line); }
.mm-group-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.mm-group .mobile-menu-link { padding: 12px 0; font-size: 20px; border-bottom: none; }
.mobile-menu-link {
  padding: 18px 0;
  font-size: 22px; font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
  letter-spacing: -0.01em;
}
.mobile-menu-link.active { color: var(--magenta-ink); }
.mobile-menu-link svg { opacity: 0.6; }
.mobile-menu-link:hover svg { opacity: 1; transform: translateX(2px); transition: transform 0.2s, opacity 0.2s; }
.mobile-menu-link span { opacity: 0; transform: translateX(-20px); transition: all 0.5s; }
.mobile-menu.open .mobile-menu-link span { opacity: 1; transform: translateX(0); }

/* Reveal base */
.reveal { opacity: 0; transform: none; transition: opacity calc(0.8s / var(--anim, 1)) cubic-bezier(.2,.7,.2,1), transform calc(0.8s / var(--anim, 1)) cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.up { transform: translateY(14px); }
.reveal.left { transform: translateX(-14px); }
.reveal.right { transform: translateX(14px); }

/* Delayed entry animations (no scroll observer needed). Use --anim-delay inline to stagger. */
.anim-up,
.anim-right,
.anim-left {
  opacity: 0;
  animation-duration: calc(0.9s / var(--anim, 1));
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
  animation-fill-mode: forwards;
  animation-delay: calc(var(--anim-delay, 0s) / var(--anim, 1));
  will-change: opacity, transform;
}
.anim-up    { transform: translateY(14px); animation-name: riseIn; }
.anim-right { transform: translateX(16px); animation-name: slideInRight; }
.anim-left  { transform: translateX(-16px); animation-name: slideInLeft; }
@keyframes riseIn       { to { opacity: 1; transform: none; } }
@keyframes slideInRight { to { opacity: 1; transform: none; } }
@keyframes slideInLeft  { to { opacity: 1; transform: none; } }

/* When the user sets Animations = Off, disable all motion but keep final states visible. */
.anim-off *, .anim-off *::before, .anim-off *::after {
  animation-duration: 0.001ms !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  transition-delay: 0s !important;
}
.anim-off .reveal { opacity: 1 !important; transform: none !important; }
.anim-off .anim-up, .anim-off .anim-right, .anim-off .anim-left { opacity: 1 !important; transform: none !important; }
.anim-off .hero-title .word > span, .anim-off .stub-title .word > span { transform: none !important; }

/* Hero */
.hero { position: relative; padding: 148px 0 8px; overflow: visible; isolation: isolate; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 18px; } .hero { padding: 112px 0 6px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 28px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px oklch(0.78 0.10 180 / 0.2); animation: pulse calc(2s / var(--anim, 1)) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px oklch(0.78 0.10 180 / 0.2); } 50% { box-shadow: 0 0 0 8px oklch(0.78 0.10 180 / 0.05); } }

h1.hero-title {
  font-size: clamp(42px, 6.5vw, 92px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
h1.hero-title .accent { color: var(--magenta-ink); font-style: italic; font-weight: 600; }
h1.hero-title .word { display: inline-block; overflow: hidden; padding: 0.14em 0.06em 0.22em 0.06em; margin: 0 0.08em 0 0; line-height: 1; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
h1.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise calc(0.9s / var(--anim, 1)) cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--d, 0s) / var(--anim, 1));
}
@keyframes rise { to { transform: translateY(0); } }

.hero-sub { font-size: 19px; line-height: 1.6; color: var(--text-2); max-width: 560px; margin-bottom: 24px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual { position: relative; aspect-ratio: 1/1.05; border-radius: 24px; overflow: visible; }
.hero-visual .photo { border-radius: inherit; overflow: hidden; height: 100%; }
.hero-visual .ph-caption { position: absolute; left: 20px; top: 20px; z-index: 2; color: var(--text-2); }

.placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(255,255,255,0.035) 14px, rgba(255,255,255,0.035) 28px),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: inherit;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .placeholder {
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(0,0,0,0.035) 14px, rgba(0,0,0,0.035) 28px),
    var(--bg-2);
}
.placeholder .ph-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  padding: 20px;
}

/* Hero floating UI bits */
.hero-badge {
  position: absolute; z-index: 3;
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  display: flex; gap: 12px; align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  animation: float calc(6s / var(--anim, 1)) ease-in-out infinite;
  max-width: calc(100% - 24px);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-badge.b1 { top: 14px; right: 14px; animation-delay: 0s; }
.hero-badge.b2 { bottom: 14px; left: 14px; animation-delay: 2s; }

.hero-stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.hero-stat { padding: 20px 16px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.hero-stat-num .unit { color: var(--teal-ink); }
.hero-stat-label { color: var(--text-2); font-size: 14px; }
@media (max-width: 720px) { .hero-stats-strip { grid-template-columns: 1fr; } .hero-stat { border-right: none; border-bottom: 1px solid var(--line); } .hero-stat:last-child { border-bottom: none; } }

/* Sections */
section.sec { padding: 80px 0; position: relative; }
@media (max-width: 960px) { section.sec { padding: 64px 0; } }
@media (max-width: 720px) { section.sec { padding: 48px 0; } }

.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; } }
.sec-kicker { color: var(--magenta-ink); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sec-kicker::before { content: ''; width: 28px; height: 1px; background: var(--magenta-ink); }
.sec-title { font-size: clamp(32px, 4vw, 54px); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; overflow-wrap: break-word; hyphens: auto; }
.sec-title .accent { color: var(--teal-ink); font-style: italic; font-weight: 600; }
.sec-intro { color: var(--text-2); font-size: 17px; line-height: 1.6; max-width: 520px; }

/* Specialismen cards */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 900px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .specs-grid { grid-template-columns: 1fr; } }

.spec-card {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s ease;
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.spec-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  mix-blend-mode: overlay;
}
.spec-card:hover::before { opacity: 0.16; }
.spec-card:hover { background: var(--bg-2); }
.spec-card > * { position: relative; z-index: 1; }

.spec-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--text-3); }
.spec-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  margin: 18px 0 22px;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.spec-card:hover .spec-icon { transform: rotate(-6deg) scale(1.05); border-color: var(--teal-ink); }
.spec-icon svg { width: 26px; height: 26px; stroke: var(--teal-ink); stroke-width: 1.6; fill: none; }

.spec-title { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.spec-desc { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.spec-arrow {
  position: absolute; bottom: 32px; right: 32px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translate(-6px, 6px);
  transition: all 0.4s ease;
}
.spec-card:hover .spec-arrow { opacity: 1; transform: translate(0,0); background: var(--magenta); border-color: var(--magenta-ink); }
.spec-arrow svg { width: 14px; height: 14px; stroke: var(--text); stroke-width: 1.8; fill: none; transition: stroke 0.3s; }
.spec-card:hover .spec-arrow svg { stroke: #fff; }

/* Doorlooptijden table */
.dt-wrap { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--bg-2); }
.dt-row {
  display: grid;
  grid-template-columns: 0.3fr 2fr 1fr 1fr 1.2fr;
  padding: 22px 28px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.dt-row:last-child { border-bottom: none; }
.dt-row:hover { background: var(--bg-3); }
.dt-row.head {
  background: var(--bg-3);
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 28px;
}
.dt-row.head:hover { background: var(--bg-3); }
.dt-num { font-family: 'JetBrains Mono', monospace; color: var(--text-3); font-size: 13px; }
.dt-name { font-weight: 600; font-size: 16px; }
.dt-name small { display: block; color: var(--text-3); font-weight: 400; margin-top: 2px; font-size: 13px; }
.dt-days { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.dt-days span { color: var(--teal-ink); }
.dt-spoed { color: var(--magenta-ink); font-weight: 600; font-size: 14px; }
.dt-material { color: var(--text-2); font-size: 14px; }

@media (max-width: 900px) {
  .dt-row { grid-template-columns: 1fr 1fr; padding: 18px 20px; gap: 12px; }
  .dt-row.head { display: none; }
  .dt-num { display: none; }
  .dt-name { grid-column: 1 / -1; }
}

.dt-footer { padding: 18px 28px; display: flex; gap: 28px; font-size: 13px; color: var(--text-2); flex-wrap: wrap; }
.dt-footer span { display: inline-flex; align-items: center; gap: 8px; }
.dt-dot { width: 8px; height: 8px; border-radius: 50%; }

/* CTA */
.cta-sec { padding: 80px 0; }
@media (max-width: 720px) { .cta-sec { padding: 48px 0; } }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-card {
  position: relative;
  padding: 56px 48px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.cta-card:hover { transform: translateY(-6px); }
.cta-card.magenta { background: linear-gradient(135deg, #D65192 0%, #a83b75 100%); color: #fff; border-color: transparent; }
.cta-card.magenta h3, .cta-card.magenta p, .cta-card.magenta .mono { color: #fff; }
.cta-card.teal { background: linear-gradient(135deg, #61C1B6 0%, #3a8e85 100%); color: #0A0A0B; border-color: transparent; }
.cta-card.teal h3, .cta-card.teal p, .cta-card.teal .mono { color: #0A0A0B; }
.cta-card .mono { opacity: 0.85; }
.cta-card h3 { font-size: clamp(30px, 3vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; max-width: 90%; }
.cta-card p { font-size: 15px; opacity: 0.85; max-width: 420px; }
.cta-card .cta-arrow {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s;
}
.cta-card.teal .cta-arrow { background: rgba(0,0,0,0.15); }
.cta-card:hover .cta-arrow { transform: translate(6px, -6px) rotate(-10deg); }
.cta-card .cta-arrow svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.8; fill: none; }

.cta-card .bg-art { position: absolute; inset: 0; pointer-events: none; opacity: 0.15; }
.cta-card .bg-art svg { width: 100%; height: 100%; }

/* Logo cloud / trust */
.trust {
  margin-top: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 3;
  background: var(--bg);
}
.trust-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: space-between; }
.trust-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.trust-logos { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-logo { color: var(--text-2); font-weight: 600; letter-spacing: -0.02em; font-size: 18px; }

@media (max-width: 900px) {
  .trust { margin-top: 14px; padding: 14px 0; }
  .trust-inner { gap: 18px; }
  .trust-logos { gap: 18px 22px; }
  .trust-logo { font-size: 16px; }
}

/* Process */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }
.process-step {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-2);
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.process-step-num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'JetBrains Mono', monospace; color: var(--text-3); font-size: 11px;
}
.process-step-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.process-step-ico svg { width: 22px; height: 22px; stroke: var(--magenta); stroke-width: 1.6; fill: none; }
.process-step h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.process-step p { color: var(--text-2); font-size: 14px; line-height: 1.5; }

/* Tweaks panel */
.tweaks-btn {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 100;
  width: 48px; height: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
}
.tweaks-btn.visible { display: flex; }
.tweaks-btn svg { width: 20px; height: 20px; }

.tweaks-panel {
  position: fixed; bottom: 84px; right: 24px;
  width: 320px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 20px;
  z-index: 100;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  transform-origin: bottom right;
}
.tweaks-panel.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.tweaks-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.tweaks-title { font-size: 14px; font-weight: 600; }
.tweak-row { margin-bottom: 18px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; display: block; }
.tweak-seg { display: flex; background: var(--bg-3); border-radius: 10px; padding: 3px; gap: 2px; }
.tweak-seg button {
  flex: 1; padding: 8px; border: none; background: transparent; color: var(--text-2); font-size: 12px;
  font-family: inherit; border-radius: 7px; cursor: pointer; font-weight: 500;
  transition: all 0.2s;
}
.tweak-seg button.active { background: var(--bg); color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
[data-theme="light"] .tweak-seg button.active { background: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
[data-theme="light"] .tweak-seg { background: #EFECE4; }
[data-theme="light"] .tweaks-btn { box-shadow: 0 10px 30px -10px rgba(0,0,0,0.18); }
[data-theme="light"] .tweaks-panel { box-shadow: 0 20px 60px -10px rgba(20,20,30,0.18); }
[data-theme="light"] .hero-badge { box-shadow: 0 20px 40px -20px rgba(20,20,30,0.15); }

/* Light-mode refinements */
[data-theme="light"] body { color: var(--text); }
[data-theme="light"] .btn-teal { color: #0A0A0B; }
[data-theme="light"] .btn-teal:hover { box-shadow: 0 12px 30px -12px rgba(97,193,182,0.55); }
[data-theme="light"] .btn-primary:hover { box-shadow: 0 12px 30px -12px rgba(214,81,146,0.55); }
[data-theme="light"] .process-step,
[data-theme="light"] .item-card,
[data-theme="light"] .case-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .dt-wrap,
[data-theme="light"] .form-wrap { box-shadow: 0 1px 2px rgba(10,20,30,0.04), 0 12px 40px -24px rgba(10,20,30,0.18); }
[data-theme="light"] .item-card:hover,
[data-theme="light"] .cta-card:hover { box-shadow: 0 4px 10px rgba(10,20,30,0.06), 0 30px 60px -24px rgba(10,20,30,0.22); }
[data-theme="light"] .footer { background: #FFFFFF; }
[data-theme="light"] .spec-card:hover { background: #FAFAF7; }
[data-theme="light"] .dt-row.head { background: #F1EDE4; }
[data-theme="light"] .field input:focus,
[data-theme="light"] .field textarea:focus,
[data-theme="light"] .field select:focus { border-color: var(--teal-ink); box-shadow: 0 0 0 3px rgba(30,111,102,0.12); }
[data-theme="light"] .nav.scrolled { box-shadow: 0 1px 0 rgba(10,20,30,0.04), 0 10px 30px -20px rgba(10,20,30,0.12); }
[data-theme="light"] .dt-row:hover { background: #FBF8F2; }
[data-theme="light"] .filter-chip:hover { background: #FFFFFF; }
[data-theme="light"] .mobile-menu { background: var(--bg); }
[data-theme="light"] .trust-logo { color: var(--text-2); opacity: 0.85; }
[data-theme="light"] .cta-card.magenta .cta-arrow { background: rgba(0,0,0,0.14); }
[data-theme="light"] .cta-card.magenta .cta-arrow svg { stroke: #fff; }
[data-theme="light"] .spec-icon { background: #FFFFFF; }
[data-theme="light"] .process-step-ico { background: #FFFFFF; border: 1px solid var(--line); }

/* Footer */
.footer {
  position: relative;
  z-index: 5;
  margin-top: 28px;
  background: var(--bg-2);
  padding: 100px 0 52px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { font-size: 12px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul button { color: var(--text-2); text-decoration: none; font-size: 14.5px; transition: color 0.2s; background: none; border: none; font-family: inherit; cursor: pointer; padding: 0; text-align: left; }
.footer ul a:hover, .footer ul button:hover { color: var(--text); }
.footer-brand p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; margin-top: 20px; max-width: 320px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--text-3); }
.footer-bottom a, .footer-bottom button { color: var(--text-3); text-decoration: none; background: none; border: none; font-family: inherit; cursor: pointer; padding: 0; font-size: 13px; }
.footer-bottom a:hover, .footer-bottom button:hover { color: var(--text); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* Subpage stub */
.stub { padding: 148px 0 24px; }
@media (max-width: 960px) { .stub { padding: 120px 0 18px; } }
@media (max-width: 720px) { .stub { padding: 104px 0 12px; } }
@media (max-width: 520px) {
  h1.hero-title { font-size: clamp(34px, 10vw, 56px); }
  .stub-title { font-size: clamp(30px, 8.5vw, 48px); }
  .sec-title { font-size: clamp(26px, 7.5vw, 40px); }
  .hero-sub, .stub-sub { font-size: 16px; }
  h1.hero-title { margin-bottom: 20px; }
}
.stub-head { margin-bottom: 24px; }
@media (max-width: 720px) { .stub-head { margin-bottom: 12px; } }
.stub-kicker { color: var(--text-3); font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.stub-title { font-size: clamp(40px, 5.8vw, 76px); font-weight: 700; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 32px; max-width: 1100px; overflow-wrap: break-word; hyphens: auto; }
.stub-title .word { display: inline-block; overflow: hidden; padding: 0.14em 0.06em 0.22em 0.06em; margin: 0 0.08em 0 0; line-height: 1; vertical-align: baseline; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
.stub-title .word > span { display: inline-block; transform: translateY(110%); animation: rise calc(0.9s / var(--anim, 1)) cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--d, 0s) / var(--anim, 1)); }
.stub-title .accent { color: var(--magenta-ink); font-style: italic; font-weight: 600; }
.stub-sub { font-size: 19px; line-height: 1.6; color: var(--text-2); max-width: 680px; }

/* Filter bar */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-chip {
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-2);
  background: transparent; color: var(--text-2);
  font-family: inherit; font-weight: 500; font-size: 13.5px;
  cursor: pointer; transition: all 0.3s;
}
.filter-chip:hover { border-color: var(--text); color: var(--text); }
.filter-chip.active { background: var(--magenta); color: #fff; border-color: var(--magenta-ink); }

/* Article / course cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }
.item-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.item-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.item-card .img { aspect-ratio: 16/10; }
.item-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.item-card .cat { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-ink); }
.item-card h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
.item-card p { color: var(--text-2); font-size: 14px; line-height: 1.55; }
.item-card .more { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 600; color: var(--magenta-ink); display: inline-flex; align-items: center; gap: 8px; }
.item-card .more svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.3s; }
.item-card:hover .more svg { transform: translateX(4px); }

/* Form */
.form-wrap { background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; padding: 48px; }
@media (max-width: 720px) { .form-wrap { padding: 28px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid.full > * { grid-column: 1 / -1; }
.field { position: relative; grid-column: span 1; }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 22px 16px 10px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 100px; padding-top: 26px; }
.field label {
  position: absolute;
  top: 18px; left: 16px;
  color: var(--text-3);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
  background: transparent;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-ink); }
/* Date inputs: hide native placeholder until focused/filled so floating label is readable */
.field input[type="date"] { color: transparent; }
.field input[type="date"]:focus, .field input[type="date"].has-value { color: var(--text); }
.field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.6; cursor: pointer; filter: invert(var(--cal-invert, 1)); }
[data-theme="light"] { --cal-invert: 0; }
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label, .field select.has-value ~ label {
  top: 7px; font-size: 10.5px;
  color: var(--teal-ink);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase;
}
.field select option { background: var(--bg-2); color: var(--text); }

.check { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: 14px; cursor: pointer; line-height: 1.5; }
.check input { display: none; }
.check .box { width: 20px; height: 20px; border: 1px solid var(--line-2); border-radius: 5px; flex-shrink: 0; margin-top: 2px; transition: all 0.2s; position: relative; }
.check input:checked + .box { background: var(--teal); border-color: var(--teal-ink); }
.check input:checked + .box::after {
  content: ''; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #ffffff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.check a { color: var(--teal-ink); text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); overflow: hidden; }
.faq-q {
  padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; font-size: 16px; font-weight: 500; width: 100%; text-align: left;
  background: none; border: none; color: var(--text); font-family: inherit;
}
.faq-q svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 400px; }
.faq-a p { color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* Case cards */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; cursor: pointer;
}
.case-card .img { aspect-ratio: 5/3; }
.case-card .body { padding: 32px; }
.case-card .cat { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta-ink); margin-bottom: 12px; }
.case-card h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.2; }
.case-card p { color: var(--text-2); font-size: 15px; line-height: 1.5; }



/* Glow */
.glow {
  position: absolute;
  width: clamp(420px, 58vw, 620px);
  height: clamp(420px, 58vw, 620px);
  pointer-events: none;
  z-index: 0;
  opacity: calc(0.52 * var(--accent-intensity, 1));
}
[data-theme="light"] .glow { opacity: calc(0.38 * var(--accent-intensity, 1)); }
.glow.teal { background: radial-gradient(circle at center, color-mix(in srgb, var(--teal) 55%, transparent) 0%, transparent 60%); }
.glow.magenta { background: radial-gradient(circle at center, color-mix(in srgb, var(--magenta) 55%, transparent) 0%, transparent 60%); }
.hero-glow {
  display: block;
  opacity: 0.56;
  filter: blur(4px);
}
[data-theme="light"] .hero-glow { opacity: 0.4; }

@media (max-width: 1000px) {
  .hero-visual { overflow: hidden; }
  .hero-badge.b1 { right: 10px; }
  .hero-badge.b2 { left: 10px; }
  .hero-glow { opacity: 0.34; }
}

@media (max-width: 720px) {
  .hero-glow { opacity: 0.22; }
  .hero-badge {
    position: static;
    margin-top: 10px;
    width: 100%;
    animation: none;
  }
  .hero-badge.b1, .hero-badge.b2 { top: auto; right: auto; bottom: auto; left: auto; }
}

/* Photos (real images used via <Photo>) */
.photo { background: var(--bg-3); }
.photo img { transition: transform 0.7s cubic-bezier(.2,.8,.2,1); }
.item-card:hover .photo img,
.case-card:hover .photo img { transform: scale(1.03); }
.hero-visual .photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
[data-theme="light"] .photo { background: #EFECE4; }

/* Responsive overrides for inline grid layouts */
@media (max-width: 900px) {
  .specialismen-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .tarieven-usps { grid-template-columns: 1fr !important; gap: 16px !important; margin-bottom: 40px !important; }
  .tandartsen-usps { grid-template-columns: repeat(2, 1fr) !important; }
  .tandartsen-cta-grid { grid-template-columns: 1fr !important; margin-top: 40px !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .bestellen-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}
@media (max-width: 620px) {
  .tandartsen-usps { grid-template-columns: 1fr !important; }
  .tandartsen-usps > div > div { padding: 28px !important; min-height: 0 !important; }
  .tandartsen-cta-grid > div { padding: 28px !important; }
  .specialismen-grid > div > div { padding: 28px !important; min-height: 0 !important; }
  .tarieven-usps > div > div { padding: 24px !important; min-height: 0 !important; }
  .spec-card { padding: 28px 22px; min-height: 0; }
  .case-card .body { padding: 24px; }
  .cta-card { padding: 36px 28px; min-height: 260px; }
  .faq-q { padding: 18px 18px; font-size: 15px; }
  .faq-item.open .faq-a { padding: 0 18px 18px; }
  .footer { margin-top: 20px; padding: 64px 0 40px; }
}
.tandartsen-usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }

/* Background Paths — animated line-field statement section */
.bg-paths-sec {
  position: relative;
  overflow: hidden;
  padding: 142px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
@media (max-width: 960px) { .bg-paths-sec { padding: 104px 0; } }
@media (max-width: 720px) { .bg-paths-sec { padding: 76px 0; } }

.bg-paths-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  color: var(--text);
  opacity: 0.5;
}
[data-theme="light"] .bg-paths-bg { opacity: 0.38; }
.bg-paths-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, transparent 0%, var(--bg) 78%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
  pointer-events: none;
}
.bg-paths-layer { position: absolute; inset: 0; }
.bg-paths-svg { width: 100%; height: 100%; display: block; }
.bg-paths-path {
  fill: none;
  animation-name: bgPathFlow;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 20s;
  will-change: stroke-dashoffset, opacity;
  stroke-dasharray: 1600;
  stroke-dashoffset: 0;
}
@keyframes bgPathFlow {
  0%   { stroke-dashoffset: 0;    opacity: 0.35; }
  50%  { stroke-dashoffset: -1600; opacity: 0.75; }
  100% { stroke-dashoffset: -3200; opacity: 0.35; }
}
.anim-off .bg-paths-path { animation: none !important; stroke-dashoffset: 0 !important; opacity: 0.45 !important; }

.bg-paths-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
}
.bg-paths-content { margin-left: auto; margin-right: auto; }

.bg-paths-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 18px;
}
.bg-paths-kicker span { color: var(--magenta-ink); }

.bg-paths-title {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 0.08em;
}
.bg-paths-word { display: inline-block; margin-right: 0.25em; }
.bg-paths-word:last-child { margin-right: 0; }
.bg-paths-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: bgLetterRise calc(0.9s / var(--anim, 1)) cubic-bezier(.2,.7,.2,1) forwards;
  background: linear-gradient(180deg, var(--text) 0%, color-mix(in srgb, var(--text) 70%, transparent) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@keyframes bgLetterRise { to { opacity: 1; transform: translateY(0); } }
.anim-off .bg-paths-letter { animation: none !important; opacity: 1 !important; transform: none !important; }

.bg-paths-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 34px;
}

.bg-paths-cta-wrap {
  display: inline-block;
  padding: 1px;
  border-radius: 18px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--text) 18%, transparent), color-mix(in srgb, var(--text) 4%, transparent));
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}
.bg-paths-cta-wrap:hover { box-shadow: 0 20px 50px -20px color-mix(in srgb, var(--text) 40%, transparent); }

.bg-paths-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-radius: 17px;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--line);
  font-family: inherit; font-weight: 600; font-size: 16px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s;
}
.bg-paths-cta:hover { transform: translateY(-2px); background: var(--bg-3); }
.bg-paths-cta svg { transition: transform 0.3s; opacity: 0.7; }
.bg-paths-cta:hover svg { transform: translateX(4px); opacity: 1; }

@media (max-width: 520px) {
  .bg-paths-title { font-size: clamp(36px, 10vw, 60px); }
  .bg-paths-sub { font-size: 16px; }
  .bg-paths-cta { padding: 16px 22px; font-size: 15px; }
}

/* Marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.marquee-track { display: flex; gap: 60px; animation: scroll calc(40s / var(--anim, 1)) linear infinite; white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; color: var(--text-2); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.marquee-item:nth-child(even) .dot { background: var(--magenta); }
