
    /* ═══════════════════════════════════════════════════════
     THEMA-TOKENS — light (default) + dark (html.dark)
     Zelfde kleurenpalet als de bestaande landing page
     ═══════════════════════════════════════════════════════ */
    :root {
      --bg-app: #ffffff;
      --bg-alt: #f8fafc;
      --bg-surface: #ffffff;
      --bg-surface-2: #f1f5f9;
      --text-primary: #0f172a;
      --text-secondary: #334155;
      --text-body: #475569;
      --text-muted: #64748b;
      --text-faint: #94a3b8;
      --accent: #4f46e5;
      --accent-hover: #4338ca;
      --accent-soft: rgba(79, 70, 229, 0.10);
      --vecto-purple: #7048b1;
      --border: #e2e8f0;
      --border-strong: #cbd5e1;
      --success: #10b981;
      --track-bg: rgba(15, 23, 42, 0.08);
      --hero-from: #f0eeff;
      --hero-to: #ffffff;
      --footer-bg: var(--vecto-purple);
      --footer-head: #ffffff;
      --footer-text: rgba(255, 255, 255, 0.85);
      --footer-border: rgba(255, 255, 255, 0.2);
      --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
      --shadow-card: 0 12px 32px rgba(79, 70, 229, 0.10);
      --shadow-slider: 0 24px 56px rgba(79, 70, 229, 0.14);
      --gradient-brand: linear-gradient(135deg, var(--accent) 0%, var(--vecto-purple) 100%);
    }



    /* ─── RESET & BASE ─── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: transparent;
      color: var(--text-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    /* ─── PARALLAX BACKGROUND ─── */
    #parallax-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background: radial-gradient(ellipse at 65% 10%, #e8e3f8 0%, #edeafc 20%, #f3f0ff 45%, #f9f7ff 70%, #fdfcff 100%);
    }

    .plx-layer {
      position: absolute;
      width: 62%;
      will-change: transform;
    }

    /* no-s shapes (1, 2, 3) float left */
    .plx-layer:nth-child(odd) {
      left: -2%;
    }

    /* s shapes (4s, 5s) float right */
    .plx-layer:nth-child(even) {
      right: -2%;
    }

    .plx-layer img {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0.72;
    }

    /* All direct body children (except parallax bg and header) sit above the parallax bg */
    body > *:not(#parallax-bg):not(#site-header) {
      position: relative;
      z-index: 1;
    }

    /* Bootstrap link color override — bewaar huisstijl */
    a {
      color: inherit;
    }

    a:hover {
      color: inherit;
    }

    /* ─── TYPOGRAFIE HELPERS ─── */
    .font-outfit {
      font-family: 'Outfit', sans-serif;
    }

    .accent-gradient {
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-eyebrow {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(27px, 3.6vw, 40px);
      font-weight: 700;
      line-height: 1.18;
      color: var(--text-primary);
    }


    /* ════════════════════════════════════════════════════════
     HEADER
     ════════════════════════════════════════════════════════ */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
      transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    #site-header.scrolled {
      background: rgba(255, 255, 255, 0.45);
      border-bottom-color: rgba(226, 232, 240, 0.3);
      box-shadow: none;
    }

    #site-header:hover,
    #site-header.scrolled:hover {
      background: rgba(255, 255, 255, 1);
      border-bottom-color: var(--border);
      box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.45rem 1.5rem;
    }

    /* Logo + brand */
    .brand-link {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      color: var(--text-primary);
      flex-shrink: 0;
    }

    .brand-link img {
      height: 32px;
      width: auto;
      display: block;
    }

    .brand-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* Nav links — Brock.be stijl, pill-shaped */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      padding: 0.45rem 0.9rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-secondary);
      text-decoration: none;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: color 0.15s, background 0.15s, border-color 0.15s;
    }

    .nav-links a:hover {
      color: var(--accent);
      background: var(--accent-soft);
      border-color: var(--border);
    }

    .nav-links a.active {
      color: var(--accent);
      background: var(--accent-soft);
      border-color: var(--border);
    }

    /* Header rechts cluster */
    .header-right {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Lang-selector — zelfde als bestaande landing */
    .lang-btn {
      position: relative;
      height: 34px;
      padding: 0 0.65rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      border-radius: 999px;
      border: 1px solid var(--border-strong);
      background: var(--bg-surface);
      color: var(--text-muted);
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      cursor: pointer;
      transition: color 0.15s, background 0.15s;
    }

    /* Globe icon size — defined once here so it never drifts per page. */
    .lang-btn svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
    }

    .lang-btn:hover {
      color: var(--text-primary);
      background: var(--bg-surface-2);
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 0.5rem);
      right: 0;
      min-width: 160px;
      border-radius: 12px;
      border: 1px solid var(--border-strong);
      background: var(--bg-surface);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      display: none;
      z-index: 200;
    }

    .lang-menu.open {
      display: block;
    }

    .lang-menu button {
      width: 100%;
      padding: 0.55rem 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border: 0;
      background: transparent;
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      font-size: 0.86rem;
      text-align: left;
      cursor: pointer;
      transition: background 0.12s;
    }

    .lang-menu button:hover {
      background: var(--bg-surface-2);
    }

    .lang-menu button.active {
      background: var(--accent-soft);
      color: var(--accent);
    }

    .lang-menu .flag {
      font-size: 1rem;
    }

    .lang-menu .check {
      margin-left: auto;
      width: 13px;
      height: 13px;
      opacity: 0;
    }

    .lang-menu button.active .check {
      opacity: 1;
    }

    /* Theme toggle */
    .theme-btn {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid var(--border-strong);
      background: var(--bg-surface);
      color: var(--text-muted);
      cursor: pointer;
      transition: color 0.15s, background 0.15s;
    }

    .theme-btn:hover {
      color: var(--text-primary);
      background: var(--bg-surface-2);
    }

    .theme-btn svg {
      width: 15px;
      height: 15px;
    }

    /* Login / CTA knop */
    .btn-login {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.5rem 1.1rem;
      background: var(--gradient-brand);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 0.84rem;
      text-decoration: none;
      border-radius: 8px;
      border: 0;
      box-shadow: 0 3px 12px var(--accent-soft);
      transition: opacity 0.15s, transform 0.15s;
    }

    .btn-login:hover {
      opacity: 0.9;
      transform: translateY(-1px);
      color: #fff;
    }

    .btn-login svg {
      width: 12px;
      height: 12px;
    }

    /* Mobile hamburger */
    .nav-toggle {
      display: none;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--border-strong);
      background: var(--bg-surface);
      color: var(--text-muted);
      cursor: pointer;
    }

    .nav-toggle svg {
      width: 18px;
      height: 18px;
    }

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

      .nav-toggle {
        display: inline-flex;
      }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 1.5rem 1rem;
        gap: 0.15rem;
        box-shadow: var(--shadow-sm);
      }

      .nav-links.open a {
        padding: 0.55rem 0.75rem;
        width: 100%;
      }
    }


    /* ════════════════════════════════════════════════════════
     HERO
     ════════════════════════════════════════════════════════ */
    #hero {
      padding: 96px 1.5rem 80px;
      background: url('../img/hero-bg.jpg') center/cover no-repeat;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Decoratieve achtergrond-cirkels */
    #hero::before,
    #hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.35;
    }

    #hero::before {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.18) 0%, transparent 70%);
      top: -200px;
      right: -150px;
    }

    #hero::after {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(107, 93, 227, 0.12) 0%, transparent 70%);
      bottom: -100px;
      left: -100px;
    }

    .hero-inner {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Badge boven de title */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.9rem;
      background: var(--accent-soft);
      border: 1px solid rgba(79, 70, 229, 0.2);
      border-radius: 999px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    /* Hoofd-headline */
    #hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(38px, 6.5vw, 70px);
      font-weight: 800;
      line-height: 1.06;
      color: var(--text-primary);
      margin-bottom: 0;
    }

    /* Geanimeerde subtitle */
    .hero-animated-subtitle {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      /* allow wrap on very small screens to avoid overflow */
      gap: 0.25em;
      font-family: 'Outfit', sans-serif;
      font-size: clamp(18px, 3.5vw, 36px);
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin-top: 24px;
      margin-bottom: 0;
    }

    /* Word-animatie container */
    .hero-animated-line {
      display: inline-flex;
      align-items: center;
      height: 1.4em;
      overflow: hidden;
      margin: 0;
    }

    .hero-word {
      display: block;
      background: rgba(255, 255, 255, 0.15);
      color: #ffffff;
      font-weight: 800;
      line-height: 1.2;
      padding: 0.05em 0.35em;
      border-radius: 6px;
      transition: opacity 0.3s, transform 0.3s;
    }

    /* Geen CSS-animatie meer — JS regelt de wisseling */

    /* Subline */
    .hero-sub {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(16px, 2vw, 20px);
      color: #ffffff;
      line-height: 1.5;
      max-width: 640px;
      margin: 22px auto 36px;
    }

    /* CTA-knoppen */
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 48px;
    }

    /* Glassmorphic card in the hero */
    .hero-glass-card {
      margin-top: 40px;
      padding: 40px 30px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .hero-glass-card .hero-ctas {
      margin-bottom: 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.85rem 1.8rem;
      background: var(--vecto-purple);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 10px;
      border: 1px solid #ffffff;
      text-decoration: none;
      box-shadow: 0 6px 20px var(--accent-soft);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px var(--accent-soft);
      color: #fff;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.85rem 1.8rem;
      background: var(--bg-surface);
      color: var(--text-primary);
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 10px;
      border: 1px solid var(--border-strong);
      text-decoration: none;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, border-color 0.2s;
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: var(--vecto-purple);
      color: var(--text-primary);
    }

    /* Trust bar sectie (volledige breedte) */
    .trust-bar-section {
      background: transparent;
      border-bottom: 1px solid var(--border);
      padding: 24px 1.5rem;
    }

    .trust-bar {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
    }

    .trust-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .trust-items {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--bg-surface);
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
      transition: border-color 0.2s;
    }

    .trust-pill:hover {
      border-color: var(--vecto-purple);
    }

    .trust-pill .ti {
      font-size: 13px;
    }


    /* ════════════════════════════════════════════════════════
     GEDEELDE SECTIE-LAYOUT HELPERS
     ════════════════════════════════════════════════════════ */
    section {
      padding: 88px 1.5rem;
    }

    .section-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .section-head {
      max-width: 680px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .section-head .sub {
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.7;
      margin-top: 14px;
    }

    /* Generieke kaart */
    .card-base {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .card-base:hover {
      transform: translateY(-3px);
      border-color: var(--vecto-purple);
      box-shadow: var(--shadow-card);
    }

    /* "Meer info" knop */
    .btn-more {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.5rem 1.1rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent);
      border: 1px solid var(--accent);
      border-radius: 999px;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }

    .btn-more:hover {
      background: var(--accent);
      color: #fff;
    }

    .btn-more svg {
      width: 12px;
      height: 12px;
    }


    /* ════════════════════════════════════════════════════════
     SECTIE 2 — PRIMARY USPs
     3 blokken: tekst links + afbeelding rechts
     In het middelste blok (AI Control) zit de autonomy-slider
     ════════════════════════════════════════════════════════ */
    #primary-usps {
      background: transparent;
    }

    /* USP blok layout: alternerend links/rechts */
    .usp-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
      padding: 48px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.10);
      margin-bottom: 32px;
    }

    .usp-block:last-child {
      margin-bottom: 0;
    }

    /* Rechts-links wissel voor even blokken */
    .usp-block.reverse .usp-text {
      order: 2;
    }

    .usp-block.reverse .usp-visual {
      order: 1;
    }

    /* USP tekst kolom */
    .usp-text {}

    .usp-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--accent-soft);
      border: 1px solid var(--border);
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 18px;
    }

    .usp-text h3 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(22px, 2.8vw, 30px);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.22;
    }

    .usp-text h3 em {
      font-style: normal;
      background: none;
      -webkit-background-clip: initial;
      background-clip: initial;
      color: inherit;
    }

    .usp-text p {
      font-size: 15.5px;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .usp-bullets {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
    }

    .usp-bullets li {
      position: relative;
      padding-left: 22px;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .usp-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gradient-brand);
    }

    /* USP visual kolom: screenshot of slider card */
    .usp-visual {
      position: relative;
    }

    .usp-screenshot {
      width: 100%;
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      background: var(--bg-surface);
      display: block;
      object-fit: cover;
    }

    /* Decoratieve badge op de screenshot */
    .screenshot-badge {
      position: absolute;
      bottom: -14px;
      right: -14px;
      background: var(--gradient-brand);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 700;
      padding: 0.4rem 0.85rem;
      border-radius: 999px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 4px 14px var(--accent-soft);
    }

    /* Responsive USP-blokken */
    @media (max-width: 860px) {
      .usp-block {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
      }

      .usp-block.reverse .usp-text {
        order: 1;
      }

      .usp-block.reverse .usp-visual {
        order: 2;
      }
    }


    /* ════════════════════════════════════════════════════════
     AUTONOMY-SLIDER (hergebruik van bestaande landing stijl)
     Ingebed in USP blok 2 (AI Control)
     ════════════════════════════════════════════════════════ */
    .slider-card {
      /* Primary paars (--vecto-purple) i.p.v. het blauwige --accent —
         lokaal gescoped zodat de GUI-slider-port de juiste brand-tint draagt. */
      --slider-accent: var(--vecto-purple);
      --slider-accent-soft: rgba(112, 72, 177, 0.16);
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px 28px 24px;
      box-shadow: var(--shadow-slider);
    }

    .slider-card .sc-title {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 5px;
    }

    .slider-card .sc-sub {
      font-size: 13px;
      color: var(--text-body);
      line-height: 1.55;
      margin-bottom: 20px;
    }

    .slider-divider {
      height: 1px;
      background: var(--border);
      margin: 0 -28px 18px;
    }

    /* ─── Spectrum — icon-stops op een gevulde track (GUI AutonomySlider-port).
       Cirkel-centers liggen op 10/30/50/70/90 % → de track-lijn spant 10→90 %
       en de fill dekt idx/4 × 80 % van die span. ─── */
    .aut-spectrum {
      position: relative;
      user-select: none;
      touch-action: none;
      margin-top: 6px;
      cursor: grab;            /* slider-gevoel: open handje op de track + bol */
    }

    /* Bootstrap zet button:not(:disabled) → pointer (specificity 0,1,1); overrule
       met 0,2,0 zodat de stops + de paarse bol het grab-handje tonen, niet de vinger. */
    .aut-spectrum .aut-stop {
      cursor: grab;
    }

    /* Tijdens slepen → gesloten handje, over heel het spectrum + de actieve bol. */
    .aut-spectrum.aut-dragging,
    .aut-spectrum.aut-dragging .aut-stop {
      cursor: grabbing;
    }

    .aut-track,
    .aut-fill {
      position: absolute;
      top: 18px;
      height: 4px;
      border-radius: 999px;
      pointer-events: none;
    }

    .aut-track {
      left: 10%;
      right: 10%;
      background: var(--track-bg);
    }

    .aut-fill {
      left: 10%;
      width: 0;
      background: var(--slider-accent);
      transition: width 0.3s ease-out;
    }

    .aut-stops {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
    }

    .aut-stop {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      padding: 0 0 2px;
      background: transparent;
      border: 0;
      cursor: grab;
      font-family: inherit;
    }

    .aut-node {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-surface);
      border: 2px solid var(--border-strong);
      color: var(--text-faint);
      transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    }

    .aut-node svg {
      width: 20px;
      height: 20px;
    }

    .aut-stop:hover:not(.active) .aut-node {
      border-color: var(--slider-accent);
    }

    .aut-stop.reached .aut-node {
      border-color: var(--slider-accent);
      color: var(--slider-accent);
    }

    .aut-stop.active .aut-node {
      background: var(--slider-accent);
      border-color: var(--slider-accent);
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 0 0 4px var(--slider-accent-soft);
    }

    .aut-stop:focus-visible {
      outline: none;
    }

    .aut-stop:focus-visible .aut-node {
      box-shadow: 0 0 0 3px var(--slider-accent-soft);
    }

    .aut-name {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-faint);
      text-align: center;
      transition: color 0.2s;
    }

    .aut-stop.reached .aut-name {
      color: var(--text-secondary);
    }

    .aut-stop.active .aut-name {
      color: var(--slider-accent);
      font-weight: 700;
    }

    .aut-who {
      font-size: 9px;
      color: var(--text-faint);
      text-align: center;
    }

    /* ─── Live beschrijving van de geselecteerde stop (updatet tijdens slepen) ─── */
    .aut-desc {
      margin-top: 18px;
      background: var(--bg-surface-2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      font-size: 13px;
      line-height: 1.55;
      color: var(--text-body);
    }

    .aut-desc-title {
      display: block;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--slider-accent);
      margin-bottom: 4px;
    }

    /* ─── Capability-chips ─── */
    .scene-caps {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }

    .scene-cap {
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 999px;
      background: var(--slider-accent-soft);
      color: var(--slider-accent);
      border: 1px solid transparent;
      font-weight: 600;
    }

    /* ─── Mens / AI balans ─── */
    .balance-section {
      margin-top: 16px;
    }

    .balance-bar {
      display: flex;
      height: 6px;
      border-radius: 999px;
      overflow: hidden;
      gap: 2px;
    }

    .bal-human {
      background: var(--success);
      border-radius: 999px 0 0 999px;
      transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .bal-ai {
      flex: 1;
      background: var(--slider-accent);
      border-radius: 0 999px 999px 0;
    }

    .balance-label {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      margin-top: 5px;
      font-weight: 600;
      font-family: 'Outfit', sans-serif;
    }

    .balance-label .bl-human {
      color: var(--success);
    }

    .balance-label .bl-ai {
      color: var(--slider-accent);
    }


    /* ════════════════════════════════════════════════════════
     SECTIE 3 — SECONDARY FEATURES
     Links: knoppenlijst · Rechts: wisselt screenshot
     ════════════════════════════════════════════════════════ */
    #secondary-features {
      background: var(--accent-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .secondary-inner {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 48px;
      align-items: start;
    }

    /* Knoppenlijst links */
    .feat-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feat-list li {
      margin-bottom: 0.6rem;
    }

    .feat-btn {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      width: 100%;
      padding: 0.9rem 1.1rem;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--bg-surface);
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
      cursor: pointer;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .feat-btn:hover {
      background: var(--bg-alt);
      border-color: var(--border-strong);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .feat-btn.active {
      background: var(--vecto-purple);
      border-color: var(--vecto-purple);
      color: #ffffff;
      box-shadow: 0 6px 16px rgba(135, 84, 220, 0.35);
      transform: translateY(-2px);
    }

    .feat-btn .fa {
      margin-left: auto;
      opacity: 0.4;
      transition: opacity 0.2s, transform 0.2s;
    }

    .feat-btn:hover .fa {
      opacity: 0.8;
      transform: translateX(2px);
    }

    .feat-btn.active .fa {
      opacity: 1;
      transform: translateX(4px);
      color: #ffffff;
    }

    /* Screenshot display rechts */
    .feat-showcase {
      position: sticky;
      top: 100px;
    }

    .feat-display {
      position: relative;
    }

    .feat-screenshot {
      width: 100%;
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      background: var(--bg-surface);
      display: block;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .feat-screenshot.fade-in {
      animation: feat-fade 0.35s ease;
    }

    @keyframes feat-fade {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .feat-caption {
      padding: 14px 18px;
      background: var(--vecto-purple);
      border: none;
      border-radius: 12px;
    }

    .feat-caption h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 5px;
    }

    .feat-caption p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.55;
      margin: 0;
    }

    /* Mobile Carousel voor Secondary Features */
    .feat-mobile-carousel-wrapper {
      display: none;
      /* Default hidden on desktop */
      position: relative;
      margin-top: 20px;
    }

    .feat-mobile-carousel {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      gap: 16px;
      padding-bottom: 10px;
      scroll-behavior: smooth;
    }

    .feat-mobile-carousel::-webkit-scrollbar {
      display: none;
    }

    .feat-slide {
      flex: 0 0 100%;
      scroll-snap-align: center;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      background: var(--bg-surface);
    }

    .feat-slide img {
      width: 100%;
      display: block;
    }

    .feat-slide-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px 16px 16px;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
      pointer-events: none;
    }

    .feat-slide-caption h4 {
      margin: 0;
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
    }

    .feat-carousel-ctrl {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 10;
      cursor: pointer;
    }

    .feat-carousel-ctrl.prev {
      left: -14px;
    }

    .feat-carousel-ctrl.next {
      right: -14px;
    }

    @media (max-width: 860px) {
      .secondary-inner {
        display: none;
      }

      .feat-mobile-carousel-wrapper {
        display: block;
      }
    }


    /* ════════════════════════════════════════════════════════
     SECTIE 4 — PRICING TEASER
     ════════════════════════════════════════════════════════ */
    #pricing-teaser {
      background: var(--vecto-purple);
      color: #fff;
      padding: 72px 1.5rem;
    }

    .pricing-teaser-inner {
      max-width: 920px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
    }

    .pricing-teaser-inner .eyebrow {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .pricing-teaser-inner h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .pricing-teaser-inner p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin: 0;
    }

    .btn-pricing {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.9rem 2rem;
      white-space: nowrap;
      background: #fff;
      color: var(--vecto-purple);
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 10px;
      border: 0;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-pricing:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
      color: var(--vecto-purple);
    }

    @media (max-width: 700px) {
      .pricing-teaser-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .btn-pricing {
        width: 100%;
        justify-content: center;
      }
    }


    /* ════════════════════════════════════════════════════════
     SECTIE 5 — REQUEST DEMO + NEWSLETTER
     ════════════════════════════════════════════════════════ */
	 
	     .enterprise-badge {
      display: inline-block;
      background: rgba(16, 185, 129, 0.1);
      color: var(--success);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
	
    #request-demo {
      background: url('../img/demo-bg.jpg') center/cover no-repeat;
      color: #ffffff;
      border-top: none;
    }

    #request-demo .section-title {
      color: #ffffff;
    }

    #request-demo .sub {
      color: rgba(255, 255, 255, 0.85);
    }

    .demo-inner {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* Demo form */
    .demo-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }

    .demo-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .demo-card .lede {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 6px;
      font-family: 'Outfit', sans-serif;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.7rem 0.95rem;
      font-family: 'Inter', sans-serif;
      font-size: 14.5px;
      border: 1px solid var(--border-strong);
      border-radius: 9px;
      background: var(--bg-app);
      color: var(--text-primary);
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: 0;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }

    .btn-submit {
      width: 100%;
      padding: 0.85rem;
      background: var(--gradient-brand);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      border: 0;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 4px 14px var(--accent-soft);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 22px var(--accent-soft);
    }

    /* Newsletter naast het formulier */
    .newsletter-side h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .newsletter-side p {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .nl-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .nl-form input {
      padding: 0.7rem 0.95rem;
      font-family: 'Inter', sans-serif;
      font-size: 14.5px;
      border: 1px solid var(--border-strong);
      border-radius: 9px;
      background: var(--bg-app);
      color: var(--text-primary);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .nl-form input:focus {
      outline: 0;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }

    .btn-nl {
      padding: 0.75rem;
      background: var(--gradient-brand);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      border: 0;
      border-radius: 9px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
    }

    .btn-nl:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    /* Wachtlijst toggle row */
    .waitlist-toggle-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      background: var(--bg-app);
      border: 1px solid var(--border);
      border-radius: 10px;
    }

    .waitlist-toggle-row.waitlist-active {
      background: rgba(109, 71, 177, 0.08);
      border-color: rgba(109, 71, 177, 0.25);
    }

    .waitlist-toggle-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .waitlist-toggle-label {
      font-family: 'Outfit', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .waitlist-toggle-sub {
      font-size: 11.5px;
      color: var(--text-secondary);
    }

    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 42px;
      height: 24px;
      flex-shrink: 0;
      cursor: pointer;
    }

    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
      position: absolute;
    }

    .toggle-track {
      position: absolute;
      inset: 0;
      background: var(--border-strong);
      border-radius: 999px;
      transition: background 0.2s;
    }

    .toggle-track::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 1px 3px rgba(0,0,0,.25);
      transition: transform 0.2s;
    }

    .toggle-switch input:checked + .toggle-track {
      background: var(--accent);
    }

    .toggle-switch input:checked + .toggle-track::after {
      transform: translateX(18px);
    }

    .waitlist-hint {
      font-size: 12.5px;
      color: var(--text-secondary);
      line-height: 1.55;
      margin: 0;
    }

    .waitlist-hint-on {
      color: var(--text-body);
    }

    .nl-confirm {
      display: none;
      margin-top: 12px;
      padding: 10px 14px;
      background: rgba(16, 185, 129, 0.10);
      border: 1px solid rgba(16, 185, 129, 0.30);
      border-radius: 9px;
      color: var(--success);
      font-size: 13px;
      text-align: center;
    }

    .nl-confirm.visible {
      display: block;
    }

    /* USPs bullet-lijst naast newsletter */
    .nl-usps {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
    }

    .nl-usps li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.55;
      margin-bottom: 12px;
    }

    .nl-usps .check-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--success);
    }

    .nl-usps .check-icon svg {
      width: 11px;
      height: 11px;
    }

    @media (max-width: 800px) {
      .demo-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }


    /* ════════════════════════════════════════════════════════
     FOOTER
     ════════════════════════════════════════════════════════ */
    #site-footer {
      background: var(--footer-bg);
      padding: 56px 1.5rem 32px;
    }

    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
    }

    .footer-left {
      max-width: 320px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .footer-brand img {
      height: 28px;
      width: auto;
    }

    .footer-wordmark {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #ffffff;
    }

    .footer-left p {
      font-size: 13px;
      color: var(--footer-text);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .footer-socials a {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      border: 1px solid var(--footer-border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #cbd5e1;
      transition: background 0.2s, transform 0.2s;
    }

    .footer-socials a:hover {
      background: var(--vecto-purple);
      color: #fff;
      transform: translateY(-2px);
    }

    .footer-socials svg {
      width: 16px;
      height: 16px;
    }

    .footer-col h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--footer-head);
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col li {
      margin-bottom: 9px;
    }

    .footer-col a,
    .footer-col span {
      font-size: 13.5px;
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--vecto-purple);
    }

    .footer-meta {
      max-width: 1160px;
      margin: 36px auto 0;
      padding-top: 22px;
      border-top: 1px solid var(--footer-border);
      font-size: 12px;
      color: var(--footer-text);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-meta a {
      color: #cbd5e1;
      font-weight: 600;
      text-decoration: none;
    }

    .footer-meta a:hover {
      color: var(--vecto-purple);
    }

    /* ─── TOAST ─── */
    #toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%) translateY(120px);
      background: var(--text-primary);
      color: var(--bg-app);
      padding: 12px 24px;
      border-radius: 9px;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 500;
      box-shadow: var(--shadow-sm);
      z-index: 300;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }

    #toast.visible {
      transform: translateX(-50%) translateY(0);
    }

    /* ─── ANIMATIE: fade-up bij scroll ─── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── RESPONSIVE ALGEMEEN ─── */
    @media (max-width: 700px) {
      section {
        padding: 60px 1.25rem;
      }

      #hero {
        padding: 72px 1.25rem 56px;
      }

      /* Let the hero headline wrap on small screens — overrides the inline
         white-space:nowrap on the 2nd line so long translations (e.g. FR) don't clip. */
      #hero h1 span {
        white-space: normal !important;
      }

      .footer-inner {
        gap: 28px;
      }

      .demo-card {
        padding: 24px;
      }
    }
  

