@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-0: oklch(0.16 0.004 250);
  --bg-1: oklch(0.20 0.005 250);
  --bg-2: oklch(0.24 0.006 250);
  --bg-3: oklch(0.28 0.007 250);
  --line: oklch(0.34 0.008 250 / 0.6);
  --line-soft: oklch(0.40 0.008 250 / 0.25);
  --fg: oklch(0.97 0.005 250);
  --fg-2: oklch(0.78 0.006 250);
  --fg-3: oklch(0.58 0.008 250);
  --accent: oklch(0.92 0.18 100);
  --accent-2: oklch(0.86 0.20 95);
  --accent-glow: oklch(0.92 0.18 100 / 0.45);
  --whatsapp: oklch(0.78 0.16 150);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg-1);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { overflow-x: hidden; }
body { overflow-x: hidden; position: relative; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, transparent 40%, oklch(0.92 0.18 100 / 0.05) 50%, transparent 60%, transparent 100%);
  background-size: 300% 100%;
  mask-image: radial-gradient(ellipse 46% 60% at 50% 42%, black 15%, transparent 62%);
  -webkit-mask-image: radial-gradient(ellipse 46% 60% at 50% 42%, black 15%, transparent 62%);
  animation: lineSweep 9s linear infinite;
}
body > * { position: relative; z-index: 1; }
::selection { background: var(--accent); color: var(--bg-0); }

/* Skip-to-content link (a11y) */
.skip-link {
  position: absolute; top: -40px; left: 12px; z-index: 1000;
  background: var(--accent); color: var(--bg-0);
  padding: 10px 16px; border-radius: 8px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--bg-0); outline-offset: 2px; }

/* Keyboard focus styles (a11y) */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav-cta:focus-visible,
.btn:focus-visible,
.flip-cta:focus-visible,
.submit-btn:focus-visible {
  outline-offset: 4px;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: oklch(0.16 0.004 250 / 0.55);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, border-color .3s ease;
}
.nav .logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
  color: var(--fg); text-decoration: none;
}
.nav .logo-mark {
  width: 28px; height: 28px; background: var(--accent); border-radius: 6px;
  display: grid; place-items: center; color: var(--bg-0);
  font-weight: 700; font-size: 13px;
  box-shadow: 0 0 18px var(--accent-glow); position: relative;
}
.nav .logo-mark::after {
  content: ""; position: absolute; inset: 0; border-radius: 6px;
  background: linear-gradient(135deg, transparent 0%, oklch(1 0 0 / 0.3) 50%, transparent 100%);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--fg-2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  position: relative; transition: color .2s ease; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .3s ease; box-shadow: 0 0 8px var(--accent);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--accent); color: var(--bg-0); border: none;
  padding: 10px 18px; border-radius: 999px;
  font-family: inherit; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 24px var(--accent-glow); }
.nav-toggle {
  display: none; background: none; border: none; color: var(--fg);
  cursor: pointer; padding: 4px;
}

/* MOBILE NAV OVERLAY */
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 98;
  background: oklch(0.12 0.004 250 / 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  color: var(--fg-2); text-decoration: none;
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em;
  transition: color .2s ease;
}
.nav-mobile-overlay a:hover,
.nav-mobile-overlay a.active { color: var(--fg); }
.nav-mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--fg-2); cursor: pointer; padding: 8px;
}

/* SECTIONS */
section {
  position: relative; padding: 100px 40px 60px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: visible;
}
#hero { min-height: 100vh; }
/* only clip sections that have overflowing absolute backgrounds */
#hero, #contact { overflow: hidden; }
.container { max-width: 1280px; margin: 0 auto; width: 100%; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3); display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 24px; height: 1px;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
}

