/* ============================================================
   LYNUXIS FEATURES — sales-driving add-ons v11
   Alle nieuwe features in 1 stylesheet. Alles voorvoegsel .lx-*
   zodat er geen conflict is met bestaande styles.
   ============================================================ */

/* ============================================================
   SYSTEM POLISH — beating-heart kohesie over de hele site
   ============================================================ */

/* Eén bron-van-waarheid voor hartslag-frequentie */
:root {
  --pulse-fast: 1.6s;
  --pulse-mid: 2.4s;
  --pulse-slow: 6s;
  --pulse-breath: 8s;
}

/* Typografie: font-features voor pro-niveau rendering */
html {
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'ss01' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Tekst-selectie */
::selection {
  background: color-mix(in srgb, #7fd0ee 35%, transparent);
  color: #f0f4f8;
  text-shadow: none;
}
::-moz-selection {
  background: color-mix(in srgb, #7fd0ee 35%, transparent);
  color: #f0f4f8;
}

/* Focus-ring — cyan glow, alleen voor toetsenbord-gebruikers */
:focus-visible {
  outline: 2px solid #7fd0ee;
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset .15s ease;
}
a:focus-visible, button:focus-visible {
  outline-color: #7fd0ee;
  box-shadow: 0 0 0 4px color-mix(in srgb, #7fd0ee 20%, transparent);
}

/* Scrollbar — donker met cyan thumb */
* {
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, #7fd0ee 40%, transparent) transparent;
}
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, #7fd0ee 30%, transparent);
  border-radius: 100px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, #7fd0ee 60%, transparent);
  background-clip: content-box;
}

/* Universele "breath" animatie — voor key visual elements */
@keyframes lxBreath {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
@keyframes lxHeartbeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* Section dividers — subtiele gradient lijntjes tussen secties */
.section + .section::before,
.case-section + .case-section::before {
  content: '';
  display: block;
  max-width: 320px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, #7fd0ee 22%, transparent), transparent);
  position: relative;
  top: -1px;
}

/* Anchor-links: subtiele underline op tekst-links — excludeer alle CTA/btn patterns
   zodat geen knop-bg overschreven wordt door deze cyaan underline */
.case-section a:not(.case-cta):not(.case-btn-primary):not(.case-btn-ghost):not(.pricing-cta):not(.contact-btn):not(.hero-chat-chip):not(.ai-quick-prompt):not(.service-card-link):not(.event-type-card):not([class*="lx-"]):not([class*="btn"]):not([class*="cta"]):not([class*="-link"]),
.case-content a:not(.case-cta):not(.case-btn-primary):not([class*="btn"]):not([class*="cta"]) {
  text-decoration: none;
  background-image: linear-gradient(90deg, #7fd0ee, #7fd0ee);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .25s ease, color .15s;
}
.case-section a:not(.case-cta):not(.case-btn-primary):not(.case-btn-ghost):not(.pricing-cta):not(.contact-btn):not(.hero-chat-chip):not(.ai-quick-prompt):not(.service-card-link):not(.event-type-card):not([class*="lx-"]):not([class*="btn"]):not([class*="cta"]):not([class*="-link"]):hover,
.case-content a:not(.case-cta):not(.case-btn-primary):not([class*="btn"]):not([class*="cta"]):hover {
  color: #7fd0ee;
}

/* Body radial gloed — ACHTER de canvas (z-index -2) zodat netwerk zichtbaar blijft */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: radial-gradient(ellipse 80% 50% at 20% 0%, color-mix(in oklch, #7fd0ee 2.5%, transparent), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
/* Grain texture ook achter de canvas */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* Image rendering kwaliteit */
img { image-rendering: -webkit-optimize-contrast; }

/* Smooth fade-in voor de hele page bij eerste load */
@keyframes lxPageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: lxPageFadeIn .4s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* ============================================================
   COMMAND PALETTE — ⌘K / Ctrl+K snelle navigatie (2026)
   ============================================================ */
.lx-cmdk-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.lx-cmdk-backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.lx-cmdk-modal {
  position: fixed;
  top: 18vh;
  left: 50%;
  transform: translateX(-50%) scale(0.97);
  width: 92%;
  max-width: 600px;
  background: linear-gradient(160deg, #0a1830 0%, #061224 100%);
  border: 1px solid rgba(127,208,238,0.25);
  border-radius: 16px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(127,208,238,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s cubic-bezier(.2,.9,.3,1);
  overflow: hidden;
}
.lx-cmdk-modal[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.lx-cmdk-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lx-cmdk-input-wrap svg {
  width: 18px; height: 18px;
  opacity: 0.5;
  flex-shrink: 0;
  stroke: var(--cyan-2, #7fd0ee);
}
.lx-cmdk-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink, #f0f4f8);
  font-size: 1rem;
  font-family: inherit;
  padding: 4px 0;
}
.lx-cmdk-input::placeholder { color: var(--ink-3, #6a7a8c); }
.lx-cmdk-kbd {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--ink-3, #6a7a8c);
  font-family: ui-monospace, monospace;
  flex-shrink: 0;
}
.lx-cmdk-list {
  max-height: 360px;
  overflow-y: auto;
  padding: 6px 0;
}
.lx-cmdk-group-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3, #6a7a8c);
  font-weight: 700;
  padding: 10px 18px 6px;
}
.lx-cmdk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  cursor: pointer;
  color: var(--ink-2, #b8c4d0);
  transition: background .12s;
  text-decoration: none;
  font-size: 0.92rem;
}
.lx-cmdk-item[data-active="true"] {
  background: rgba(127,208,238,0.08);
  color: var(--ink, #f0f4f8);
}
.lx-cmdk-item-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(127,208,238,0.08);
  border: 1px solid rgba(127,208,238,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cyan-2, #7fd0ee);
}
.lx-cmdk-item-icon svg { width: 14px; height: 14px; stroke: currentColor; }
.lx-cmdk-item[data-warm] .lx-cmdk-item-icon {
  background: rgba(255,140,94,0.08);
  border-color: rgba(255,140,94,0.25);
  color: var(--coral, #ff8c5e);
}
.lx-cmdk-item-body { flex: 1; min-width: 0; }
.lx-cmdk-item-title {
  color: inherit;
  font-weight: 500;
  line-height: 1.3;
}
.lx-cmdk-item-sub {
  font-size: 0.74rem;
  color: var(--ink-3, #6a7a8c);
  margin-top: 1px;
}
.lx-cmdk-item-shortcut {
  font-size: 0.7rem;
  color: var(--ink-3, #6a7a8c);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
}
.lx-cmdk-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--ink-3, #6a7a8c);
  font-size: 0.92rem;
}
.lx-cmdk-footer {
  padding: 10px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--ink-3, #6a7a8c);
}
.lx-cmdk-footer-keys { display: inline-flex; gap: 10px; align-items: center; }
.lx-cmdk-footer-keys span { display: inline-flex; align-items: center; gap: 4px; }
/* Cmdk trigger pill verwijderd uit zicht — alleen toegankelijk via ⌘K / Ctrl+K shortcut */
.lx-cmdk-trigger { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .lx-cmdk-modal, .lx-cmdk-backdrop { transition: none; }
}

/* ============================================================
   VIEW TRANSITIONS — 2026 native cross-document transitions
   Werkt automatisch op alle pagina's via <meta name="view-transition">
   ============================================================ */
/* ============================================================
   SCROLL-PROGRESS INDICATOR — subtiele cyaan lijn bovenaan viewport
   die meegroeit met scroll. CSS-only via scroll-driven animation
   timeline. Graceful fallback in oude browsers (gewoon onzichtbaar).
   ============================================================ */
@supports (animation-timeline: scroll()) {
  body::before {
    /* override de oude body::before glow? — nee, hier maken we een nieuw element */
  }
  html {
    /* Setup container voor scroll progress */
  }
}

.lx-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}
.lx-scroll-progress::after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(127, 208, 238, 0.85) 50%,
    rgba(168, 225, 245, 1) 100%);
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 12px rgba(127, 208, 238, 0.45);
}
@supports (animation-timeline: scroll()) {
  .lx-scroll-progress::after {
    animation: lxScrollGrow linear forwards;
    animation-timeline: scroll(root);
  }
}
@keyframes lxScrollGrow {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .lx-scroll-progress::after { animation: none; transform: scaleX(0); }
}

@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: 280ms cubic-bezier(.4,0,.2,1) both lxVtOut;
}
::view-transition-new(root) {
  animation: 380ms cubic-bezier(.2,.9,.3,1) 80ms both lxVtIn;
}
@keyframes lxVtOut {
  to { opacity: 0; transform: translateY(-8px); filter: blur(2px); }
}
@keyframes lxVtIn {
  from { opacity: 0; transform: translateY(12px); filter: blur(3px); }
}
.case-logo { view-transition-name: brand-logo; }
.case-nav-center { view-transition-name: brand-nav; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ============================================================
   A11Y — zonder visuele impact, alleen toegankelijker
   ============================================================ */

/* Skip-to-content link — verborgen tot screenreader/keyboard focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--cyan-2, #7fd0ee);
  color: var(--bg, #000510);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Focus-visible voor keyboard-gebruikers (niet voor muis-clicks) */
*:focus-visible {
  outline: 2px solid var(--cyan-2, #7fd0ee);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cyan-2, #7fd0ee);
  outline-offset: 3px;
}
/* Verwijder default browser outline alleen als focus-visible werkt — fallback blijft */
:focus:not(:focus-visible) {
  outline: none;
}

/* Visueel-verborgen klasse voor screen-reader-only content */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Respect voor users die minder beweging willen */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Particle network ook stilzetten als gebruiker dat wil */
  #lxBgCanvas { display: none; }
}

/* Touch-target minimum 44x44 voor mobile usability */
@media (max-width: 700px) {
  a, button, input[type="submit"], input[type="button"], .case-cta {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ============================================================
   GLOBALE TEKST-CENTRERING v3 — simpel, alleen tekst-elementen
   Geen *-selectors op hero/container — die kunnen layout breken.
   ============================================================ */

/* Alleen écht tekst-bedoelde elementen centreren */
h1, h2, h3, h4, h5, h6,
.chapter-title, .chapter-sub, .chapter-eyebrow,
.case-eyebrow, .case-lede, .case-accent-line,
.hero-sub, .hero-badge,
.founder-name, .founder-role, .founder-bio,
.update-entry h3, .update-entry p, .update-date,
.case-meta, .case-meta > div,
.case-metric, .case-metric .val, .case-metric .lbl,
.case-step h3, .case-step p,
.portfolio-category, .portfolio-title, .portfolio-desc,
.info-item, .info-item strong, .info-item p,
.value h3, .value p,
.case-footer-grid > div,
.case-footer-grid strong,
.case-footer-bottom,
.service-card h3, .service-card p, .service-card .service-tags,
.process-card h4, .process-card p,
.mini-card h4, .mini-card p,
.metric-card .metric-num, .metric-card .metric-label,
.discover-card h3, .discover-card p, .discover-card span,
.final-cta-wrapper p, .final-cta-wrapper h2,
.notfound-hero h1, .notfound-hero p, .notfound-suggestions h3,
.vg-panel-title, .vg-kpi .lbl, .vg-kpi .val, .vg-kpi .delta,
.vg-module h4, .vg-module p,
.case-cta-section h2, .case-cta-section p,
blockquote, blockquote p, blockquote footer {
  text-align: center;
}

/* Case-lijsten (tech stack) — links uitgelijnd voor leesbaarheid */
.case-stack li, .transform-list li {
  text-align: left;
  justify-content: flex-start;
}
.case-stack { text-align: left; }
.case-stack li strong { display: inline-block; margin-right: 0.4rem; }

/* ============================================================
   SITE-BREDE CENTRERING v4 — alles in het midden
   Forceer text-align: center op de meest voorkomende
   inhoud-containers. Form-inputs en code blocks blijven links.
   ============================================================ */
section, article, main,
section > *, article > *,
.case, .case-section, .case-container, .case-hero,
.wrap, .container,
.section, .section > *,
.hero, .hero > *, .hero-frame, .hero-frame > *,
.services-grid > *, .portfolio-grid > *, .discover-grid > *,
.process-grid > *, .metrics-grid > *,
.founder-card, .founder-card > *,
.case-split > div, .case-split > div > *,
.case-timeline, .case-step, .case-step > *,
.case-meta > div, .case-meta > div > *,
.case-metrics, .case-metrics > *,
.case-stack li, .case-stack li > *,
.update-entry, .update-entry > div, .update-entry > div > *,
.contact-info, .contact-info > *,
p, h1, h2, h3, h4, h5, h6,
.lx-section, .lx-container, .lx-title, .lx-subtitle,
.case-cta-section, .case-cta-section > *,
.case-footer-grid > div, .case-footer-grid > div > *,
blockquote, blockquote > * {
  text-align: center;
}

/* Lists: bullet markers links uitlijnen werkt niet bij center,
   dus list-style weghalen waar nodig (al gedaan voor case-stack) */
.case-stack, .transform-list, ul:not(.lx-stats):not(.contact-buttons) {
  list-style-position: inside;
}

/* UITZONDERINGEN — deze MOETEN links blijven voor leesbaarheid/UX */
input, textarea, select,
input::placeholder, textarea::placeholder,
code, pre, .lx-chat-message,
.lx-roi-field label, .lx-roi-field input,
.lx-modal-grid .lx-chip {
  text-align: left;
}

/* Split-kolommen: twee-koloms body-tekst altijd links */
.case-split > div,
.case-split > div p,
.case-split > div h2,
.case-split > div h3,
.case-split > div > *,
.case-stack,
.case-stack li,
.case-stack li > * {
  text-align: left;
}
input[type="submit"], input[type="button"], button {
  text-align: center;
}

/* ============================================================
   SAFETY NET — forceer alle content in onze injected secties
   ALTIJD zichtbaar. Geen reveal-animatie want die had race
   condition met IntersectionObserver en liet grote lege
   gaten achter.
   ============================================================ */
#showcase .reveal,
#showcase .reveal-stagger,
#showcase .reveal-stagger > *,
#stack .reveal,
#stack .reveal-stagger,
#stack .reveal-stagger > *,
#beforeafter .reveal,
#beforeafter .reveal-stagger,
#beforeafter .reveal-stagger > * {
  opacity: 1 !important;
  transform: none !important;
}

/* Ook de nieuwe sections zelf altijd laten bestaan — geen transitie */
.lx-section,
.lx-section * {
  /* Geen opacity: 0 fallback; als iets naar binnen gaat via JS moet het direct zichtbaar zijn */
}

:root {
  --lx-bg: #000510;
  --lx-surface: rgba(6, 18, 36, 0.85);
  --lx-surface-2: rgba(10, 24, 44, 0.92);
  --lx-border: rgba(255, 255, 255, 0.1);
  --lx-border-2: rgba(255, 255, 255, 0.18);
  --lx-cyan: #4db4dc;
  --lx-cyan-2: #7fd0ee;
  --lx-cyan-3: #2a8db0;
  --lx-cyan-glow: rgba(77, 180, 220, 0.35);
  --lx-ink: #f0f4f8;
  --lx-ink-2: #b8c4d0;
  --lx-ink-3: #6a7a8c;
  --lx-green: #10b981;
  --lx-radius: 14px;
}

/* ============================================================
   1. AI CHAT WIDGET (floating, bottom-right)
   ============================================================ */
.lx-chat-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  border: none;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 8px 28px rgba(77, 180, 220, 0.45), 0 0 0 0 rgba(77, 180, 220, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000510;
  animation: lx-pulse 2.5s infinite ease-out;
  transition: transform .2s ease;
}
.lx-chat-launcher:hover { transform: scale(1.08); }
.lx-chat-launcher svg { width: 28px; height: 28px; }
.lx-chat-launcher .lx-chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--lx-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--lx-bg);
}
@keyframes lx-pulse {
  0% { box-shadow: 0 8px 28px rgba(77, 180, 220, 0.45), 0 0 0 0 rgba(77, 180, 220, 0.6); }
  70% { box-shadow: 0 8px 28px rgba(77, 180, 220, 0.45), 0 0 0 18px rgba(77, 180, 220, 0); }
  100% { box-shadow: 0 8px 28px rgba(77, 180, 220, 0.45), 0 0 0 0 rgba(77, 180, 220, 0); }
}

.lx-chat-window {
  position: fixed;
  bottom: 92px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 560px;
  max-height: calc(100vh - 130px);
  background: var(--lx-surface-2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--lx-border-2);
  border-radius: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--lx-border);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all .28s cubic-bezier(.2,.9,.3,1);
}
.lx-chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.lx-chat-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--lx-border);
  background: linear-gradient(180deg, rgba(77,180,220,0.08), transparent);
}
.lx-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000510;
  font-weight: 700;
  position: relative;
}
.lx-chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lx-green);
  border: 2px solid var(--lx-surface-2);
}
.lx-chat-title { font-weight: 600; font-size: 15px; color: var(--lx-ink); }
.lx-chat-status { font-size: 12px; color: var(--lx-ink-3); }
.lx-chat-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--lx-ink-2);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.lx-chat-close:hover { background: var(--lx-border); color: var(--lx-ink); }

.lx-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.lx-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: lx-msg-in .3s ease both;
}
.lx-msg.bot {
  background: rgba(77, 180, 220, 0.08);
  border: 1px solid rgba(77, 180, 220, 0.2);
  color: var(--lx-ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.lx-msg.user {
  background: linear-gradient(135deg, var(--lx-cyan), var(--lx-cyan-3));
  color: #001018;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
@keyframes lx-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.lx-msg-typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
}
.lx-msg-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lx-cyan);
  animation: lx-dot 1.2s infinite ease-in-out;
}
.lx-msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.lx-msg-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes lx-dot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.lx-chat-quick {
  padding: 0 16px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lx-chat-quick button {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--lx-border);
  color: var(--lx-ink-2);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s;
}
.lx-chat-quick button:hover {
  background: rgba(77, 180, 220, 0.15);
  border-color: var(--lx-cyan);
  color: var(--lx-ink);
}

.lx-chat-input {
  padding: 12px;
  border-top: 1px solid var(--lx-border);
  display: flex;
  gap: 8px;
}
.lx-chat-input input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--lx-border);
  color: var(--lx-ink);
  padding: 10px 14px;
  border-radius: 22px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.lx-chat-input input:focus { border-color: var(--lx-cyan); }
.lx-chat-input button {
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  color: #000510;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lx-chat-input button:hover { transform: scale(1.05); }

/* ============================================================
   2. SECTION WRAPPERS
   ============================================================ */
.lx-section {
  padding: 6rem 0;
  position: relative;
  text-align: center;
}
.lx-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.lx-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lx-cyan);
  margin-bottom: 1rem;
  padding: 6px 14px;
  background: rgba(77,180,220,0.08);
  border: 1px solid rgba(77,180,220,0.2);
  border-radius: 20px;
}
.lx-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--lx-ink);
  margin: 0 auto 1rem;
  text-align: center;
}
.lx-title .lx-accent {
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lx-subtitle {
  font-size: 1.1rem;
  color: var(--lx-ink-2);
  max-width: 640px;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   3. LIVE METRICS / STATS BAR
   ============================================================ */
.lx-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.lx-stat {
  background: var(--lx-surface);
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.lx-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lx-cyan), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.lx-stat:hover::before { opacity: 1; }
.lx-stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--lx-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.lx-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lx-green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: lx-live 2s infinite;
}
@keyframes lx-live {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.lx-stat-value {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--lx-cyan-2);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.lx-stat-sub {
  font-size: 13px;
  color: var(--lx-ink-3);
  margin-top: 6px;
}

/* ============================================================
   4. ROI CALCULATOR
   ============================================================ */
.lx-roi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  background: var(--lx-surface);
  border: 1px solid var(--lx-border);
  border-radius: 20px;
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .lx-roi { grid-template-columns: 1fr; padding: 1.5rem; }
}
.lx-roi h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--lx-ink);
}
.lx-roi-field {
  margin-bottom: 1.5rem;
}
.lx-roi-field label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--lx-ink-2);
  margin-bottom: 8px;
}
.lx-roi-field label strong {
  color: var(--lx-cyan-2);
  font-weight: 600;
}
.lx-roi-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  outline: none;
}
.lx-roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(77,180,220,0.4);
  border: 2px solid var(--lx-bg);
}
.lx-roi-field input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  cursor: pointer;
  border: 2px solid var(--lx-bg);
}
.lx-roi-result {
  background: linear-gradient(135deg, rgba(77,180,220,0.1), rgba(42,141,176,0.05));
  border: 1px solid var(--lx-cyan);
  border-radius: var(--lx-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lx-roi-big {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--lx-cyan-2);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.lx-roi-label {
  font-size: 13px;
  color: var(--lx-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.lx-roi-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--lx-border-2);
}
.lx-roi-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--lx-ink-2);
}
.lx-roi-row span:last-child { color: var(--lx-ink); font-weight: 500; }
.lx-roi-cta {
  margin-top: auto;
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  color: #000510;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .15s;
}
.lx-roi-cta:hover { transform: translateY(-2px); }

