/* ============================================================
   Converzo Plugins — friendly revamp (Thrive-inspired)
   ============================================================ */

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #ECEFEC;
  --bg-alt: #FFFFFF;
  --ink: #0F1115;
  --ink-soft: #3A3F47;
  --ink-mute: #7A8089;
  --line: #E5E7E5;

  /* Brand — green accent */
  --brand: #029CA6;
  --brand-deep: #017780;
  --brand-soft: #DFF3F4;

  /* All plugin accents resolve to one green for a consistent black/white/green look */
  --c-pink: var(--brand);
  --c-yellow: var(--brand);
  --c-mint: var(--brand);
  --c-blue: var(--brand);
  --c-lilac: var(--brand);
  --c-coral: var(--brand);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 12px rgba(26, 26, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 26, 31, 0.08);
  --shadow-lg: 0 22px 50px rgba(26, 26, 31, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  margin: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== Custom cursor ===== */
body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, width 0.3s var(--ease),
              height 0.3s var(--ease), background-color 0.3s var(--ease),
              border-color 0.3s var(--ease);
  will-change: transform, width, height;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
  mix-blend-mode: difference;
  /* dot color appears inverted against any background */
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.cursor-ring.is-visible,
.cursor-dot.is-visible {
  opacity: 1;
}

/* White cursor over dark sections (hero) */
.cursor-ring.is-on-dark {
  border-color: #FFFFFF;
}

.cursor-dot.is-on-dark {
  background: #FFFFFF;
}

.cursor-ring.is-on-dark.is-hovering {
  background: rgba(255, 255, 255, 0.16);
  border-color: #FFFFFF;
}

.cursor-ring.is-on-dark.is-pressing {
  background: rgba(255, 255, 255, 0.28);
  border-color: #FFFFFF;
}

/* Hover over interactive element — ring grows + dot shrinks */
.cursor-ring.is-hovering {
  width: 72px;
  height: 72px;
  background: rgba(2, 156, 166, 0.18);
  border-color: var(--brand);
  border-width: 2px;
}

.cursor-dot.is-hovering {
  width: 3px;
  height: 3px;
}

/* Click feedback — just color, transform stays on JS */
.cursor-ring.is-pressing {
  background: rgba(2, 156, 166, 0.32);
  border-color: var(--brand);
  width: 28px;
  height: 28px;
}

.cursor-dot.is-pressing {
  width: 10px;
  height: 10px;
}

/* Disable on small screens / touch (JS also guards this) */
@media (hover: none), (pointer: coarse), (max-width: 720px) {
  .cursor-ring,
  .cursor-dot {
    display: none !important;
  }

  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: auto !important;
  }
}

/* ===== Floating gradient blobs ===== */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
  mix-blend-mode: multiply;
}

.bg-blob--a {
  top: -180px;
  left: -160px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, #5DD0D8 0%, transparent 65%);
  opacity: 0.55;
  animation: blob-float-a 22s ease-in-out infinite, blob-glow-a 9s ease-in-out infinite;
}

.bg-blob--b {
  bottom: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 65%);
  opacity: 0.4;
  animation: blob-float-b 28s ease-in-out infinite, blob-glow-b 11s ease-in-out infinite;
}

.bg-blob--c {
  top: 45%;
  left: 55%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #A8E4E8 0%, transparent 65%);
  opacity: 0.45;
  animation: blob-float-c 34s ease-in-out infinite, blob-glow-c 13s ease-in-out infinite;
}

.bg-blob--d {
  top: 12%;
  right: 18%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #3DB8C0 0%, transparent 65%);
  opacity: 0.32;
  animation: blob-float-d 26s ease-in-out infinite, blob-glow-d 10s ease-in-out infinite;
}

@keyframes blob-float-a {
  0%, 100%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  25%        { transform: translate(120px, 80px) scale(1.18) rotate(35deg); }
  50%        { transform: translate(220px, 40px) scale(0.92) rotate(70deg); }
  75%        { transform: translate(80px, 160px) scale(1.1) rotate(110deg); }
}