/* REVEAL */
.reveal { opacity: 0; will-change: transform, opacity; }
.reveal.in { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* HERO */
#hero { padding-top: 100px; background: transparent; }
.noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 80px 80px, 80px 80px; }
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: float 20s ease-in-out infinite; }
.orb.a { width: 480px; height: 480px; background: var(--accent); top: -120px; left: -120px; opacity: 0.10; animation-delay: 0s; }
.orb.b { width: 380px; height: 380px; background: oklch(0.55 0.18 280); bottom: -100px; right: -80px; opacity: 0.25; animation-delay: -7s; }
.orb.c { width: 300px; height: 300px; background: oklch(0.7 0.15 200); top: 30%; right: 20%; opacity: 0.15; animation-delay: -14s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.1); }
  66% { transform: translate(-60px, 40px) scale(0.95); }
}
.cursor-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(60px); opacity: 0.25;
  transform: translate(-50%, -50%);
  transition: left .15s ease-out, top .15s ease-out;
  pointer-events: none; left: 50%; top: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; margin-top: auto; }
.hero-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg-2);
  background: oklch(0.18 0.004 250 / 0.6); backdrop-filter: blur(10px);
  margin-bottom: 28px; position: relative; isolation: isolate;
}
.hero-status::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; padding: 1px;
  background: conic-gradient(from var(--ang, 0deg), var(--accent), transparent 25%, transparent 75%, var(--accent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinAng 6s linear infinite; z-index: -1;
}
@property --ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes spinAng { to { --ang: 360deg; } }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
h1.hero-title {
  font-size: clamp(56px, 9vw, 144px); font-weight: 700;
  line-height: 0.92; letter-spacing: -0.04em;
  margin-bottom: 32px; text-wrap: balance;
}
.hero-title .ch { display: inline-block; opacity: 0; will-change: transform, opacity; }
.hero-title .ch.in { opacity: 1; transform: none; }
.hero-title .line { display: inline; }
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .line.accent {
  color: var(--accent); font-style: italic; font-weight: 500;
}
.hero-tagline {
  font-size: clamp(16px, 1.4vw, 20px); color: var(--fg-2);
  max-width: 600px; line-height: 1.5; margin: 0 auto 48px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 999px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, border-color .25s ease, color .25s ease;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--accent); color: var(--bg-0); box-shadow: 0 0 0 0 var(--accent-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, oklch(1 0 0 / 0.4) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-ghost {
  background: oklch(0.22 0.005 250 / 0.6); backdrop-filter: blur(10px);
  color: var(--fg); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 24px oklch(0.92 0.18 100 / 0.18); }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

.hero-meta {
  position: absolute; bottom: 40px; left: 40px; right: 40px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  color: var(--fg-3); font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-align: left;
}
.hero-meta .scroll-indicator { display: flex; align-items: center; gap: 8px; }
.scroll-arrow {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
.stats-row { display: flex; gap: 40px; }
.stat .num { font-family: 'Space Grotesk', sans-serif; color: var(--fg); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; text-transform: none; }
.stat .lbl { font-size: 10px; }

.hero-tiles {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px;
}
.hero-tile {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: 14px;
  background: oklch(0.20 0.005 250 / 0.55);
  border: 1px solid var(--line);
  text-decoration: none; color: var(--fg);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color .3s ease, box-shadow .3s ease;
  animation: tileFloat 4.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.6s);
}
.hero-tile:hover {
  border-color: oklch(0.92 0.18 100 / 0.55);
  box-shadow: 0 14px 40px oklch(0 0 0 / 0.35);
  animation-play-state: paused;
}
.hero-tile-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: oklch(0.92 0.18 100 / 0.15); color: var(--accent);
  flex-shrink: 0;
}
.hero-tile-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero-tile-text strong { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.hero-tile-text em {
  font-style: normal; font-family: 'JetBrains Mono', monospace;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-3); margin-top: 2px;
}
@keyframes tileFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  25%      { transform: translateX(8px) translateY(-4px); }
  50%      { transform: translateX(0) translateY(-7px); }
  75%      { transform: translateX(-8px) translateY(-4px); }
}
@media (max-width: 600px) {
  .hero-tiles { gap: 10px; margin-top: 28px; }
  .hero-tile { padding: 10px 14px; }
}