/* ============================================================
   5. DEMO PLAYGROUND
   ============================================================ */
.lx-demos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.lx-demo-card {
  background: var(--lx-surface);
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.lx-demo-card:hover {
  border-color: var(--lx-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.lx-demo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(77,180,220,0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.lx-demo-card:hover::before { opacity: 1; }
.lx-demo-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(77,180,220,0.2), rgba(42,141,176,0.1));
  border: 1px solid rgba(77,180,220,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lx-cyan-2);
  margin-bottom: 1rem;
}
.lx-demo-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--lx-green);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.lx-demo-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lx-ink);
  margin-bottom: 6px;
}
.lx-demo-card p {
  font-size: 14px;
  color: var(--lx-ink-2);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.lx-demo-input {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--lx-border);
  color: var(--lx-ink);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  margin-bottom: 8px;
  resize: vertical;
  min-height: 40px;
}
.lx-demo-input:focus { border-color: var(--lx-cyan); }
.lx-demo-btn {
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  color: #000510;
  border: none;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s;
}
.lx-demo-btn:hover { transform: translateY(-1px); }
.lx-demo-output {
  margin-top: 12px;
  padding: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px dashed var(--lx-border-2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--lx-ink-2);
  min-height: 0;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}
.lx-demo-output.show { display: block; animation: lx-msg-in .3s ease; }
.lx-demo-output ul { padding-left: 1.1rem; margin: 6px 0; }
.lx-demo-output li { margin-bottom: 4px; }
.lx-demo-output strong { color: var(--lx-cyan-2); }