@keyframes blob-float-b {
  0%, 100%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  33%        { transform: translate(-180px, -120px) scale(1.2) rotate(-40deg); }
  66%        { transform: translate(-60px, -240px) scale(0.85) rotate(-80deg); }
}

@keyframes blob-float-c {
  0%, 100%   { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  25%        { transform: translate(-30%, -65%) scale(1.25) rotate(45deg); }
  50%        { transform: translate(-70%, -45%) scale(0.8) rotate(90deg); }
  75%        { transform: translate(-55%, -30%) scale(1.15) rotate(135deg); }
}

@keyframes blob-float-d {
  0%, 100%   { transform: translate(0, 0) scale(1); }
  40%        { transform: translate(-140px, 100px) scale(1.3); }
  70%        { transform: translate(80px, 180px) scale(0.9); }
}

@keyframes blob-glow-a {
  0%, 100% { opacity: 0.5; filter: blur(90px); }
  50%      { opacity: 0.7; filter: blur(110px); }
}

@keyframes blob-glow-b {
  0%, 100% { opacity: 0.35; filter: blur(90px); }
  50%      { opacity: 0.55; filter: blur(120px); }
}

@keyframes blob-glow-c {
  0%, 100% { opacity: 0.35; filter: blur(100px); }
  50%      { opacity: 0.5; filter: blur(130px); }
}

@keyframes blob-glow-d {
  0%, 100% { opacity: 0.25; filter: blur(90px); }
  50%      { opacity: 0.42; filter: blur(110px); }
}

@media (prefers-reduced-motion: reduce) {
  .bg-blob {
    animation: none !important;
  }
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--brand);
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  letter-spacing: 0.015em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

code {
  background: rgba(2, 156, 166, 0.1);
  color: var(--brand-deep);
  padding: 0.15em 0.45em;
  border-radius: 6px;
  font-size: 0.92em;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header (compact floating pill) ===== */
.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 6px 8px 6px 20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-center a {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.nav-center a:hover {
  color: #000000;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-login:hover {
  color: #000000;
}

.nav-signup {
  display: inline-flex;
  align-items: center;
  background-color: #111111;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s var(--ease);
}

.nav-signup:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 9999px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 16px;
  height: 1.6px;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

.nav-mobile {
  pointer-events: auto;
  position: absolute;
  top: 64px;
  left: 1rem;
  right: 1rem;
  margin: 0 auto;
  max-width: 800px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.nav-mobile[data-open="true"] {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #111111;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
}

.nav-mobile a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-mobile-signup {
  background-color: #111111;
  color: #FFFFFF !important;
  text-align: center;
  margin-top: 4px;
}

.nav-mobile-signup:hover {
  background-color: #000000 !important;
}

@media (max-width: 720px) {
  .nav-center,
  .nav-login {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .nav-pill {
    padding: 6px 6px 6px 16px;
  }
}

/* ===== Hero (full-screen video) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #050505;
  color: #FFFFFF;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.20) 50%,
    rgba(0, 0, 0, 0.60) 100%
  );
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
}

.hero-heading {
  margin: 0 0 18px;
  color: #FFFFFF;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-align: center;
  max-width: 900px;
  text-transform: none;
}

.hero-heading .accent,
.hero-heading .underline {
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}

.hero-heading .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: rgba(2, 156, 166, 0.7);
  z-index: -1;
  border-radius: 3px;
  transform: skew(-4deg);
}

.hero-paragraph {
  margin: 0 0 28px;
  color: #D1D1D1;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
  border: none;
}

.hero-btn-primary:hover {
  background-color: #F2F2F2;
  color: #000000;
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero-btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}

.hero-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.7;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
}

.partner-logo svg {
  width: 20px;
  height: 20px;
  display: block;
}

.partner-runway {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.partner-openai {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.partner-descript {
  font-size: 16px;
  font-weight: 500;
}

.partner-watershed {
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .hero-heading {
    font-size: 36px;
  }
  .hero-content {
    margin-bottom: 60px;
  }
  .hero-partners {
    gap: 24px;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--brand);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 156, 166, 0.3);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* ===== Plugin Grid ===== */
.diensten-section {
  padding: 4rem 0 5rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.8rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
}

.section-head .head-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Slider navigation arrows */
.diensten-section .section-head {
  flex-wrap: nowrap;
}

.diensten-section .section-head > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.slider-nav {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  align-self: flex-end;
}

@media (max-width: 640px) {
  .slider-nav {
    display: none;
  }
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.slider-arrow:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg-alt);
}

.slider-arrow:active {
  transform: scale(0.94);
}

.slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--bg-alt);
  border-color: var(--line);
  color: var(--ink);
}

/* Horizontal scrolling services slider */
.services-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1.5rem 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  scroll-padding-left: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.services-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.services-slider > .diensten-card img,
.services-slider > .diensten-card svg {
  -webkit-user-drag: none;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.services-slider > .diensten-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-height: 420px;
  animation: none;
}

@media (min-width: 880px) {
  .services-slider > .diensten-card {
    flex: 0 0 360px;
  }
}

.diensten-card {
  --card-accent: var(--brand);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.85rem;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(2, 156, 166, 0.28), transparent 60%),
    radial-gradient(100% 70% at 0% 100%, rgba(2, 156, 166, 0.14), transparent 60%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}

.diensten-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--card-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.diensten-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--card-accent);
}