.hero-bigtext {
  position: absolute; bottom: -2vw; left: -2vw; right: -2vw;
  font-size: clamp(140px, 22vw, 360px); font-weight: 700; line-height: 0.85;
  letter-spacing: -0.06em; color: transparent;
  -webkit-text-stroke: 1px oklch(0.30 0.008 250 / 0.5);
  pointer-events: none; z-index: 1; white-space: nowrap; opacity: 0.6; user-select: none;
}

/* SCROLL PROGRESS BAR */
.scroll-prog {
  position: fixed; left: 0; top: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), oklch(0.7 0.15 200));
  z-index: 200; box-shadow: 0 0 12px var(--accent); transition: width .12s linear;
}

/* CLICK RIPPLE */
.ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, oklch(0.92 0.18 100 / 0.5), transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut .7s ease-out forwards; z-index: 0; mix-blend-mode: screen;
}
@keyframes rippleOut { to { transform: translate(-50%, -50%) scale(8); opacity: 0; } }

/* CURSOR DOT */
.cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 14px var(--accent);
  pointer-events: none; z-index: 300;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, background .2s ease;
  mix-blend-mode: screen; display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor-dot { display: block; } }
.cursor-dot.lg { width: 36px; height: 36px; background: oklch(0.92 0.18 100 / 0.3); }


/* SECTION HEADS */
.section-head { display: flex; flex-direction: column; align-items: center; margin-bottom: 40px; gap: 14px; }
.section-head h2,
.section-head h1 {
  font-size: clamp(40px, 5.5vw, 80px); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.03em; text-wrap: balance; max-width: 900px;
  background: linear-gradient(180deg, var(--fg) 30%, oklch(0.65 0.008 250) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-head h2 em,
.section-head h1 em { font-style: italic; font-weight: 400; color: var(--accent); -webkit-text-fill-color: var(--accent); }
.section-head .head-meta { color: var(--fg-3); font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; max-width: 480px; }
.section-head .section-sub { color: var(--fg-2); font-size: 16px; max-width: 560px; line-height: 1.5; }

/* Anchor scroll offset for fixed nav */
.service-card[id] { scroll-margin-top: 100px; }

/* SERVICES */
#services { background: transparent; justify-content: center; }
#services::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, oklch(0.45 0.008 250 / 0.4) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 20%, transparent 70%);
  opacity: 0.5; pointer-events: none; z-index: 0;
}
#services > .container { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative; border-radius: 20px;
  background: oklch(0.22 0.005 250 / 0.5); backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  transition: border-color .35s ease, background .35s ease;
  min-height: 280px; cursor: pointer; text-align: left;
  perspective: 1200px;
  transition: border-color .35s ease, background .35s ease, min-height .5s cubic-bezier(.2,.7,.2,1);
}
.service-card.flipped { min-height: 480px; }