/* ============================================================
   6. AI OFFER MODAL
   ============================================================ */
.lx-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lx-fade-in .25s ease;
}
.lx-modal-backdrop.open { display: flex; }
@keyframes lx-fade-in { from { opacity: 0; } to { opacity: 1; } }

.lx-modal {
  background: var(--lx-surface-2);
  border: 1px solid var(--lx-border-2);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lx-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--lx-ink-2);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.lx-modal-close:hover { background: var(--lx-border); color: var(--lx-ink); }
.lx-modal h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--lx-ink);
}
.lx-modal > p.lx-modal-sub {
  color: var(--lx-ink-2);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.lx-modal-step {
  display: none;
}
.lx-modal-step.active { display: block; animation: lx-msg-in .25s ease; }
.lx-modal-label {
  display: block;
  font-size: 13px;
  color: var(--lx-ink-2);
  margin-bottom: 8px;
  font-weight: 500;
}
.lx-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 1.2rem;
}
.lx-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--lx-border);
  color: var(--lx-ink);
  padding: 14px 12px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  user-select: none;
}
.lx-chip:hover { border-color: var(--lx-cyan); }
.lx-chip.selected {
  background: rgba(77,180,220,0.12);
  border-color: var(--lx-cyan);
  color: var(--lx-cyan-2);
}
.lx-modal textarea,
.lx-modal input[type="text"],
.lx-modal input[type="email"] {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--lx-border);
  color: var(--lx-ink);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  margin-bottom: 1rem;
}
.lx-modal textarea { min-height: 100px; resize: vertical; }
.lx-modal textarea:focus,
.lx-modal input:focus { border-color: var(--lx-cyan); }

.lx-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.lx-btn-primary {
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  color: #000510;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  transition: transform .15s;
}
.lx-btn-primary:hover { transform: translateY(-1px); }
.lx-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.lx-btn-ghost {
  background: transparent;
  color: var(--lx-ink-2);
  border: 1px solid var(--lx-border-2);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.lx-btn-ghost:hover { color: var(--lx-ink); border-color: var(--lx-ink-3); }

.lx-offer-result {
  background: linear-gradient(135deg, rgba(77,180,220,0.08), transparent);
  border: 1px solid var(--lx-cyan);
  border-radius: 14px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.lx-offer-price {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--lx-cyan-2);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.lx-offer-meta {
  font-size: 13px;
  color: var(--lx-ink-3);
  margin-bottom: 1rem;
}
.lx-offer-scope {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 14px;
  color: var(--lx-ink-2);
  line-height: 1.7;
}
.lx-offer-scope li strong { color: var(--lx-ink); }

.lx-loader-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 2rem 0;
}
.lx-loader-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--lx-cyan);
  animation: lx-dot 1.2s infinite ease-in-out;
}
.lx-loader-dots span:nth-child(2) { animation-delay: 0.15s; }
.lx-loader-dots span:nth-child(3) { animation-delay: 0.3s; }
.lx-loader-text {
  text-align: center;
  color: var(--lx-ink-2);
  font-size: 14px;
  margin-top: 1rem;
}

/* ============================================================
   7. STICKY CTA BAR (mobile bottom, desktop floating)
   ============================================================ */
.lx-sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  background: var(--lx-surface-2);
  border: 1px solid var(--lx-border-2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 10px 10px 20px;
  border-radius: 50px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform .4s cubic-bezier(.2,.9,.3,1);
  max-width: calc(100vw - 40px);
}
.lx-sticky-cta.show { transform: translateX(-50%) translateY(0); }
.lx-sticky-cta-text {
  font-size: 14px;
  color: var(--lx-ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lx-sticky-cta a {
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  color: #000510;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .lx-sticky-cta { bottom: 14px; padding: 8px 8px 8px 14px; }
  .lx-sticky-cta-text { font-size: 12px; max-width: 130px; }
  .lx-chat-launcher { bottom: 78px; }
  .lx-chat-window { bottom: 148px; }
}

/* ============================================================
   8. TOAST / SOCIAL PROOF NOTIFICATIONS
   ============================================================ */
.lx-toast {
  position: fixed;
  bottom: 90px;
  left: 20px;
  background: var(--lx-surface-2);
  border: 1px solid var(--lx-border-2);
  border-radius: 14px;
  padding: 12px 16px 12px 14px;
  z-index: 9995;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: translateX(-120%);
  transition: transform .4s cubic-bezier(.2,.9,.3,1);
  backdrop-filter: blur(16px);
}
.lx-toast.show { transform: translateX(0); }
.lx-toast-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16,185,129,0.25), rgba(16,185,129,0.05));
  border: 1px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lx-green);
  flex-shrink: 0;
}
.lx-toast-title { font-size: 13px; font-weight: 600; color: var(--lx-ink); }
.lx-toast-meta { font-size: 11px; color: var(--lx-ink-3); margin-top: 2px; }
@media (max-width: 600px) {
  .lx-toast { left: 14px; right: 14px; max-width: none; bottom: 150px; }
}

/* ============================================================
   9. TRUST BADGES ROW
   ============================================================ */
.lx-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
}
.lx-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lx-border);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--lx-ink-2);
  font-weight: 500;
}
.lx-trust-badge svg { color: var(--lx-cyan); width: 14px; height: 14px; }
.lx-trust-badge strong { color: var(--lx-ink); font-weight: 600; }

/* Exit intent modal gift */
.lx-exit-gift { text-align: center; padding: 1rem 0; }
.lx-exit-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: lx-gift 2s infinite ease-in-out;
}
@keyframes lx-gift {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

/* ============================================================
   === FEATURES V2 (geïntegreerd) ===
   ============================================================ */

/* ============================================================
   LYNUXIS FEATURES V2 — volgende batch
   - Uitgebreide AI-demos
   - Service-selector wizard
   - Tech-stack grid
   - Command palette
   - Before/after slider
   - Keyboard shortcuts toast
   ============================================================ */

/* ============================================================
   1. UITGEBREIDE DEMO CARDS — file upload + markdown output
   ============================================================ */
.lx-demo-card.lx-demo-pro {
  background: linear-gradient(145deg, var(--lx-surface), rgba(10,24,44,0.4));
}
.lx-demo-upload {
  border: 2px dashed var(--lx-border-2);
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 10px;
  background: rgba(0,0,0,0.2);
  position: relative;
}
.lx-demo-upload:hover {
  border-color: var(--lx-cyan);
  background: rgba(77,180,220,0.05);
}
.lx-demo-upload.drag {
  border-color: var(--lx-cyan-2);
  background: rgba(77,180,220,0.1);
  transform: scale(1.02);
}
.lx-demo-upload svg {
  color: var(--lx-cyan);
  margin-bottom: 6px;
}
.lx-demo-upload .up-text {
  font-size: 13px;
  color: var(--lx-ink-2);
}
.lx-demo-upload .up-hint {
  font-size: 11px;
  color: var(--lx-ink-3);
  margin-top: 4px;
}
.lx-demo-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.lx-demo-preview {
  margin-top: 8px;
  max-height: 120px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--lx-border);
}
.lx-demo-preview img {
  width: 100%;
  height: auto;
  display: block;
}
.lx-demo-output pre {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 13px;
  color: var(--lx-ink-2);
  line-height: 1.6;
}
.lx-demo-output code {
  background: rgba(0,0,0,0.4);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--lx-cyan-2);
}
.lx-demo-select {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--lx-border);
  color: var(--lx-ink);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  margin-bottom: 8px;
  color-scheme: dark;
}