.diensten-card:hover::before {
  transform: scaleX(1);
}

.diensten-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  background: var(--card-accent);
  color: #FFFFFF;
  position: relative;
  transition: transform 0.4s var(--ease);
}

.diensten-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: #FFFFFF;
}

.diensten-card:hover .diensten-card-icon {
  transform: rotate(-6deg) scale(1.05);
}

.diensten-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: #FFFFFF;
}

.diensten-card .card-desc {
  flex: 1;
  margin-bottom: 1.25rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.diensten-card .tag {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

.diensten-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.tag {
  display: inline-block;
  padding: 0.32rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.diensten-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.diensten-card-foot .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFFFFF;
  font-weight: 600;
  transition: gap 0.3s var(--ease);
}

.diensten-card:hover .diensten-card-foot .arrow {
  gap: 0.75rem;
}

/* Card color variants */
.diensten-card.c-pink { --card-accent: var(--c-pink); }
.diensten-card.c-yellow { --card-accent: var(--c-yellow); }
.diensten-card.c-mint { --card-accent: var(--c-mint); }
.diensten-card.c-blue { --card-accent: var(--c-blue); }
.diensten-card.c-lilac { --card-accent: var(--c-lilac); }
.diensten-card.c-coral { --card-accent: var(--c-coral); }

/* ===== Marquee strip ===== */
.marquee {
  margin: 4rem 0 0;
  padding: 1rem 0;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  transform: rotate(-1.4deg);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 1.4rem;
  font-weight: 700;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-yellow);
  display: inline-block;
}

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

/* ===== Detail page ===== */
.detail-hero {
  padding: 4rem 0 2rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 0.4rem 0.9rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}

.breadcrumb:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateX(-2px);
}

.detail-head {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (max-width: 880px) {
  .detail-head {
    grid-template-columns: 1fr;
  }
}

.detail-head-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
}

.detail-head-content .lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  max-width: 640px;
  line-height: 1.6;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.detail-lottie {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  justify-self: end;
}

@media (max-width: 880px) {
  .detail-lottie {
    justify-self: start;
    max-width: 240px;
  }
}

.detail-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ===== Detail content ===== */
.detail-section {
  padding: 3rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 880px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.55;
  transition: all 0.25s var(--ease);
}

.feature-list li:hover {
  border-color: var(--ink);
  transform: translateX(3px);
}

.feature-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  margin-top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-mint);
}

.specs-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 110px;
}

.specs-card h3 {
  margin-top: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-yellow);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row .label {
  color: rgba(255, 255, 255, 0.6);
}

.spec-row .value {
  color: #FFFFFF;
  font-weight: 600;
}

/* ===== CTA Block ===== */
.cta-block > * {
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  margin: 0 0 0.75rem;
}