/* --- PRICING SPECIFIC --- */


/* --- FAQ SPECIFIC --- */

/* --- PRICING SPECIFIC --- */
#pricing-hero {
  background: transparent;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-hero-inner { max-width: 800px; margin: 0 auto; }
.pricing-hero-inner h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; }
.pricing-hero-inner p { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* SETUP GRID */
.setup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto 3rem; }
@media (max-width: 768px) { .setup-grid { grid-template-columns: 1fr; } }
.setup-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; position: relative; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.setup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; border-radius: 16px 16px 0 0; }
.card-bar-accent { background: var(--accent); }
.card-bar-success { background: var(--success); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-accent { background: var(--accent-soft); color: var(--accent); }
.icon-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.setup-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.card-subtitle { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; }

.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.badge-pill { font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 999px; background: var(--bg-surface-2); color: var(--text-secondary); }
.badge-pill.highlight-accent { background: var(--accent-soft); color: var(--accent); }
.badge-pill.highlight-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.setup-features { list-style: none; padding: 0; margin: 0 0 2rem; flex-grow: 1; }
.setup-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: var(--text-body); font-size: 0.95rem; }
.feat-check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-check-accent { background: var(--accent-soft); color: var(--accent); }
.feat-check-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.btn-setup-primary { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.85rem; border-radius: 10px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.btn-setup-primary.btn-accent { background: var(--accent); color: #fff; }
.btn-setup-primary.btn-success { background: var(--success); color: #fff; }
.btn-setup-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

.pricing-note { text-align: center; font-size: 0.9rem; color: var(--text-muted); margin-top: 1rem; }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.compare-table th { padding: 1.25rem 1rem; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--text-primary); border-bottom: 2px solid var(--border); text-align: left; }
.compare-table td { padding: 1.25rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-body); font-size: 0.95rem; }
.compare-table tr:hover td { background: var(--bg-alt); }
.compare-table .cat-row td { background: var(--bg-surface-2); font-weight: 600; color: var(--text-primary); font-family: 'Outfit', sans-serif; padding: 0.75rem 1rem; }
.compare-table td:not(:first-child) { text-align: center; }
.check-yes { color: var(--success); font-weight: 700; font-size: 1.2rem; }
.check-no { color: var(--text-faint); }

/* MODAL */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1000; opacity: 0; transition: opacity 0.3s; }
.modal-overlay.open { display: flex; opacity: 1; }
.modal-card { background: var(--bg-surface); width: 100%; max-width: 500px; border-radius: 16px; padding: 2rem; position: relative; transform: scale(0.95); transition: transform 0.3s; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.25rem; }
.modal-close:hover { color: var(--text-primary); }
.modal-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.modal-sub { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.form-group input { width: 100%; padding: 0.75rem; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--bg-app); color: var(--text-primary); font-family: inherit; font-size: 1rem; }
.form-group input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.btn-submit { width: 100%; padding: 0.85rem; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--accent-hover); }