/* ============================================================
   2. SERVICE-SELECTOR WIZARD (reuses .lx-modal*)
   ============================================================ */
.lx-wizard-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.lx-wizard-step-dot {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: background 0.3s;
}
.lx-wizard-step-dot.done { background: var(--lx-cyan-3); }
.lx-wizard-step-dot.active { background: var(--lx-cyan-2); }

.lx-advice-box {
  background: linear-gradient(135deg, rgba(77,180,220,0.06), rgba(42,141,176,0.02));
  border: 1px solid var(--lx-cyan);
  border-radius: 14px;
  padding: 1.5rem;
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.7;
  color: var(--lx-ink-2);
}
.lx-advice-box h1, .lx-advice-box h2, .lx-advice-box h3 {
  color: var(--lx-ink);
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 600;
}
.lx-advice-box h2 { font-size: 1.1rem; color: var(--lx-cyan-2); }
.lx-advice-box strong { color: var(--lx-ink); }
.lx-advice-box p { margin: 8px 0; }
.lx-advice-box ul, .lx-advice-box ol { padding-left: 1.3rem; margin: 8px 0; }
.lx-advice-box li { margin-bottom: 4px; }

/* ============================================================
   3. TECH-STACK GRID
   ============================================================ */
.lx-stack-wrap {
  margin-top: 3rem;
  position: relative;
}
.lx-stack-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.lx-stack-filter button {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lx-border);
  color: var(--lx-ink-2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.lx-stack-filter button:hover { color: var(--lx-ink); border-color: var(--lx-cyan); }
.lx-stack-filter button.active {
  background: rgba(77,180,220,0.12);
  border-color: var(--lx-cyan);
  color: var(--lx-cyan-2);
}
.lx-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.lx-stack-item {
  background: var(--lx-surface);
  border: 1px solid var(--lx-border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.lx-stack-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, var(--lx-stack-color, var(--lx-cyan-glow)), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.lx-stack-item:hover {
  transform: translateY(-3px);
  border-color: var(--lx-cyan);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.lx-stack-item:hover::before { opacity: 0.15; }
.lx-stack-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lx-stack-color, var(--lx-cyan-2));
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  font-size: 24px;
  font-weight: 700;
}
.lx-stack-icon svg { width: 100%; height: 100%; }
.lx-stack-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--lx-ink);
  position: relative;
  z-index: 1;
}
.lx-stack-tag {
  font-size: 10px;
  color: var(--lx-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.lx-stack-item.dimmed { opacity: 0.25; }
.lx-stack-item {
  opacity: 1;
  transition: opacity .3s, transform .25s;
}

/* ============================================================
   4. COMMAND PALETTE (Cmd+K)
   ============================================================ */
.lx-cmd-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,5,16,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10001;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  padding-left: 20px;
  padding-right: 20px;
  animation: lx-fade-in .18s ease;
}
.lx-cmd-backdrop.open { display: flex; }

.lx-cmd {
  background: var(--lx-surface-2);
  border: 1px solid var(--lx-border-2);
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  animation: lx-cmd-in .2s ease;
}
@keyframes lx-cmd-in {
  from { transform: translateY(-20px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.lx-cmd-input {
  padding: 16px 20px;
  border-bottom: 1px solid var(--lx-border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.lx-cmd-input svg { color: var(--lx-cyan); flex-shrink: 0; }
.lx-cmd-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--lx-ink);
  font-size: 16px;
  font-family: inherit;
}
.lx-cmd-input .kbd {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--lx-border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--lx-ink-3);
  font-family: ui-monospace, monospace;
}
.lx-cmd-results {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.lx-cmd-section {
  font-size: 11px;
  color: var(--lx-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 12px 4px;
  font-weight: 600;
}
.lx-cmd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: var(--lx-ink);
  font-size: 14px;
  transition: background 0.1s;
}
.lx-cmd-item:hover,
.lx-cmd-item.selected {
  background: rgba(77,180,220,0.12);
  color: var(--lx-cyan-2);
}
.lx-cmd-item .icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  color: var(--lx-cyan);
  flex-shrink: 0;
}
.lx-cmd-item .info { flex: 1; }
.lx-cmd-item .title { font-weight: 500; }
.lx-cmd-item .desc {
  font-size: 12px;
  color: var(--lx-ink-3);
  margin-top: 2px;
}
.lx-cmd-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--lx-ink-3);
  font-size: 14px;
}
.lx-cmd-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--lx-border);
  font-size: 11px;
  color: var(--lx-ink-3);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lx-cmd-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   5. BEFORE/AFTER SLIDER
   ============================================================ */