/* FLIP CARD */
.card-inner {
  display: grid; width: 100%; min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(.2,.7,.2,1);
}
.service-card.flipped .card-inner { transform: rotateY(180deg); }
.card-front, .card-back {
  grid-area: 1 / 1;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column;
  padding: 28px;
  border-radius: 20px;
}
.card-back {
  transform: rotateY(180deg);
  padding-bottom: 32px;
  background: oklch(0.25 0.007 250 / 0.98);
  border: 1px solid oklch(0.92 0.18 100 / 0.25);
  position: absolute; inset: 0;
}
.card-inner { position: relative; }
.card-back h4 {
  font-size: 26px; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 18px; color: var(--fg);
}
.card-back ul {
  list-style: none; flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px;
}
.card-back .service-tags { margin-bottom: 16px; }
.card-back ul li {
  font-size: 14px; color: var(--fg-2); display: flex; gap: 10px; align-items: flex-start; line-height: 1.45;
}
.card-back ul li::before { content: "→"; color: var(--accent); flex-shrink: 0; }
.flip-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; border-radius: 999px;
  background: var(--accent); color: var(--bg-0);
  font-family: inherit; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease; margin-bottom: 12px;
}
.flip-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.flip-close {
  background: none; border: none; color: var(--fg-3); cursor: pointer; padding: 0;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; display: flex; align-items: center; gap: 6px;
  transition: color .2s ease; align-self: flex-start;
}
.flip-close:hover { color: var(--accent); }
.service-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 20px;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), oklch(0.92 0.18 100 / 0.18), transparent 40%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none; z-index: 0;
}
.service-card:hover { border-color: oklch(0.92 0.18 100 / 0.4); background: oklch(0.24 0.006 250 / 0.6); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg-3); letter-spacing: 0.15em; margin-bottom: auto; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--bg-3); border: 1px solid var(--line);
  display: grid; place-items: center; margin: 16px 0 16px;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease; color: var(--fg);
}
.service-card:hover .service-icon { background: var(--accent); border-color: var(--accent); color: var(--bg-0); transform: rotate(-6deg) scale(1.08); box-shadow: 0 0 28px var(--accent-glow); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: clamp(28px, 2.4vw, 36px); font-weight: 600; letter-spacing: -0.03em; margin-bottom: 8px; line-height: 1.05; }
.service-card p { color: var(--fg-2); font-size: 14.5px; line-height: 1.5; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.service-tags span {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 6px 10px; border: 1px solid var(--line);
  border-radius: 999px; color: var(--fg-2); transition: border-color .25s ease;
}
.service-card:hover .service-tags span { border-color: var(--line-soft); }
.service-card .reveal-cta {
  position: absolute; left: 32px; right: 32px; bottom: 32px;
  transform: translateY(120%); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--accent);
  display: flex; align-items: center; gap: 8px; pointer-events: none;
}
.service-card:hover .reveal-cta { transform: translateY(0); opacity: 1; }
.service-card .reveal-cta::after { content: "→"; transition: transform .3s ease; }
.service-card:hover .reveal-cta::after { transform: translateX(6px); }

/* PROCESS / TIMELINE */
#process {
  padding: 80px 40px 100px; position: relative; overflow: hidden;
}
#process::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, oklch(0.45 0.008 250 / 0.3) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 75%);
  opacity: 0.4; pointer-events: none; z-index: 0;
}
#process > .container { position: relative; z-index: 1; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px; position: relative;
}
.process-grid::before {
  content: ""; position: absolute; top: 32px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1; padding: 24px 22px;
  background: oklch(0.20 0.005 250 / 0.55); border: 1px solid var(--line);
  border-radius: 18px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: oklch(0.92 0.18 100 / 0.4);
  box-shadow: 0 18px 40px oklch(0 0 0 / 0.3);
}
.process-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg-0); display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
}
.process-day {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
}
.process-step h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.process-step p { font-size: 14px; color: var(--fg-2); line-height: 1.5; }
@media (max-width: 900px) {
  #process { padding: 60px 24px 80px; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-grid::before { display: none; }
}