.cta-block p {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 0 4rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}

.faq-item[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
  transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '\2212'; /* minus sign — same width as the plus */
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ===== Process / steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.process-step {
  padding: 1.85rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s var(--ease);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-step:nth-child(1) .step-num { background: var(--c-pink); }
.process-step:nth-child(2) .step-num { background: var(--c-yellow); }
.process-step:nth-child(3) .step-num { background: var(--c-mint); }
.process-step:nth-child(4) .step-num { background: var(--c-blue); }
.process-step:nth-child(5) .step-num { background: var(--c-lilac); }

.process-step .step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--ink-soft);
}

/* ===== Generic content section ===== */
.content-section {
  padding: 3rem 0;
}

.content-section .lead-block {
  max-width: 780px;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section p + h2 {
  margin-top: 2.5rem;
}

.meta-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.meta-info::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-mint);
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 0.9rem;
}

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

.footer-inner a {
  color: var(--ink-soft);
  font-weight: 500;
}

.footer-inner a:hover {
  color: var(--ink);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-in {
  animation: fadeUp 0.8s var(--ease) both;
}

.diensten-card {
  animation: fadeUp 0.7s var(--ease) both;
}

.diensten-card:nth-child(2) { animation-delay: 0.08s; }
.diensten-card:nth-child(3) { animation-delay: 0.16s; }
.diensten-card:nth-child(4) { animation-delay: 0.24s; }
.diensten-card:nth-child(5) { animation-delay: 0.32s; }

.float {
  animation: floaty 4s ease-in-out infinite;
}

/* ===== Story sections ===== */
.story-section {
  padding: 6rem 0;
}

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

.story-text .head-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.story-text h2 {
  margin-bottom: 1.25rem;
}

.story-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-quote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand);
  background: var(--bg-alt);
  border-radius: 0 14px 14px 0;
}

.story-quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.story-quote cite {
  color: var(--ink-mute);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Image placeholder — portfolio cards */
.portfolio-card-img {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(2, 156, 166, 0.10), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(2, 156, 166, 0.06), transparent 55%),
    linear-gradient(135deg, rgba(2, 156, 166, 0.03), rgba(15, 17, 21, 0.04));
  border: 1px dashed rgba(2, 156, 166, 0.35);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.portfolio-card-img::before {
  content: '';
  position: absolute;
  width: 44px;
  height: 36px;
  border: 2px solid rgba(2, 156, 166, 0.45);
  border-radius: 6px;
  top: calc(50% - 30px);
  left: calc(50% - 22px);
  background:
    radial-gradient(circle at 70% 38%, rgba(2, 156, 166, 0.7) 0 4px, transparent 5px),
    linear-gradient(135deg, transparent 55%, rgba(2, 156, 166, 0.35) 55% 70%, transparent 70%);
}

.img-placeholder-label {
  position: relative;
  z-index: 1;
  margin-top: 3.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(2, 156, 166, 0.75);
}

/* Real photo container (with <img> inside) */
.story-photo {
  margin: 0;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 24px 60px rgba(14, 17, 21, 0.10);
}

.story-photo--portrait {
  aspect-ratio: 4 / 5;
}

.story-photo--landscape {
  aspect-ratio: 5 / 4;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Portfolio stack ===== */
.portfolio-stack {
  padding: 4rem 0 8rem;
}

.portfolio-stack .section-head {
  margin-bottom: 3rem;
}

.portfolio-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.portfolio-more {
  max-width: 620px;
  margin: 4rem auto 0;
  text-align: center;
}

.portfolio-more p {
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.portfolio-card {
  position: sticky;
  top: calc(6.5rem + var(--i, 0) * 14px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(2, 156, 166, 0.28), transparent 60%),
    radial-gradient(70% 60% at 0% 100%, rgba(2, 156, 166, 0.14), transparent 60%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  min-height: 460px;
  transition: transform 0.35s var(--ease);
  overflow: hidden;
}

.portfolio-num {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  padding: 0.28rem 0.7rem;
  background: rgba(2, 156, 166, 0.28);
  border-radius: var(--radius-pill);
}

.portfolio-card h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: #FFFFFF;
}

.portfolio-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.portfolio-card .tag {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.portfolio-card-img {
  aspect-ratio: 4 / 3;
  height: 100%;
}

/* Story + portfolio responsive */
@media (max-width: 880px) {
  .story-section {
    padding: 4rem 0;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
    min-height: 0;
    top: calc(5rem + var(--i, 0) * 10px);
  }

  .portfolio-card h3 {
    font-size: 1.4rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .specs-card {
    position: static;
  }

  .detail-actions {
    width: 100%;
  }

  .detail-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .cta-block {
    padding: 2.5rem 1.5rem;
  }
}

/* Lottie player base */
dotlottie-player,
lottie-player {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===== Aave-style liquid glass ===== */
.glass-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/*
  Core idea: the displacement filter bends the backdrop pixels at the lens edges.
  Visibility of the refraction depends on the glass being CLEAR — minimal tint and
  almost no blur. Only the rim is articulated with crisp inset highlights.
*/
.glass-light,
.glass-dark,
.glass-clear {
  position: relative;
  isolation: isolate;
  -webkit-backdrop-filter: saturate(140%);
  backdrop-filter: url(#liquid-glass) saturate(140%);
}

.glass-light {
  background-color: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.9),
    inset 0 -1px 0.5px rgba(0, 0, 0, 0.18),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.35),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.25),
    0 8px 28px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.35);
  color: #111111;
}

.glass-dark {
  background-color: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.55),
    inset 0 -1px 0.5px rgba(0, 0, 0, 0.45),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.18),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
}

.glass-clear {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.65),
    inset 0 -1px 0.5px rgba(0, 0, 0, 0.22),
    inset 1px 0 0.5px rgba(255, 255, 255, 0.25),
    inset -1px 0 0.5px rgba(255, 255, 255, 0.15),
    0 8px 26px rgba(0, 0, 0, 0.28);
  color: #FFFFFF;
}