.lx-before-after {
  margin-top: 3rem;
}
.lx-ba-card {
  background: var(--lx-surface);
  border: 1px solid var(--lx-border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.lx-ba-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lx-ink);
  margin-bottom: 4px;
}
.lx-ba-card p {
  font-size: 13px;
  color: var(--lx-ink-3);
  margin-bottom: 1rem;
}
.lx-ba-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  user-select: none;
}
.lx-ba-side {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
}
.lx-ba-side.after {
  clip-path: inset(0 0 0 var(--ba-split, 50%));
}
.lx-ba-side.before { background: linear-gradient(135deg, #2a3242, #1a1f29); }
.lx-ba-side.after { background: linear-gradient(135deg, #041428, #061e3a); }
.lx-ba-label {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.lx-ba-side.after .lx-ba-label { margin-left: auto; }
.lx-ba-mockup {
  width: 100%;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.lx-ba-before .lx-ba-mockup { color: #888; }
.lx-ba-before .lx-ba-mockup h5 { font-size: 1.4rem; margin-bottom: 4px; color: #aaa; font-weight: 400; }
.lx-ba-before .lx-ba-mockup .btn-mock {
  background: #444; color: #888; padding: 6px 14px; border-radius: 4px; font-size: 12px; margin-top: 10px;
}
.lx-ba-after .lx-ba-mockup h5 {
  font-size: 1.6rem; margin-bottom: 6px; font-weight: 600;
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lx-ba-after .lx-ba-mockup p { font-size: 13px; color: #ccc; }
.lx-ba-after .lx-ba-mockup .btn-mock {
  background: linear-gradient(135deg, var(--lx-cyan-2), var(--lx-cyan-3)); color: #000; padding: 8px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-top: 10px;
}
.lx-ba-frame {
  touch-action: pan-y;  /* pagina mag verticaal scrollen, maar horizontaal sleep = voor ons */
}
.lx-ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-split, 50%);
  width: 3px;
  background: var(--lx-cyan-2);
  cursor: ew-resize;
  z-index: 2;
  box-shadow: 0 0 20px var(--lx-cyan-glow);
  touch-action: none;
}
.lx-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lx-cyan-2);
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000510;
  touch-action: none;
}
.lx-ba-metrics {
  display: flex;
  gap: 20px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--lx-border-2);
}
.lx-ba-metric {
  flex: 1;
  text-align: center;
}
.lx-ba-metric .val {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lx-cyan-2);
}
.lx-ba-metric .lbl {
  font-size: 11px;
  color: var(--lx-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ============================================================
   6. KEYBOARD SHORTCUTS TOAST
   ============================================================ */
.lx-kbd-hint {
  position: fixed;
  bottom: 20px;
  right: 94px;
  background: var(--lx-surface-2);
  border: 1px solid var(--lx-border-2);
  backdrop-filter: blur(16px);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 9993;
  font-size: 12px;
  color: var(--lx-ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
}
.lx-kbd-hint.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.lx-kbd-hint kbd {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--lx-border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-family: ui-monospace, monospace;
  color: var(--lx-ink);
}
.lx-kbd-hint-close {
  background: transparent;
  border: none;
  color: var(--lx-ink-3);
  cursor: pointer;
  padding: 0 4px;
  font-size: 16px;
  line-height: 1;
  margin-left: 4px;
}
.lx-kbd-hint-close:hover { color: var(--lx-ink); }
@media (max-width: 600px) { .lx-kbd-hint { display: none; } }

/* ============================================================
   7. HERO ENHANCEMENT — extra CTA button styling
   ============================================================ */
.hero-ctas .btn-ghost[data-lx-offer] {
  background: linear-gradient(135deg, rgba(77,180,220,0.18), rgba(42,141,176,0.05));
  border: 1px solid rgba(77,180,220,0.45);
  color: var(--lx-cyan-2);
}

/* ============================================================
   END OF FILE — v11 center-text update
   ============================================================ */


/* ============================================================
   v35 — DROPDOWN NAV + FOOTER REDESIGN (re-applied after sync issue)
   ============================================================ */
.nav-dropdown {
  position: relative;
  display: inline-flex;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
  transition: transform .2s ease;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: rotate(-135deg) translateY(0);
  opacity: 1;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: rgba(6,18,36,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(127,208,238,0.2);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(77,180,220,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 0.88rem !important;
  color: var(--ink-2) !important;
  white-space: nowrap;
  background: transparent !important;
}
.nav-dropdown-menu a:hover {
  background: rgba(77,180,220,0.12) !important;
  color: var(--ink) !important;
}
.nav-dropdown-menu a strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.nav-dropdown-menu a span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-3);
}

/* Footer 4-kolom redesign */
.footer-contact-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.55rem !important;
  margin-top: 0.2rem !important;
}
.footer-contact-actions a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 14px !important;
  background: rgba(127,208,238,0.05) !important;
  border: 1px solid rgba(127,208,238,0.18) !important;
  border-radius: 100px !important;
  color: var(--ink) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
}
.footer-contact-actions a:hover {
  background: rgba(127,208,238,0.12) !important;
  border-color: var(--cyan-2) !important;
}
.footer-contact-actions a svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  flex-shrink: 0 !important;
  color: var(--cyan-2) !important;
}
.footer-contact-actions a.primary {
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan-3)) !important;
  border-color: transparent !important;
  color: var(--bg) !important;
  font-weight: 600 !important;
}
.footer-contact-actions a.primary svg { color: var(--bg) !important; }
.footer-contact-actions a.primary:hover {
  box-shadow: 0 6px 20px rgba(77,180,220,0.3) !important;
}

.footer-brand .case-logo { font-size: 1.2rem !important; margin-bottom: 0.5rem !important; }
.footer-tagline {
  color: var(--ink-2) !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0.75rem !important;
}
.footer-brand-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.4rem 1rem !important;
  font-size: 0.78rem !important;
  color: var(--ink-3) !important;
}
.footer-brand-meta strong {
  color: var(--ink-2) !important;
  font-size: 0.78rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
}

.case-footer-grid {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr !important;
  gap: 3rem !important;
}
@media (max-width: 920px) {
  .case-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
}
@media (max-width: 540px) {
  .case-footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .case-footer-grid > div { align-items: center !important; text-align: center !important; }
  .footer-contact-actions { align-items: center !important; }
}
.case-footer-grid > div { text-align: left !important; }
.case-footer-grid > div strong {
  text-align: left !important;
  color: var(--cyan-2) !important;
  font-size: 0.74rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  margin-bottom: 0.6rem !important;
  display: block;
}

.case-footer-bottom {
  padding-top: 1.75rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  color: var(--ink-3) !important;
  font-size: 0.82rem !important;
}
.case-footer-bottom-links {
  display: flex !important;
  gap: 1.25rem !important;
  flex-wrap: wrap !important;
}
.case-footer-bottom-links a {
  color: var(--ink-3) !important;
  text-decoration: none !important;
  font-size: 0.82rem !important;
}
.case-footer-bottom-links a:hover { color: var(--cyan-2) !important; }

/* ============================================================
   AI DEMOS — tool cards grid
   ============================================================ */
.lx-demos-section {
  padding: 3rem 0 4rem;
}
.lx-demos-section .case-container {
  max-width: 1100px;
}
.lx-demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left !important;
}
@media (max-width: 700px) {
  .lx-demos-grid { grid-template-columns: 1fr; }
}
.lx-demo-card {
  background: linear-gradient(145deg, rgba(4,20,40,0.9), rgba(2,10,24,0.95));
  border: 1px solid rgba(77,180,220,0.18);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left !important;
}
.lx-demo-card:hover {
  border-color: rgba(77,180,220,0.35);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(77,180,220,0.08);
}
.lx-demo-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.lx-demo-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.lx-demo-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-2);
  background: rgba(77,180,220,0.1);
  border: 1px solid rgba(77,180,220,0.2);
  border-radius: 100px;
  padding: 2px 10px;
  margin-bottom: 0.3rem;
}
.lx-demo-title {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin: 0 !important;
  text-align: left !important;
}
.lx-demo-desc {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  text-align: left !important;
}
.lx-demo-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  text-align: left !important;
}
.lx-demo-textarea,
.lx-demo-input,
.lx-demo-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(77,180,220,0.15);
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.88rem;
  font-family: inherit;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  text-align: left !important;
}
.lx-demo-textarea:focus,
.lx-demo-input:focus,
.lx-demo-select:focus {
  border-color: rgba(77,180,220,0.5);
  background: rgba(77,180,220,0.05);
}
.lx-demo-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237fd0ee' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
  cursor: pointer;
}
.lx-demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.lx-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  color: #000510;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.lx-demo-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(77,180,220,0.4);
}
.lx-demo-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.lx-demo-btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
}
.lx-demo-cta-link {
  font-size: 0.8rem;
  color: var(--ink-3);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.lx-demo-cta-link:hover { color: var(--cyan-2); }
.lx-demo-result {
  background: rgba(77,180,220,0.05);
  border: 1px solid rgba(77,180,220,0.2);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-2);
  text-align: left !important;
}
.lx-demo-result h3,
.lx-demo-result h4 {
  color: var(--cyan-2);
  font-size: 0.92rem;
  margin: 0.75rem 0 0.3rem;
  text-align: left !important;
}
.lx-demo-result h3:first-child,
.lx-demo-result h4:first-child { margin-top: 0; }
.lx-demo-result p { margin: 0.4rem 0; text-align: left !important; }
.lx-demo-result ul { padding-left: 1.2rem; margin: 0.4rem 0; }
.lx-demo-result li { margin-bottom: 0.2rem; text-align: left !important; }
.lx-demo-result code {
  background: rgba(255,255,255,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 0.84em;
}
.lx-demo-result pre {
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 0.75rem;
  overflow-x: auto;
  font-size: 0.8rem;
  font-family: ui-monospace, monospace;
  white-space: pre;
}
.lx-demo-result--error {
  border-color: rgba(255,107,122,0.3);
  background: rgba(255,107,122,0.05);
  color: #ff9aa3;
}
.lx-demo-loading-msg {
  color: var(--ink-3);
  font-size: 0.85rem;
  animation: lxPulse 1.4s ease-in-out infinite;
}
@keyframes lxPulse { 0%,100%{opacity:.6} 50%{opacity:1} }
.lx-demo-spinner {
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000510;
  border-radius: 50%;
  animation: lxSpin 0.7s linear infinite;
  margin-right: 4px;
}
@keyframes lxSpin { to { transform: rotate(360deg); } }

/* Upload area */
.lx-demo-upload { display: flex; flex-direction: column; gap: 0.5rem; }
.lx-demo-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px dashed rgba(77,180,220,0.25);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center !important;
  color: var(--ink-3);
  font-size: 0.85rem;
  line-height: 1.5;
}
.lx-demo-upload-label:hover {
  border-color: rgba(77,180,220,0.5);
  background: rgba(77,180,220,0.04);
  color: var(--ink-2);
}
.lx-demo-upload-icon { font-size: 1.6rem; }
.lx-demo-upload-label small { font-size: 0.78rem; color: var(--ink-3); }

/* Offer result */
.lx-demo-offer { display: flex; flex-direction: column; gap: 0.5rem; }
.lx-demo-offer-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan-2);
  letter-spacing: -0.02em;
}
.lx-demo-offer-duration {
  font-size: 0.84rem;
  color: var(--ink-3);
  margin-top: -0.25rem;
}

/* Wizard */
.lx-demo-wizard { display: flex; flex-direction: column; gap: 0.6rem; }
.lx-demo-wizard-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.lx-demo-wizard-progress > div {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-2), var(--cyan));
  border-radius: 100px;
  transition: width 0.4s ease;
}
.lx-demo-wizard-label {
  font-size: 0.75rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lx-demo-wizard-question {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

/* Chat */
.lx-demo-chat { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.lx-demo-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 280px;
  overflow-y: auto;
  padding: 0.75rem;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  scrollbar-width: thin;
  scrollbar-color: rgba(77,180,220,0.2) transparent;
}
.lx-demo-chat-msg {
  display: flex;
  max-width: 85%;
}
.lx-demo-chat-msg span {
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: left !important;
}
.lx-demo-chat-msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.lx-demo-chat-msg--user span {
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  color: #000a18;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}
.lx-demo-chat-msg--bot span {
  background: rgba(255,255,255,0.06);
  color: var(--ink-2);
  border-bottom-left-radius: 4px;
}
.lx-demo-chat-msg--bot span a { color: var(--cyan-2); }
.lx-demo-chat-input {
  display: flex;
  gap: 0.5rem;
}
.lx-demo-chat-input .lx-demo-input {
  flex: 1;
  padding: 0.55rem 0.85rem;
}
.lx-demo-chat-send {
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  color: #000510;
  font-weight: 700;
  font-size: 0.84rem;
  border: none;
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lx-demo-chat-send:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(77,180,220,0.4);
}
.lx-demo-chat-send:disabled { opacity: 0.5; cursor: not-allowed; }
.lx-typing-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan-2);
  margin: 0 2px;
  animation: lxTyping 1.2s ease-in-out infinite;
}
.lx-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.lx-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes lxTyping { 0%,60%,100%{opacity:.3;transform:scale(1)} 30%{opacity:1;transform:scale(1.3)} }

/* Demo cards — override centering voor alles erin */
.lx-demo-card,
.lx-demo-card *,
.lx-demos-grid,
.lx-demos-grid * {
  text-align: left;
}
.lx-demo-card h3,
.lx-demo-card p { text-align: left !important; }

/* ===== DEMOS v2 ADDITIONS ===== */

/* Screen reader only labels */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Copy result button */
.lx-demo-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-family: inherit;
  background: rgba(77,180,220,0.08);
  border: 1px solid rgba(77,180,220,0.2);
  border-radius: 6px;
  color: var(--ink-3);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.lx-demo-copy-btn:hover {
  background: rgba(77,180,220,0.16);
  border-color: rgba(77,180,220,0.4);
  color: var(--ink-2);
}

/* Chat header (name + clear button) */
.lx-demo-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.35rem;
}
.lx-demo-chat-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-2);
}
.lx-demo-chat-clear {
  font-size: 0.75rem;
  font-family: inherit;
  padding: 0.2rem 0.65rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--ink-3);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lx-demo-chat-clear:hover {
  background: rgba(255,255,255,0.09);
  color: var(--ink-2);
}