/* ABONNEMENTEN */
#abonnementen {
  padding: 80px 40px 100px; position: relative; overflow: hidden;
  background: var(--bg-0);
}
#abonnementen::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, oklch(0.45 0.008 250 / 0.25) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 75%);
  opacity: 0.4; pointer-events: none; z-index: 0;
}
#abonnementen > .container { position: relative; z-index: 1; }
.abo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px; align-items: stretch;
}
.abo-card {
  position: relative; padding: 32px 28px;
  background: oklch(0.20 0.005 250 / 0.55); border: 1px solid var(--line);
  border-radius: 18px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
}
.abo-card:hover {
  transform: translateY(-4px);
  border-color: oklch(0.92 0.18 100 / 0.4);
  box-shadow: 0 18px 40px oklch(0 0 0 / 0.3);
}
.abo-card.featured {
  border-color: oklch(0.92 0.18 100 / 0.5);
  background: oklch(0.22 0.006 250 / 0.7);
  box-shadow: 0 18px 40px oklch(0 0 0 / 0.25), inset 0 0 0 1px oklch(0.92 0.18 100 / 0.15);
}
.abo-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg-0);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 6px 14px; border-radius: 999px; font-weight: 700;
}
.abo-name {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--accent); font-weight: 600;
}
.abo-price {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.abo-price .amount {
  font-size: 36px; font-weight: 700; letter-spacing: -0.02em; line-height: 1;
}
.abo-price .per {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--fg-3);
}
.abo-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.abo-list li {
  position: relative; padding-left: 22px; font-size: 14.5px; color: var(--fg-2); line-height: 1.45;
}
.abo-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 8px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.abo-card .flip-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; background: transparent; color: var(--fg);
  border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: background .25s, border-color .25s, color .25s;
  margin-top: auto;
}
.abo-card .flip-cta:hover { background: var(--accent); color: var(--bg-0); border-color: var(--accent); }
.abo-card.featured .flip-cta { background: var(--accent); color: var(--bg-0); border-color: var(--accent); }
.abo-card.featured .flip-cta:hover { background: var(--accent-2); border-color: var(--accent-2); }
.abo-note {
  margin-top: 32px; padding: 18px 22px;
  background: oklch(0.16 0.004 250 / 0.5); border: 1px solid var(--line-soft);
  border-radius: 12px;
  font-size: 13px; color: var(--fg-3); line-height: 1.55; text-align: left;
}
@media (max-width: 900px) {
  #abonnementen { padding: 60px 24px 80px; }
  .abo-grid { grid-template-columns: 1fr; gap: 16px; }
  .abo-price .amount { font-size: 32px; }
}

/* FAQ */
#faq {
  padding: 80px 40px 120px; position: relative; overflow: hidden;
  background: var(--bg-0);
}
#faq::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 40%, oklch(0.92 0.18 100 / 0.06) 50%, transparent 60%, transparent 100%);
  background-size: 300% 100%;
  pointer-events: none; z-index: 0;
  animation: lineSweep 12s linear infinite;
}
#faq > .container { position: relative; z-index: 1; max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  background: oklch(0.20 0.005 250 / 0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item[open] { border-color: oklch(0.92 0.18 100 / 0.4); background: oklch(0.22 0.006 250 / 0.6); }
.faq-item summary {
  cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  list-style: none;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: 'JetBrains Mono', monospace; font-weight: 400;
  font-size: 24px; color: var(--accent);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
  padding: 0 22px 20px; color: var(--fg-2); font-size: 15px; line-height: 1.6;
}
@media (max-width: 700px) {
  #faq { padding: 60px 20px 80px; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-answer { padding: 0 18px 18px; font-size: 14px; }
}