/* Specular sheen — diagonal sweep across the surface */
.glass-light::before,
.glass-dark::before,
.glass-clear::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 255, 255, 0) 72%,
    rgba(255, 255, 255, 0.18) 100%
  );
  mix-blend-mode: screen;
  z-index: 0;
}

.glass-light > *,
.glass-dark > *,
.glass-clear > * {
  position: relative;
  z-index: 1;
}

.glass-hover {
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.glass-light.glass-hover:hover {
  background-color: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.7);
}
.glass-dark.glass-hover:hover {
  background-color: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}
.glass-clear.glass-hover:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Firefox & older Safari: no backdrop-filter url() support — fall back to a soft blur */
@supports not (backdrop-filter: url(#x)) {
  .glass-light,
  .glass-dark,
  .glass-clear {
    -webkit-backdrop-filter: blur(8px) saturate(160%);
    backdrop-filter: blur(8px) saturate(160%);
  }
}

/* ===================================================================
   IGNITE-style site-wide overrides
   White everything · black uppercase headings · numbered eyebrows ·
   thin black borders · monochrome pills with arrow icons
   =================================================================== */

/* --- Base recolor: pure white throughout, kill the green accents --- */
body {
  background: #FFFFFF;
  counter-reset: section-counter;
}

.bg-blobs { display: none !important; }

/* --- Section backgrounds: pure white --- */
.story-section {
  background: #FFFFFF;
}

/* --- Container padding: more breathing room --- */
.container {
  max-width: 1440px;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 3.5rem; } }