/* Advisor restart button */
.lx-demo-btn-restart {
  display: inline-block;
  margin-top: 0.85rem;
  background: transparent !important;
  border: 1px solid rgba(77,180,220,0.3) !important;
  color: var(--cyan-2) !important;
  font-size: 0.84rem;
  padding: 0.45rem 1rem;
}
.lx-demo-btn-restart:hover:not(:disabled) {
  background: rgba(77,180,220,0.1) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Trust strip */
.lx-demo-trust-strip {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lx-demo-trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 0.82rem;
  color: var(--ink-3);
}
.lx-demo-trust-items li {
  text-align: center !important;
  color: var(--ink-3);
}
.lx-demo-trust-items li::before { display: none !important; content: none !important; }

/* Info columns in "Hoe werkt dit?" — override site-wide centering */
.lx-info-col,
.lx-info-col h3,
.lx-info-col p,
.lx-info-col * { text-align: left !important; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
/* Cookie banner als kleine toast-card rechtsonder — niet meer over hero CTA's */
#lx-cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  max-width: 360px;
  z-index: 9998;
  background: linear-gradient(160deg, rgba(12,26,48,0.96), rgba(6,18,36,0.96));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(127,208,238,0.22);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-2, #b8c4d0);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
@media (max-width: 540px) {
  #lx-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
#lx-cookie-banner p { margin: 0; }
#lx-cookie-banner a { color: var(--cyan-2, #7fd0ee); text-decoration: underline; }
.lx-cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.lx-cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--ink-2, #b8c4d0);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.lx-cookie-btn:hover { border-color: var(--cyan, #4db4dc); color: var(--ink, #f0f4f8); }
.lx-cookie-btn-primary {
  background: rgba(77,180,220,0.12);
  border-color: rgba(77,180,220,0.45);
  color: var(--cyan-2, #7fd0ee);
}
.lx-cookie-btn-primary:hover { background: rgba(77,180,220,0.22); }

/* ============================================================
   FLOATING CHAT WIDGET
   ============================================================ */
#lx-chat-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7fd0ee, #2a8db0);
  border: none;
  color: #000510;
  cursor: pointer;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(77,180,220,0.4);
  transition: transform .2s, box-shadow .2s;
}
#lx-chat-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(77,180,220,0.55); }

#lx-chat-box {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 5.25rem;
  right: 1.75rem;
  width: 320px;
  max-height: 420px;
  background: rgba(4,20,40,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(77,180,220,0.25);
  border-radius: 16px;
  z-index: 9991;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}
.lx-fchat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(77,180,220,0.15);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink, #f0f4f8);
}
#lx-fchat-close {
  background: none;
  border: none;
  color: var(--ink-3, #6a7a8c);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color .15s;
}
#lx-fchat-close:hover { color: var(--ink, #f0f4f8); }
.lx-fchat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scroll-behavior: smooth;
}
.lx-fchat-msg {
  max-width: 86%;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.lx-fchat-msg-user {
  align-self: flex-end;
  background: rgba(77,180,220,0.18);
  border: 1px solid rgba(77,180,220,0.3);
  color: var(--ink, #f0f4f8);
}
.lx-fchat-msg-assistant {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-2, #b8c4d0);
}
.lx-fchat-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(77,180,220,0.15);
}
.lx-fchat-input input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--ink, #f0f4f8);
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  outline: none;
}
.lx-fchat-input input:focus { border-color: rgba(77,180,220,0.5); }
#lx-fchat-send {
  background: rgba(77,180,220,0.15);
  border: 1px solid rgba(77,180,220,0.35);
  border-radius: 8px;
  color: var(--cyan-2, #7fd0ee);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  transition: background .15s;
}
#lx-fchat-send:hover { background: rgba(77,180,220,0.3); }
@media (max-width: 480px) {
  #lx-chat-box { right: 0.75rem; width: calc(100vw - 1.5rem); }
  #lx-chat-fab { right: 0.75rem; }
}

/* ============================================================
   TESTIMONIALS (homepage)
   ============================================================ */
.lx-testimonials { padding: 4rem 0; }
.lx-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.lx-testi-card {
  background: var(--surface, rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s;
}
.lx-testi-card:hover { border-color: rgba(77,180,220,0.3); }
.lx-testi-stars { color: var(--cyan-2, #7fd0ee); font-size: 0.85rem; letter-spacing: 2px; }
.lx-testi-quote {
  color: var(--ink-2, #b8c4d0);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.lx-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lx-testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-2, #7fd0ee), var(--cyan-3, #2a8db0));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg, #000510);
  flex-shrink: 0;
}
.lx-testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink, #f0f4f8);
}
.lx-testi-meta {
  font-size: 0.78rem;
  color: var(--ink-3, #6a7a8c);
}

/* ============================================================
   BEKIJK OOK (case pages)
   ============================================================ */
.lx-also-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lx-also-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.lx-also-card {
  display: block;
  background: var(--surface, rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: border-color .2s, transform .2s;
  color: inherit;
  text-decoration: none;
}
.lx-also-card:hover { border-color: rgba(77,180,220,0.3); transform: translateY(-3px); }
.lx-also-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-2, #7fd0ee);
  margin-bottom: 0.35rem;
}
.lx-also-card-title {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink, #f0f4f8);
  margin-bottom: 0.35rem;
}
.lx-also-card-meta {
  font-size: 0.82rem;
  color: var(--ink-3, #6a7a8c);
}

/* ============================================================
   ROI CALCULATOR (diensten page)
   ============================================================ */
.lx-roi-section { padding: 4rem 0; }
.lx-roi-box {
  background: rgba(77,180,220,0.04);
  border: 1px solid rgba(77,180,220,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 640px;
  margin: 2rem auto 0;
}
.lx-roi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 560px) { .lx-roi-row { grid-template-columns: 1fr; } }
.lx-roi-field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3, #6a7a8c);
  margin-bottom: 0.4rem;
}
.lx-roi-field input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--ink, #f0f4f8);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color .15s;
}
.lx-roi-field input:focus { border-color: rgba(77,180,220,0.5); }
.lx-roi-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(77,180,220,0.08);
  border: 1px solid rgba(77,180,220,0.25);
  border-radius: 12px;
  display: none;
}
.lx-roi-result.visible { display: block; }
.lx-roi-result-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan-2, #7fd0ee);
}
.lx-roi-result-label {
  font-size: 0.88rem;
  color: var(--ink-2, #b8c4d0);
  margin-top: 0.25rem;
}
.lx-roi-cta { margin-top: 1.25rem; font-size: 0.9rem; color: var(--ink-2, #b8c4d0); }

/* ============================================================
   ELITE FEATURE 1: Cursor spotlight
   ============================================================ */
#lx-cursor-spotlight {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,208,238,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* ============================================================
   ELITE FEATURE 4: Availability badge pulse dot
   ============================================================ */
.lx-avail-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 7px;
  vertical-align: middle;
  flex-shrink: 0;
  animation: lx-pulse 2s ease-in-out infinite;
  position: relative;
  top: -1px;
}
@keyframes lx-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* ============================================================
   ELITE FEATURE 6: Sticky conversion bar
   ============================================================ */
#lx-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(0,5,16,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(77,180,220,0.25);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ink-2, #b8c4d0);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
#lx-sticky-bar.lx-sticky-visible {
  transform: translateY(0);
}
.lx-sticky-bar-cta {
  background: linear-gradient(135deg, #7fd0ee, #2a8db0);
  color: #000510 !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.lx-sticky-bar-cta:hover { opacity: 0.88; }
#lx-sticky-close {
  background: none;
  border: none;
  color: var(--ink-3, #6a7a8c);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  margin-left: 0.25rem;
  line-height: 1;
  transition: color 0.15s;
}
#lx-sticky-close:hover { color: var(--ink, #f0f4f8); }
@media (max-width: 480px) {
  #lx-sticky-bar { font-size: 0.82rem; padding: 0.75rem 1rem; gap: 0.6rem; }
  .lx-sticky-bar-cta { font-size: 0.8rem; padding: 0.45rem 0.85rem; }
}

/* ============================================================
   ELITE FEATURE 8: Exit intent overlay
   ============================================================ */
#lx-exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,5,16,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: lx-fadeIn 0.3s ease;
}
@keyframes lx-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lx-exit-box {
  background: var(--bg, #000510);
  border: 1px solid rgba(77,180,220,0.3);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: lx-slideUp 0.35s cubic-bezier(.16,1,.3,1);
  text-align: center;
}
@keyframes lx-slideUp {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.lx-exit-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink, #f0f4f8);
  margin: 0.75rem 0 0.6rem;
}
.lx-exit-box p {
  font-size: 0.92rem;
  color: var(--ink-2, #b8c4d0);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
#lx-exit-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--ink-3, #6a7a8c);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  line-height: 1;
  transition: color 0.15s;
}
#lx-exit-close:hover { color: var(--ink, #f0f4f8); }
.lx-exit-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
#lx-exit-email {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--ink, #f0f4f8);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s;
}
#lx-exit-email:focus { border-color: rgba(77,180,220,0.5); }
.lx-exit-submit {
  width: 100%;
  background: linear-gradient(135deg, #7fd0ee, #2a8db0);
  color: #000510;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.lx-exit-submit:hover { opacity: 0.88; }
.lx-exit-skip {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--ink-3, #6a7a8c);
}
.lx-exit-skip a {
  color: var(--ink-3, #6a7a8c);
  text-decoration: underline;
  text-decoration-color: rgba(106,122,140,0.4);
}
.lx-exit-skip a:hover { color: var(--ink-2, #b8c4d0); }

/* ============================================================
   3D DESIGN LAYER — depth, glass, extrusion, parallax
   ============================================================ */

/* ── Accent spans — geen text-shadow (zuivere cyan gradient) ── */
.accent, .case-accent {
  text-shadow: none;
}

/* ── Hero frame — floating 3D glass panel ── */
.hero-frame {
  position: relative;
  background: rgba(0,5,20,0.52) !important;
  backdrop-filter: blur(20px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
  border: 1px solid rgba(127,208,238,0.16) !important;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.45),
    0 4px 0 rgba(0,0,0,0.25),
    0 8px 0 rgba(0,0,0,0.18),
    0 24px 60px rgba(0,0,0,0.55),
    0 80px 120px rgba(0,5,16,0.5),
    inset 0 1px 0 rgba(127,208,238,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.25) !important;
  transform: perspective(1400px) rotateX(1deg);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
}
/* Radial glow behind hero */
.hero-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(77,180,220,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-frame > * { position: relative; z-index: 1; }

/* ── Service cards — deep 3D glass tiles ── */
.service-card {
  background: rgba(255,255,255,0.025) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(127,208,238,0.1) !important;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3),
    0 2px 0 rgba(0,0,0,0.2),
    0 6px 0 rgba(0,0,0,0.12),
    0 12px 24px rgba(0,0,0,0.32),
    0 32px 56px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.055) !important;
  transform-style: preserve-3d;
}
.service-card:hover {
  border-color: rgba(127,208,238,0.25) !important;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3),
    0 2px 0 rgba(0,0,0,0.2),
    0 8px 0 rgba(0,0,0,0.12),
    0 16px 32px rgba(0,0,0,0.38),
    0 48px 80px rgba(0,0,0,0.44),
    0 0 40px rgba(127,208,238,0.06),
    inset 0 1px 0 rgba(127,208,238,0.1) !important;
}

/* ── Portfolio / discover / blog / testi cards ── */
.portfolio-item, .discover-card, .lx-testi-card, .blog-card, .founder-card {
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3),
    0 2px 0 rgba(0,0,0,0.18),
    0 8px 20px rgba(0,0,0,0.32),
    0 28px 52px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.045) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}
.portfolio-item:hover, .discover-card:hover, .blog-card:hover {
  box-shadow:
    0 0 0 1px rgba(127,208,238,0.2),
    0 4px 0 rgba(0,0,0,0.18),
    0 16px 32px rgba(0,0,0,0.4),
    0 40px 72px rgba(0,0,0,0.45),
    0 0 48px rgba(127,208,238,0.05),
    inset 0 1px 0 rgba(127,208,238,0.08) !important;
}

/* ── Nav — deep frosted glass with 3D edge ── */
.case-nav {
  backdrop-filter: blur(22px) saturate(1.7) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.7) !important;
  box-shadow:
    0 1px 0 rgba(127,208,238,0.1),
    0 4px 28px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.03) !important;
}

/* ── Trust row badges ── */
.trust-item {
  background: rgba(127,208,238,0.04) !important;
  border: 1px solid rgba(127,208,238,0.13) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
  border-radius: 10px !important;
  padding: 0.3rem 0.8rem !important;
}

/* ── Section eyebrows and h2 headings ── */
h2 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 0 80px rgba(0,0,0,0.3) !important;
}
.eyebrow, .case-eyebrow {
  text-shadow: 0 0 20px rgba(127,208,238,0.3) !important;
}

/* ── Process cards ── */
.process-card, .process-step {
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.25),
    0 4px 16px rgba(0,0,0,0.28),
    0 20px 40px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

/* ── Callout / info boxes ── */
.article-callout, .lx-roi-box {
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(127,208,238,0.08) !important;
}

/* ── Floating particle will-change hints ── */
.hero-badge, .hero-ctas, .trust-row {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ============================================================
   ECHT 3D — Deep world overhaul
   ============================================================ */

/* ── 1. Hero frame: holographic terminal floating in 3D space ── */
.hero-frame {
  transform-style: preserve-3d !important;
}
/* Top edge light-catch — simulates the frame catching overhead light */
.hero-frame .top-line {
  background: linear-gradient(90deg, transparent, rgba(127,208,238,0.6), rgba(200,240,255,0.9), rgba(127,208,238,0.6), transparent) !important;
  height: 1.5px !important;
  box-shadow: 0 0 12px rgba(127,208,238,0.5), 0 0 28px rgba(127,208,238,0.2) !important;
}
/* Corner accent: bright white hot-spot → like light hitting a corner edge */
.hero-frame .corner-tr,
.hero-frame .corner-bl {
  box-shadow: 0 0 16px rgba(200,240,255,0.7), 0 0 40px rgba(127,208,238,0.3) !important;
  border-color: rgba(200,240,255,0.8) !important;
}
/* Scanline texture overlay — holographic CRT feel */
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(127,208,238,0.012) 3px,
    rgba(127,208,238,0.012) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── 2. H1 accent — geen text-shadow (zuivere cyan gradient zoals de button) ── */
h1 .accent, h1 .case-accent,
.case-hero h1 .case-accent,
.case-hero h1 .accent {
  text-shadow: none !important;
}

/* ── 3. ALL cards — 3D floating slab with step-shadow depth ── */
.service-card,
.portfolio-item,
.discover-card,
.blog-card,
.lx-testi-card,
.founder-card,
.lx-also-card,
.process-card {
  transform-style: preserve-3d;
  /* Step-shadow = visible "thickness" on the bottom-right edges */
  box-shadow:
    1px 1px 0 rgba(0,25,60,0.9),
    2px 2px 0 rgba(0,20,50,0.85),
    3px 3px 0 rgba(0,16,42,0.8),
    4px 4px 0 rgba(0,12,35,0.7),
    5px 5px 0 rgba(0,10,28,0.55),
    6px 6px 0 rgba(0,8,22,0.4),
    8px 8px 0 rgba(0,6,18,0.25),
    10px 10px 20px rgba(0,0,0,0.45),
    0 24px 52px rgba(0,0,0,0.4) !important;
  border-top: 1px solid rgba(127,208,238,0.18) !important;
  border-left: 1px solid rgba(127,208,238,0.12) !important;
}

/* ── 4. Service number badges — 3D engraved look ── */
.service-num {
  text-shadow:
    1px 1px 0 rgba(127,208,238,0.3),
    -1px -1px 0 rgba(0,0,0,0.5) !important;
}

/* ── 5. Section headings — deeper depth ── */
h2 {
  text-shadow:
    0 2px 0 rgba(0,0,0,0.4),
    0 4px 0 rgba(0,0,0,0.25),
    0 8px 20px rgba(0,0,0,0.5) !important;
}

/* ── 6. Portfolio items — extra z-depth on hover ── */
.portfolio-item:hover {
  transform: translateY(-6px) translateZ(20px) !important;
  box-shadow:
    2px 2px 0 rgba(0,25,60,0.9),
    4px 4px 0 rgba(0,18,45,0.8),
    6px 6px 0 rgba(0,12,35,0.65),
    8px 8px 0 rgba(0,8,25,0.45),
    14px 14px 28px rgba(0,0,0,0.5),
    0 32px 60px rgba(0,0,0,0.45),
    0 0 60px rgba(127,208,238,0.07) !important;
}

/* ── 7. Trust row — 3D pill badges ── */
.trust-item strong {
  text-shadow: 0 1px 4px rgba(127,208,238,0.4) !important;
}

/* ── 8. Eyebrow labels — neon glow depth ── */
.eyebrow, .case-eyebrow {
  text-shadow:
    0 0 10px rgba(127,208,238,0.5),
    0 0 24px rgba(127,208,238,0.25) !important;
}

/* ── 9. Nav — elevated glass with 3D top edge ── */
.case-nav {
  border-bottom: 1px solid rgba(127,208,238,0.1) !important;
  box-shadow:
    0 1px 0 rgba(200,240,255,0.12),
    0 2px 0 rgba(0,0,0,0.3),
    0 8px 32px rgba(0,0,0,0.5) !important;
}

/* ── 10. 3D section divider effect ── */
.section::before, .case-section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(127,208,238,0.15) 30%, rgba(127,208,238,0.08) 70%, transparent 100%);
  transform: perspective(400px) rotateX(60deg) scaleX(0.8);
  transform-origin: 50% 0;
  margin-bottom: -1px;
}


/* ══════════════════════════════════════════════════════════════
   3D FEATURE SET v42 — ALL NEW VISUAL LAYERS
   Features 8-35 from the agreed 3D overhaul list
══════════════════════════════════════════════════════════════ */

/* ── F10+30: Bloom glow pulse on accent/eyebrow elements ── */
@keyframes lxBloom {
  0%,100% { filter: drop-shadow(0 0 6px rgba(127,208,238,.45)); }
  50%      { filter: drop-shadow(0 0 18px rgba(127,208,238,.9))
                     drop-shadow(0 0 40px rgba(127,208,238,.32)); }
}
.lx-bloom { animation: lxBloom 2.8s ease-in-out infinite; }

/* ── F8+11: Holographic glitch on h1 accent text ── */
@keyframes lxGlitch {
  0%,87%,100% { clip-path: none; transform: none; }
  88%  { clip-path: inset(20% 0 62% 0); transform: translate(-6px,0) skewX(-2deg); color: rgba(127,208,238,.9); }
  89%  { clip-path: inset(58% 0 20% 0); transform: translate(6px,0)  skewX(2deg); }
  90%  { clip-path: inset(40% 0 42% 0); transform: translate(-4px,0); }
  91%  { clip-path: none;               transform: translate(4px,0); }
  92%  { clip-path: inset(10% 0 75% 0); transform: translate(-2px,0); color: rgba(255,100,200,.7); }
  93%  { clip-path: none; transform: none; color: inherit; }
}
.lx-holo-glitch {
  position: relative;
  animation: lxGlitch 9s ease-in-out infinite;
}

/* ── F14: Holographic foil shimmer overlay ── */
.lx-foil {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; opacity: 0; z-index: 4;
  transition: opacity .18s ease;
  mix-blend-mode: screen;
}

/* ── F15: 3D pop-out photos on hover ── */
.portfolio-item img,
.blog-card img,
.case-banner img {
  transition: transform .45s cubic-bezier(.16,1,.3,1), filter .45s ease !important;
}
.portfolio-item:hover img,
.blog-card:hover img {
  transform: perspective(420px) translateZ(28px) scale(1.05) !important;
  filter: brightness(1.09) saturate(1.12) !important;
}

/* ── F18: Section door — fade in (opacity only, safe with camera3D) ── */
.lx-door-closed {
  opacity: 0;
  transition: opacity .95s ease .06s;
}
.lx-door-open {
  opacity: 1 !important;
}

/* ── F21: 3D click ripple burst ── */
@keyframes lxRipple {
  from { width: 0;     height: 0;     opacity: .65; transform: translate(-50%,-50%); }
  to   { width: 320px; height: 320px; opacity: 0;   transform: translate(-50%,-50%); }
}
.lx-ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(127,208,238,.48) 0%, rgba(42,141,176,.12) 55%, transparent 100%);
  animation: lxRipple .7s cubic-bezier(.2,.8,.4,1) forwards;
}