/* PACKAGES */
#packages { background: transparent; justify-content: center; }
#packages::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 40%, oklch(0.92 0.18 100 / 0.10) 50%, transparent 60%, transparent 100%);
  background-size: 300% 100%;
  mask-image: radial-gradient(ellipse 46% 60% at 50% 42%, black 15%, transparent 62%);
  -webkit-mask-image: radial-gradient(ellipse 46% 60% at 50% 42%, black 15%, transparent 62%);
  pointer-events: none; z-index: 0;
  animation: lineSweep 9s linear infinite;
}
@keyframes lineSweep { from { background-position: 100% 0; } to { background-position: -100% 0; } }
#packages > .container { position: relative; z-index: 1; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pkg {
  position: relative; padding: 32px 28px; border-radius: 20px;
  background: oklch(0.22 0.005 250 / 0.5); backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease;
  display: flex; flex-direction: column; text-align: left;
}
.pkg:hover { transform: translateY(-4px); border-color: oklch(0.92 0.18 100 / 0.3); }
.pkg.featured {
  background: linear-gradient(160deg, oklch(0.26 0.008 250 / 0.7), oklch(0.20 0.005 250 / 0.7));
  border-color: transparent; box-shadow: 0 0 60px oklch(0.92 0.18 100 / 0.12); isolation: isolate;
}
.pkg.featured::after {
  content: ""; position: absolute; inset: 0; border-radius: 20px; padding: 1px;
  background: conic-gradient(from var(--ang2, 0deg), var(--accent), oklch(0.55 0.18 280), var(--accent), oklch(0.7 0.15 200), var(--accent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinAng2 8s linear infinite; z-index: -1; pointer-events: none;
}
@property --ang2 { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes spinAng2 { to { --ang2: 360deg; } }
.pkg.featured::before {
  content: "Most chosen"; position: absolute; top: -1px; right: 24px;
  transform: translateY(-50%); background: var(--accent); color: var(--bg-0);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 0 24px var(--accent-glow);
}
.pkg-name { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-3); margin-bottom: 18px; }
.pkg.featured .pkg-name { color: var(--accent); }
.pkg-tagline { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.1; }
.pkg-desc { color: var(--fg-2); font-size: 14px; line-height: 1.5; margin-bottom: 28px; }
.pkg-price { display: flex; align-items: baseline; gap: 10px; padding: 20px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); margin-bottom: 24px; }
.pkg-price .from { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); }
.pkg-price .amount { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; }
.pkg-price .amount em { font-style: italic; font-weight: 400; color: var(--fg-2); font-size: 18px; }
.pkg-features { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.pkg-features li { font-size: 14px; color: var(--fg-2); display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; }
.pkg-features .check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.pkg-cta { width: 100%; text-align: center; justify-content: center; padding: 16px 24px; }
.pkg .pkg-cta-ghost { background: transparent; border: 1px solid var(--line); color: var(--fg); }
.pkg .pkg-cta-ghost:hover { border-color: var(--accent); color: var(--accent); }
.pkg.featured .pkg-cta { background: var(--accent); color: var(--bg-0); border: none; }
.pkg.featured .pkg-cta:hover { box-shadow: 0 0 24px var(--accent-glow); transform: translateY(-2px); }

/* CONTACT */
#contact { background: transparent; justify-content: center; position: relative; overflow: hidden; }
#contact .contact-orb { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); filter: blur(120px); opacity: 0.15; bottom: -300px; right: -200px; pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; position: relative; z-index: 1; text-align: left; }
.contact-grid h2,
.contact-grid h1 { font-size: clamp(40px, 5.5vw, 80px); font-weight: 700; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 24px; }
.contact-grid h2 em,
.contact-grid h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.contact-lead { color: var(--fg-2); font-size: 17px; line-height: 1.55; margin-bottom: 36px; max-width: 460px; }
.contact-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-link {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 14px;
  background: oklch(0.22 0.005 250 / 0.5); backdrop-filter: blur(14px);
  border: 1px solid var(--line); color: var(--fg); text-decoration: none; transition: all .25s ease;
}
.contact-link:hover { border-color: var(--accent); background: oklch(0.24 0.006 250 / 0.7); transform: translateX(4px); }
.contact-link .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-3); display: grid; place-items: center; flex-shrink: 0; transition: background .25s ease, color .25s ease; color: var(--fg); }
.contact-link.whatsapp:hover .ic { background: var(--whatsapp); color: var(--bg-0); }
.contact-link.email:hover .ic { background: var(--accent); color: var(--bg-0); }
.contact-link .lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); margin-bottom: 4px; }
.contact-link .val { font-size: 17px; font-weight: 500; }
.contact-link .arrow { margin-left: auto; color: var(--fg-3); transition: color .25s ease, transform .25s ease; }
.contact-link:hover .arrow { color: var(--accent); transform: translateX(4px); }
.contact-form { background: oklch(0.22 0.005 250 / 0.5); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; background: var(--bg-0); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; color: var(--fg); font-family: inherit; font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px oklch(0.92 0.18 100 / 0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error textarea, .field.error select { border-color: oklch(0.7 0.2 25); }
.field-error { color: oklch(0.78 0.18 25); font-family: 'JetBrains Mono', monospace; font-size: 11px; margin-top: 6px; display: none; }
.field.error .field-error { display: block; }
.submit-btn { width: 100%; background: var(--accent); color: var(--bg-0); border: none; padding: 18px; border-radius: 12px; font-family: inherit; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform .2s ease, box-shadow .2s ease; position: relative; overflow: hidden; }
.submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success.visible { display: block; }
.form-success .check-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: var(--bg-0); display: grid; place-items: center; margin: 0 auto 20px; box-shadow: 0 0 40px var(--accent-glow); }
.form-success h4 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.01em; }
.form-success p { color: var(--fg-2); font-size: 14px; }