/* --- Eyebrows ("head-tag"): drop the pill, auto-number them --- */
.section-head .head-tag,
.head-tag {
  counter-increment: section-counter;
  display: inline-flex !important;
  align-items: baseline;
  gap: 10px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 1.25rem !important;
  color: rgba(0, 0, 0, 0.55) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
}
.section-head .head-tag::before,
.head-tag::before {
  content: counter(section-counter, decimal-leading-zero);
  color: #000;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

/* --- Section headings: bigger, tighter, black --- */
.section-head h2,
.story-text h2,
.cta-block h2 {
  font-size: clamp(2rem, 4.4vw, 4rem) !important;
  font-weight: 800 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
  color: #000 !important;
  margin: 0 0 1.1rem !important;
}

.section-head p,
.story-text p {
  color: rgba(0, 0, 0, 0.62);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
}

/* --- Buttons: black solid + outlined ghost, both pill --- */
.btn {
  font-size: 13px;
  font-weight: 500;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  letter-spacing: 0;
  text-transform: none;
}

.btn-primary,
.cta-block .btn-primary {
  background: #029CA6 !important;
  color: #FFF !important;
  border-color: #029CA6 !important;
  box-shadow: none !important;
}
.btn-primary:hover,
.cta-block .btn-primary:hover {
  background: #027D85 !important;
  border-color: #027D85 !important;
  color: #FFF !important;
  box-shadow: none !important;
}

.btn-ghost,
.cta-block .btn-ghost {
  background: transparent !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}
.btn-ghost:hover,
.cta-block .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: #000 !important;
  color: #000 !important;
}

/* --- Services slider section: cleaner header --- */
.diensten-section { padding: 6rem 0 5rem; }