/* ── F22: 3D press depth on buttons ── */
.lx-press3d:active,
.btn-primary:active,
.case-btn-primary:active,
.contact-btn:active {
  transform: translateY(3px) scale(.968) perspective(180px) rotateX(4deg) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,.45), 0 0 0 1px rgba(127,208,238,.2) !important;
  transition: transform .05s ease, box-shadow .05s ease !important;
}

/* ── F23: Magnetic 3D cursor halo ── */
#lx-cursor-halo {
  position: fixed; top: 0; left: 0; width: 48px; height: 48px;
  border-radius: 50%; pointer-events: none; z-index: 9996;
  border: 1.5px solid rgba(127,208,238,.3);
  transition: width .2s cubic-bezier(.16,1,.3,1), height .2s, border-color .2s, background .2s;
}
#lx-cursor-halo.lx-halo-active {
  width: 76px; height: 76px;
  border-color: rgba(127,208,238,.7);
  background: rgba(127,208,238,.04);
  backdrop-filter: blur(1px);
}

/* ── F25: 3D perspective tooltip ── */
#lx-3d-tip {
  position: fixed; pointer-events: none; z-index: 9997;
  padding: .38rem .88rem;
  background: rgba(2,12,35,.93);
  border: 1px solid rgba(127,208,238,.28);
  border-radius: 8px; font-size: .82rem; color: #7fd0ee; white-space: nowrap;
  transform: perspective(260px) rotateX(-7deg);
  transform-origin: 50% 115%;
  opacity: 0; transition: opacity .14s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,.44), 0 0 12px rgba(127,208,238,.07);
}
#lx-3d-tip.lx-tip-vis { opacity: 1; }