/* FOOTER */
.footer-strip { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 40px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.1em; z-index: 2; }
.footer-strip .dot { color: var(--accent); }

/* SITE FOOTER (SEO hub: diensten + steden + bedrijf) */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-0); padding: 64px 40px 32px; }
.site-footer .sf-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 2fr 1fr; gap: 40px; }
.site-footer .sf-brand .logo-mark { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: var(--bg-0); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.site-footer .sf-brand p { color: var(--fg-3); font-size: 13.5px; line-height: 1.6; max-width: 260px; }
.site-footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--fg-2); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.site-footer a:hover { color: var(--accent); }
.site-footer .sf-cities ul { columns: 3; column-gap: 24px; }
.site-footer .sf-cities li { font-size: 13px; }
.site-footer .sf-bottom { max-width: 1120px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.1em; }
.site-footer .sf-bottom a { color: var(--fg-3); font-size: 11px; }
.site-footer .sf-bottom .dot { color: var(--accent); }
@media (max-width: 860px) {
  .site-footer { padding: 48px 24px 28px; }
  .site-footer .sf-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .sf-cities { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .site-footer .sf-inner { grid-template-columns: 1fr; }
  .site-footer .sf-cities ul { columns: 2; }
}

/* COMPACT OVERRIDES — packages & services have a lot of content */
#packages { padding-top: 80px; padding-bottom: 40px; }
#packages .section-head { margin-bottom: 28px; gap: 10px; }
#packages .section-head h2,
#packages .section-head h1 { font-size: clamp(32px, 4.2vw, 58px); }
#packages .pkg { padding: 0; min-height: 340px; cursor: pointer; perspective: 1200px; }
#packages .pkg .card-inner { flex: 1; }
#packages .pkg.flipped .card-inner { transform: rotateY(180deg); }
#packages .card-front { padding: 20px 22px 60px; }
#packages .card-back { padding: 20px 22px; }
#packages .pkg-name { margin-bottom: 10px; }
#packages .pkg-tagline { font-size: 24px; margin-bottom: 6px; }
#packages .pkg-desc { margin-bottom: 14px; font-size: 13px; }
#packages .pkg-price { padding: 12px 0; margin-bottom: 0; }
#packages .pkg-price .amount { font-size: 26px; }
.pkg .reveal-cta {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  transform: translateY(120%); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--accent);
  display: flex; align-items: center; gap: 8px; pointer-events: none;
}
.pkg:hover:not(.flipped) .reveal-cta { transform: translateY(0); opacity: 1; }
.pkg .reveal-cta::after { content: "→"; transition: transform .3s ease; }
.pkg:hover:not(.flipped) .reveal-cta::after { transform: translateX(6px); }