/* --- FAQ SPECIFIC --- */
#faq-hero {
  background: transparent;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.faq-hero-inner { max-width: 800px; margin: 0 auto; }
.faq-hero-inner h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; color: var(--text-primary); margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.faq-hero-inner p { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.faq-section { padding: 5rem 1.5rem; background: transparent; min-height: 50vh; }
.faq-inner { max-width: 768px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 12px; margin-bottom: 6px; padding: 0 1.25rem; }
.faq-item:first-child { border-top: 1px solid var(--border); }
  

/* --- PRICING SPECIFIC --- */


/* --- FAQ SPECIFIC --- */

/* --- PRICING SPECIFIC --- */
#pricing-hero {
  background: transparent;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-hero-inner { max-width: 800px; margin: 0 auto; }
.pricing-hero-inner h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; }
.pricing-hero-inner p { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* SETUP GRID */
.setup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto 3rem; }
@media (max-width: 768px) { .setup-grid { grid-template-columns: 1fr; } }
.setup-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; position: relative; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.setup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; border-radius: 16px 16px 0 0; }
.card-bar-accent { background: var(--accent); }
.card-bar-success { background: var(--success); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-accent { background: var(--accent-soft); color: var(--accent); }
.icon-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.setup-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-desc { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.card-subtitle { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; }

.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.badge-pill { font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 999px; background: var(--bg-surface-2); color: var(--text-secondary); }
.badge-pill.highlight-accent { background: var(--accent-soft); color: var(--accent); }
.badge-pill.highlight-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.setup-features { list-style: none; padding: 0; margin: 0 0 2rem; flex-grow: 1; }
.setup-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: var(--text-body); font-size: 0.95rem; }
.feat-check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-check-accent { background: var(--accent-soft); color: var(--accent); }
.feat-check-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }

.btn-setup-primary { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.85rem; border-radius: 10px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.btn-setup-primary.btn-accent { background: var(--accent); color: #fff; }
.btn-setup-primary.btn-success { background: var(--success); color: #fff; }
.btn-setup-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

.pricing-note { text-align: center; font-size: 0.9rem; color: var(--text-muted); margin-top: 1rem; }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.compare-table th { padding: 1.25rem 1rem; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--text-primary); border-bottom: 2px solid var(--border); text-align: left; }
.compare-table td { padding: 1.25rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-body); font-size: 0.95rem; }
.compare-table tr:hover td { background: var(--bg-alt); }
.compare-table .cat-row td { background: var(--bg-surface-2); font-weight: 600; color: var(--text-primary); font-family: 'Outfit', sans-serif; padding: 0.75rem 1rem; }
.compare-table td:not(:first-child) { text-align: center; }
.check-yes { color: var(--success); font-weight: 700; font-size: 1.2rem; }
.check-no { color: var(--text-faint); }

/* MODAL */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1000; opacity: 0; transition: opacity 0.3s; }
.modal-overlay.open { display: flex; opacity: 1; }
.modal-card { background: var(--bg-surface); width: 100%; max-width: 500px; border-radius: 16px; padding: 2rem; position: relative; transform: scale(0.95); transition: transform 0.3s; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.25rem; }
.modal-close:hover { color: var(--text-primary); }
.modal-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.modal-sub { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.form-group input { width: 100%; padding: 0.75rem; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--bg-app); color: var(--text-primary); font-family: inherit; font-size: 1rem; }
.form-group input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.btn-submit { width: 100%; padding: 0.85rem; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--accent-hover); }

/* --- FAQ SPECIFIC --- */
#faq-hero {
  background: transparent;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.faq-hero-inner { max-width: 800px; margin: 0 auto; }
.faq-hero-inner h1 { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; color: var(--text-primary); margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.faq-hero-inner p { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.faq-section { padding: 5rem 1.5rem; background: transparent; min-height: 50vh; }
.faq-inner { max-width: 768px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 12px; margin-bottom: 6px; padding: 0 1.25rem; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem 0; background: none; border: none; font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-question:hover { color: var(--accent); }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s ease; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem; }
.faq-question.open svg { transform: rotate(180deg); color: var(--accent); }
.faq-answer { display: none; padding-bottom: 1.5rem; color: var(--text-body); font-size: 1rem; line-height: 1.7; }
.faq-answer.open { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════════════════
   DEMO GRID LAYOUT — Elegant & Compact
   ════════════════════════════════════════════════════════ */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.demo-info-col {
  color: #ffffff;
  text-align: left;
}

.demo-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.demo-section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 16px;
}

.demo-card-col {
  width: 100%;
}

@media (max-width: 860px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .demo-info-col {
    text-align: center;
  }
  .demo-section-title {
    margin-bottom: 12px;
  }
}