/* ── F27: Chromatic aberration on fast scroll ── */
.lx-chrom-active h1,
.lx-chrom-active h2 {
  text-shadow:
    -3px 0 rgba(255,50,50,.42),
     3px 0 rgba(50,180,255,.42) !important;
  filter: blur(.3px) !important;
  transition: none !important;
}

/* ── F28: Cinematic vignette overlay ── */
#lx-vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 9989;
  background: radial-gradient(ellipse at 50% 50%,
    transparent 52%,
    rgba(0,2,10,.28) 72%,
    rgba(0,2,10,.68) 100%);
}

/* ── F31: 3D nav link hover ── */
.lx-nav3d {
  transition: transform .22s cubic-bezier(.16,1,.3,1), text-shadow .22s !important;
  display: inline-block;
}
.lx-nav3d:hover {
  transform: perspective(180px) rotateX(-8deg) translateY(-2px) translateZ(4px) !important;
  text-shadow: 0 4px 10px rgba(127,208,238,.38) !important;
}

/* ── F32: 3D pricing card flip reveal ── */
.lx-pricing-flip {
  position: relative;
  overflow: hidden;
}
.lx-pf-back {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(3,24,50,.97) 0%, rgba(6,30,68,.97) 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 50% 100%;
  opacity: 0;
  transition: transform .48s cubic-bezier(.16,1,.3,1), opacity .42s ease;
  border: 1px solid rgba(127,208,238,.22);
  z-index: 5;
}
.lx-pricing-flip:hover .lx-pf-back {
  transform: perspective(600px) rotateX(0deg);
  opacity: 1;
}
.lx-pf-bi { padding: 1.8rem 2rem; }

/* ── F33: 3D timeline — alternating perspective tilt on steps ── */
.lx-timeline3d { perspective: 900px; transform-style: preserve-3d; }
.lx-timeline3d > * {
  transition: transform .38s cubic-bezier(.16,1,.3,1) !important;
}
.lx-timeline3d > *:nth-child(odd) {
  transform: perspective(700px) rotateY(-3.5deg) !important;
}
.lx-timeline3d > *:nth-child(even) {
  transform: perspective(700px) rotateY(3.5deg) !important;
}
.lx-timeline3d > *:hover {
  transform: perspective(700px) rotateY(0deg) translateZ(22px) !important;
}

/* ── F34: CSS 3D cube testimonial carousel ── */
.lx-cube-orig-hidden { display: none !important; }

.lx-cube-wrap {
  text-align: center;
  margin: 2.5rem auto;
  max-width: 620px;
  width: 100%;
}
.lx-cube-scene {
  width: 100%; height: 320px;
  perspective: 1100px;
  perspective-origin: 50% 48%;
  position: relative;
}
.lx-cube {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .88s cubic-bezier(.16,1,.3,1);
}
.lx-cube-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 18px; overflow: hidden;
  background: rgba(2,12,35,.92);
  border: 1px solid rgba(127,208,238,.13);
  padding: 1.6rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.55);
}
.lx-cube-f { transform: rotateY(0deg)   translateZ(310px); }
.lx-cube-b { transform: rotateY(180deg) translateZ(310px); }
.lx-cube-r { transform: rotateY(90deg)  translateZ(310px); }
.lx-cube-l { transform: rotateY(-90deg) translateZ(310px); }

.lx-cube-nav {
  margin-top: 1.4rem;
  display: flex; gap: .65rem;
  justify-content: center; align-items: center;
}
.lx-cdn {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(127,208,238,.22); border: none; cursor: pointer;
  padding: 0; transition: background .22s, transform .22s;
}
.lx-cdn.on {
  background: rgba(127,208,238,.88);
  transform: scale(1.35);
}

/* ── F35: Perspective floor shimmer strip under hero ── */
#lx-pfloor {
  height: 72px; margin-top: -16px; pointer-events: none;
  position: relative; overflow: hidden; z-index: 0;
  background: linear-gradient(180deg, rgba(0,5,20,0) 0%, rgba(0,5,20,.55) 100%);
}
#lx-pfloor::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(127,208,238,.055) 0px, transparent 1px,
      transparent 59px, rgba(127,208,238,.055) 60px),
    repeating-linear-gradient(0deg,
      rgba(127,208,238,.038) 0px, transparent 1px,
      transparent 19px, rgba(127,208,238,.038) 20px);
  transform: perspective(160px) rotateX(45deg);
  transform-origin: 50% 0;
}

/* ── F17: Hero — will-change hint for flythrough ── */
.hero-frame, .hero-section {
  will-change: transform;
}

/* ── Mobile — disable heavy 3D on small screens ── */
@media (max-width: 700px) {
  .lx-cube-orig-hidden { display: flex !important; flex-wrap: wrap; gap: 1rem; }
  .lx-cube-wrap        { display: none !important; }
  .lx-timeline3d > *   { transform: none !important; }
  #lx-cursor-halo      { display: none; }
  #lx-3d-tip           { display: none; }
  .lx-pricing-flip:hover .lx-pf-back { transform: none; opacity: 0; }
}

/* ── Safety guard: logo link must stay flex (case-logo-mark is a span that needs flex-item sizing) ── */
.case-logo,
nav .case-logo,
.case-nav .case-logo,
footer .case-logo {
  display: flex !important;
  align-items: center !important;
}

/* ── Accent glow: uses text-shadow (safe with background-clip:text) instead of filter ── */
@keyframes lxAccentGlow {
  0%,100% { text-shadow: 0 0 14px rgba(127,208,238,.35), 0 0 30px rgba(127,208,238,.15); }
  50%      { text-shadow: 0 0 22px rgba(127,208,238,.65), 0 0 50px rgba(127,208,238,.28); }
}
.lx-accent-glow {
  animation: lxAccentGlow 3s ease-in-out infinite;
}

/* ============================================================
   UNIFIED CYAN — alle blauwe tekst = één vlakke kleur (logo cyan)
   ============================================================ */
.accent,
.case-accent,
h1 .accent, h1 .case-accent,
h2 .accent, h2 .case-accent,
h3 .accent, h3 .case-accent,
.case-hero h1 .case-accent,
.case-hero h1 .accent,
.eyebrow,
.case-eyebrow {
  background: none !important;
  background-image: none !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
  color: #7fd0ee !important;
  -webkit-text-fill-color: #7fd0ee !important;
  filter: none !important;
  text-shadow: none !important;
  animation: none !important;
}