#services { padding-top: 80px; }
#services .section-head { margin-bottom: 36px; }
#services .service-card { min-height: 240px; }
  #services .service-card.flipped { min-height: 460px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  section { height: auto; overflow: visible; padding: 100px 24px 60px; }
  #hero {
    min-height: 100dvh;
    padding: 76px 24px 32px;
    justify-content: flex-start;
  }
  #hero .btn { padding: 14px 22px; font-size: 14px; }
  #hero .hero-carousel { margin-top: auto; }
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .services-grid, .packages-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hero-meta { position: static; margin-top: 48px; flex-direction: row; flex-wrap: wrap; gap: 16px; padding: 0; }
  .footer-strip { position: static; padding: 16px 24px; flex-direction: column; gap: 6px; margin-top: 40px; }
  .pkg.featured::before { right: 50%; transform: translate(50%, -50%); }
  .service-card { min-height: 220px; }
  .service-card.flipped { min-height: 480px; }
  #contact { padding-bottom: 0; }
}
@media (max-width: 540px) {
  h1.hero-title { font-size: 44px; margin-bottom: 14px; }
  .hero-tagline { font-size: 14px; margin-bottom: 18px; }
  .stats-row { gap: 20px; flex-wrap: wrap; }
  .stat .num { font-size: 18px; }
  .nav-cta { display: none; }
  .hero-bigtext { display: none; }
  /* Reduce backdrop-filter blur on mobile for performance on midrange Android */
  .nav { backdrop-filter: blur(8px) saturate(120%); -webkit-backdrop-filter: blur(8px) saturate(120%); }
  .nav-mobile-overlay { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .hc-card, .pkg, .service-card, .port-card, .faq-item, .process-step {
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  }
}

/* INLINE TEKSTLINKS IN LOPENDE TEKST — site-breed leesbaar op donkere bg.
   Helder merk-accent (geel) i.p.v. browser-default donkerblauw (te laag contrast).
   Geldt voor links in alineas/lijsten van content-secties. Knoppen, nav, footer,
   skip-link en service-kaarten zetten hun eigen kleur en blijven ongemoeid. */
.loc-content p a,
.loc-content li a,
.legal-body p a,
.legal-body li a,
.article p a,
.article li a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease, text-decoration-thickness .2s ease;
}
.loc-content p a:hover,
.loc-content li a:hover,
.legal-body p a:hover,
.legal-body li a:hover,
.article p a:hover,
.article li a:hover {
  color: var(--accent-2);
  text-decoration-thickness: 2px;
}
.loc-content p a:focus-visible,
.loc-content li a:focus-visible,
.legal-body p a:focus-visible,
.legal-body li a:focus-visible,
.article p a:focus-visible,
.article li a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===== Conversie-elementen landingspaginas (loc-*) ===== */
/* Sterkere primaire CTA in de hero, secundaire knoppen subtieler zodat de hoofdkeuze duidelijk is */
.loc-hero .cta-row .btn-primary { padding: 20px 36px; font-size: 16px; }
.loc-hero .cta-row { gap: 12px; margin-bottom: 4px; }

/* Trust-badges: concrete bewijzen direct onder de CTA, boven de vouw, niet weggestopt */
.loc-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 660px; margin: 26px auto 0;
}
.loc-badges .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: oklch(0.20 0.005 250 / 0.6);
  font-size: 13.5px; font-weight: 500; color: var(--fg-2);
}
.loc-badges .badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.loc-badges .badge strong { color: var(--fg); font-weight: 600; }

/* Sticky mobiele actiebalk: actie altijd binnen bereik, ook rond 50% scroll waar men afhaakt */
.loc-sticky-cta { display: none; }
@media (max-width: 700px) {
  .loc-sticky-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: oklch(0.14 0.004 250 / 0.92); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-soft);
  }
  .loc-sticky-cta a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 12px; border-radius: 14px; font-weight: 600; font-size: 15px; text-decoration: none;
  }
  .loc-sticky-cta .sc-primary { background: var(--accent); color: var(--bg-0); }
  .loc-sticky-cta .sc-wa { background: oklch(0.22 0.005 250 / 0.9); color: var(--fg); border: 1px solid var(--line); }
  .loc-sticky-cta svg { width: 18px; height: 18px; }
  /* ruimte onder de content zodat de balk niets afdekt */
  body.has-sticky-cta { padding-bottom: 76px; }
}