/* --- Service cards: drop the dark gradient, go light w/ thin border --- */
.diensten-card,
.diensten-card.c-pink,
.diensten-card.c-yellow,
.diensten-card.c-mint,
.diensten-card.c-blue,
.diensten-card.c-lilac,
.diensten-card.c-coral {
  --card-accent: #000;
  background: #FFFFFF !important;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}
.diensten-card::before { display: none !important; }

.diensten-card h3 {
  color: #000 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.35rem !important;
}
.diensten-card .card-desc {
  color: rgba(0, 0, 0, 0.62) !important;
  font-weight: 300;
}
/* Tags as mini stickers: card-accent fill, thin white die-cut ring, soft shadow */
.diensten-card .tag {
  background: var(--sticker, #000) !important;
  border: none !important;
  color: #FFF !important;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 0 2px #FFF,
    0 3px 7px rgba(0, 0, 0, 0.18);
  transform: rotate(-1.5deg);
}
.diensten-card .tag:nth-child(even) { transform: rotate(1.5deg); }
/* Dark text on the yellow stickers — white wouldn't read */
.diensten-card.c-yellow .tag { color: #1A1A1A !important; }
/* A touch more breathing room so the white rings don't touch */
.diensten-card-meta { gap: 0.55rem; }
.diensten-card-foot {
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: rgba(0, 0, 0, 0.55) !important;
}
.diensten-card-foot .arrow {
  color: #000 !important;
  font-weight: 600;
}
/* Sticker treatment — same die-cut look as the falling devices in the CTA rain.
   There the white edge is baked into the PNGs; here we rebuild it in CSS:
   ink tile → thick white die-cut edge → soft shadow so the white reads on white. */
.diensten-card-icon {
  background: var(--sticker, #000) !important;
  color: #FFF !important;
  border-radius: 14px;
  box-shadow:
    0 0 0 4px #FFF,
    0 7px 16px rgba(0, 0, 0, 0.22),
    0 2px 4px rgba(0, 0, 0, 0.14);
  transform: rotate(-4deg);
}
.diensten-card-icon svg { stroke: #FFF; color: #FFF; }
/* Sticker palette — matches the device illustrations in the CTA rain */
.diensten-card.c-pink   { --sticker: #EA361F; }
.diensten-card.c-lilac  { --sticker: #3A1DBA; }
.diensten-card.c-mint   { --sticker: #01999E; }
.diensten-card.c-blue   { --sticker: #01999E; }
.diensten-card.c-yellow { --sticker: #FEC502; }
/* Dark glyph on the yellow sticker — white wouldn't read */
.diensten-card.c-yellow .diensten-card-icon svg { stroke: #1A1A1A; color: #1A1A1A; }
/* Sticker straightens and pops slightly when the card is hovered */
.diensten-card:hover .diensten-card-icon {
  transform: rotate(2deg) scale(1.06);
}
.diensten-card:hover {
  border-color: #000 !important;
  transform: translateY(-2px);
}

/* --- Slider arrows: minimal --- */
.slider-arrow {
  background: #FFF !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}
.slider-arrow:hover {
  background: #000 !important;
  color: #FFF !important;
}

/* --- Story section: clean rows --- */
.story-section { padding: 5rem 0; }
.story-quote {
  border-left: 2px solid #000 !important;
  background: transparent !important;
  padding: 0.25rem 0 0.25rem 1.5rem !important;
}
.story-quote p {
  font-style: normal !important;
  color: #000 !important;
  font-weight: 500;
  font-size: 1.05rem !important;
}
.story-quote cite {
  color: rgba(0, 0, 0, 0.6) !important;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.story-photo {
  border-radius: 18px !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* --- Portfolio cards: from dark gradient to clean white --- */
.portfolio-stack { padding: 6rem 0; }
.portfolio-card {
  background: #FFFFFF !important;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: none !important;
  overflow: hidden;
}
.portfolio-card h3 {
  color: #000 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.portfolio-card p {
  color: rgba(0, 0, 0, 0.62) !important;
  font-weight: 300;
}
.portfolio-num {
  background: transparent !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid #000 !important;
  border-radius: 0 !important;
  padding: 0 0 2px !important;
  letter-spacing: 0.08em;
}
.portfolio-card .tag,
.portfolio-tags .tag {
  background: transparent !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  color: rgba(0, 0, 0, 0.7) !important;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
}
.portfolio-card-img {
  background: #F4F4F4 !important;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.img-placeholder-label {
  color: rgba(0, 0, 0, 0.45) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- Marquee: teal strip, white uppercase ---
   Negative margins collapse its layout space so the diensten and faq
   backgrounds meet behind it; the strip overlaps both and connects them. */
.marquee {
  background: #029CA6 !important;
  color: #FFF !important;
  border-top: 1px solid #029CA6;
  border-bottom: 1px solid #029CA6;
  padding: 0.9rem 0;
  position: relative;
  z-index: 2;
  margin: -1.8rem 0;
}
.marquee-track span {
  color: #FFF !important;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee-track .dot {
  background: #FFF !important;
  width: 4px; height: 4px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 14px;
  vertical-align: middle;
}

/* --- FAQ: thin black underlines, no rounded boxes ---
   No bottom padding: the device-rain zone is the section's last block and
   must sit flush against the footer. */
.faq-section { padding: 5rem 0 0; }
/* The FAQ list is a white card on the dark section, like a portfolio-card */
.faq-list {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  padding: 0.6rem 2.25rem;
}
.faq-list .faq-item:last-child {
  border-bottom: none !important;
}
.faq-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.faq-item summary {
  padding: 1.4rem 0 !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.faq-item summary::after {
  color: #000 !important;
  background: transparent !important;
  border: 1px solid #000 !important;
}
.faq-item[open] summary::after {
  background: #000 !important;
  color: #FFF !important;
}
.faq-answer p,
.faq-item .faq-answer p {
  color: rgba(0, 0, 0, 0.65) !important;
  font-weight: 300;
  padding-bottom: 1.4rem;
}

/* --- CTA block: big uppercase headline --- */
.cta-block p {
  color: rgba(0, 0, 0, 0.65) !important;
  font-weight: 300;
}

/* --- Footer: dark strip, flush against the device-rain zone above --- */
.site-footer {
  background:
    linear-gradient(180deg, #0E1115 0%, #1A1D22 55%, #0B0D10 100%) !important;
  border-top: none;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 1.4rem 0;
  margin-top: 0;
}
.site-footer .footer-inner {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer a {
  color: #FFF !important;
  border-bottom: 1px solid currentColor;
}

/* --- Section heads inherit the Ignite hierarchy --- */
.section-head {
  margin-bottom: 2.5rem;
}
.section-head > div:first-child {
  max-width: 760px;
}

/* --- Device-rain physics zone (above the footer) --- */
#device-rain {
  position: relative;
  width: 100%;
  height: 420px;
  background: #FAFAFA;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  touch-action: pan-y;
}
#device-rain canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* --- CTA physics zone: devices fall AROUND the CTA island, not inside it --- */
.cta-physics-zone {
  position: relative;
  /* Break out of the parent .container so the play area spans the full viewport */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 4rem;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* White play area inside the dark FAQ section: devices emerge from the black above */
  background: #FFFFFF;
}
@media (max-width: 720px) {
  .cta-physics-zone {
    min-height: 700px;
    margin-top: 2rem;
  }
}

.cta-physics-zone .cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  cursor: grab;
  /* per-pixel shadow so the white sticker borders read against the white bg */
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
}
.cta-physics-zone .cta-canvas:active { cursor: grabbing; }

/* The CTA island — clean white card, no border (devices around give it shape) */
/* Lift buttons above the canvas so they stay clickable through the device rain */
.cta-physics-zone .cta-island .btn {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

/* Soft hairline divider between adjacent white sections
   so the rhythm still reads when two whites sit next to each other */
.story-section + .story-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Hairline between the tinted block and the next white block, for a clean seam */
.diensten-section,
.portfolio-stack {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Hero vertical ticker (in the baseline strip) --- */
.hero-ticker {
  position: relative;
  display: inline-block;
  height: 1.6em;
  font-size: 11px;        /* lock em base so rows stay aligned with the keyframes */
  overflow: hidden;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .hero-ticker { font-size: 10px; }
}
.hero-ticker-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  /* Linear timing so each slide is a uniform, predictable roll — no harsh ease curve */
  animation: hero-ticker-roll 20s linear infinite;
}
.hero-ticker-track > span {
  display: flex;
  align-items: center;
  height: 1.6em;
  white-space: nowrap;
}
@keyframes hero-ticker-roll {
  /* Each cycle: 4 unique items + 1 cloned first item for a seamless wrap.
     22% dwell + 3% slide per item → very visible rolls, no perceptible "hangs". */
  0%, 22%   { transform: translateY(0); }
  25%, 47%  { transform: translateY(-1.6em); }
  50%, 72%  { transform: translateY(-3.2em); }
  75%, 97%  { transform: translateY(-4.8em); }
  100%      { transform: translateY(-6.4em); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ticker-track { animation: none; }
}

/* Gentle pulse on the green availability dot */
.ticker-dot {
  animation: ticker-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes ticker-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  50%      { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

/* --- Portfolio + diensten + faq: dark gradient background with white type. Cards stay white. --- */
.portfolio-stack,
.diensten-section,
.faq-section {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 65%),
    linear-gradient(180deg, #0E1115 0%, #1A1D22 55%, #0B0D10 100%) !important;
  color: #FFFFFF;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* Headline + eyebrow + intro paragraph become white */
.portfolio-stack .section-head h2,
.diensten-section .section-head h2,
.faq-section .section-head h2 {
  color: #FFFFFF !important;
}
.portfolio-stack .section-head p,
.diensten-section .section-head p,
.faq-section .section-head p {
  color: rgba(255, 255, 255, 0.65) !important;
}
.portfolio-stack .section-head .head-tag,
.diensten-section .section-head .head-tag,
.faq-section .section-head .head-tag {
  color: rgba(255, 255, 255, 0.55) !important;
}
.portfolio-stack .section-head .head-tag::before,
.diensten-section .section-head .head-tag::before,
.faq-section .section-head .head-tag::before {
  color: #FFFFFF !important;
}

/* Slider arrows — invert for dark bg */
.portfolio-stack .slider-arrow,
.diensten-section .slider-arrow {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
}
.portfolio-stack .slider-arrow:hover,
.diensten-section .slider-arrow:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border-color: #FFFFFF !important;
}

/* Cards keep their white skin — just soften the border so it doesn't look stamped */
.portfolio-stack .portfolio-card,
.diensten-section .diensten-card {
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25) !important;
}
.portfolio-stack .portfolio-card:hover,
.diensten-section .diensten-card:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35) !important;
}

/* Portfolio outro: white type on the dark bg */
.portfolio-more p {
  color: rgba(255, 255, 255, 0.65) !important;
}
