    .ai-node-img { width: 52px; height: 52px; object-fit: contain; }
    .node-demeter .ai-node-img  { filter: drop-shadow(0 0 10px #39ff14); }
    .node-themis  .ai-node-img  { filter: drop-shadow(0 0 10px #4fc3f7); }
    .node-athena  .ai-node-img  { filter: drop-shadow(0 0 10px #00e5ff); }
    .node-apollo  .ai-node-img  { filter: drop-shadow(0 0 10px #ff8c00); }
    .node-proteus .ai-node-img  { filter: drop-shadow(0 0 10px #a855f7); }
    :root {
      --navy:       #0a0e14;
      --navy-mid:   #0f1923;
      --navy-light: #162030;
      --teal-dark:  #0d3d3a;
      --teal:       #1a7a6e;
      --teal-light: #2ab8a0;
      --teal-glow:  #2ee8c8;
      --white:      #e8f0f0;
      --white-dim:  #8aa8aa;
      --green:      #39ff14;
      --blue-ice:   #4fc3f7;
      --cyan:       #00e5ff;
      --orange:     #ff8c00;
      --purple:     #a855f7;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      overflow-x: hidden;
    }

    /* ─── NOISE OVERLAY ───────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.4;
    }

    /* ─── NAV ──────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 3rem;
      background: linear-gradient(180deg, rgba(10,14,20,0.95) 0%, transparent 100%);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(42,184,160,0.1);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }

    .nav-logo-box {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, #1a4a4a, #2a8a7a);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      color: #fff;
      border: 1px solid rgba(42,184,160,0.4);
    }

    .nav-logo-text {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 300;
      font-size: 1rem;
      letter-spacing: 0.3em;
      color: var(--white);
      text-transform: uppercase;
    }

    .nav-logo-text span {
      font-weight: 600;
      color: var(--teal-light);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 400;
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }

    .hamburger { display: none; }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--teal-glow);
      transition: width 0.3s;
    }

    .nav-links a:hover { color: var(--teal-glow); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--teal-light);
      border: none;
      padding: 0.55rem 1.4rem;
      cursor: pointer;
      text-decoration: none;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background 0.2s, box-shadow 0.2s;
    }

    .nav-cta:hover {
      background: var(--teal-glow);
      box-shadow: 0 0 20px rgba(46,232,200,0.4);
    }

    /* ─── HERO ──────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 3rem 4rem;
      position: relative;
      overflow: hidden;
      gap: 4rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(26,122,110,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(46,232,200,0.05) 0%, transparent 60%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(42,184,160,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,184,160,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 80%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--teal-light);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px; height: 1px;
      background: var(--teal-light);
    }

    h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(3.5rem, 6vw, 5.5rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    h1 .line-teal {
      color: var(--teal-light);
      display: block;
    }

    h1 .line-dim {
      color: var(--white-dim);
      font-weight: 300;
      display: block;
    }

    .hero-sub {
      font-size: 1.15rem;
      font-weight: 300;
      letter-spacing: 0.05em;
      color: var(--white-dim);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 2.5rem;
    }

    .hero-sub strong {
      color: var(--white);
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-primary {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--teal-light);
      border: none;
      padding: 0.9rem 2rem;
      cursor: pointer;
      text-decoration: none;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.2s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--teal-glow);
      box-shadow: 0 0 30px rgba(46,232,200,0.5);
    }

    .btn-ghost {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal-light);
      background: transparent;
      border: 1px solid rgba(42,184,160,0.4);
      padding: 0.9rem 2rem;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-block;
    }

    .btn-ghost:hover {
      border-color: var(--teal-glow);
      color: var(--teal-glow);
      background: rgba(46,232,200,0.05);
    }

    /* Hero right – AI orbs */
    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 500px;
    }

    .orb-center {
      position: absolute;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, rgba(42,184,160,0.3), rgba(13,61,58,0.8));
      border: 1px solid rgba(42,184,160,0.5);
      box-shadow:
        0 0 40px rgba(42,184,160,0.3),
        inset 0 0 40px rgba(42,184,160,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse-center 4s ease-in-out infinite;
    }

    .orb-center-label {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-align: center;
      color: var(--teal-glow);
      text-transform: uppercase;
      line-height: 1.4;
    }

    @keyframes pulse-center {
      0%, 100% { box-shadow: 0 0 40px rgba(42,184,160,0.3), inset 0 0 40px rgba(42,184,160,0.1); }
      50% { box-shadow: 0 0 70px rgba(42,184,160,0.5), inset 0 0 60px rgba(42,184,160,0.2); }
    }

    .orbit-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(42,184,160,0.15);
    }

    .orbit-ring-1 { width: 280px; height: 280px; animation: spin 20s linear infinite; }
    .orbit-ring-2 { width: 400px; height: 400px; animation: spin 30s linear infinite reverse; border-style: dashed; }
    .orbit-ring-3 { width: 480px; height: 480px; animation: spin 45s linear infinite; border-color: rgba(42,184,160,0.07); }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── Orbit wrapper: draait rond het midden ── */
    .ai-node {
      position: absolute;
      width: 0; height: 0;
      top: 50%; left: 50%;
      transform-origin: 0 0;
    }

    /* ── Inner: houdt logo rechtop via tegen-rotatie ── */
    .ai-node-inner {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      cursor: pointer;
    }

    .ai-node-name {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      text-align: center;
    }

    /* Elke node: eigen orbit-straal en starthoek */
    @keyframes orbit-cw  { from { transform: rotate(var(--a0)); } to { transform: rotate(calc(var(--a0) + 360deg)); } }
    @keyframes orbit-ccw { from { transform: rotate(var(--a0)); } to { transform: rotate(calc(var(--a0) - 360deg)); } }
    @keyframes counter-cw  { from { transform: translateX(var(--r)) rotate(calc(-1 * var(--a0))); } to { transform: translateX(var(--r)) rotate(calc(-1 * var(--a0) - 360deg)); } }
    @keyframes counter-ccw { from { transform: translateX(var(--r)) rotate(calc(-1 * var(--a0))); } to { transform: translateX(var(--r)) rotate(calc(-1 * var(--a0) + 360deg)); } }

    .node-demeter  { --a0: 0deg;    --r: 200px; animation: orbit-cw  22s linear infinite; }
    .node-themis   { --a0: 72deg;   --r: 200px; animation: orbit-cw  22s linear infinite; }
    .node-athena   { --a0: 144deg;  --r: 200px; animation: orbit-cw  22s linear infinite; }
    .node-apollo   { --a0: 216deg;  --r: 200px; animation: orbit-cw  22s linear infinite; }
    .node-proteus  { --a0: 288deg;  --r: 200px; animation: orbit-cw  22s linear infinite; }

    .node-demeter  .ai-node-inner { animation: counter-cw 22s linear infinite; }
    .node-themis   .ai-node-inner { animation: counter-cw 22s linear infinite; }
    .node-athena   .ai-node-inner { animation: counter-cw 22s linear infinite; }
    .node-apollo   .ai-node-inner { animation: counter-cw 22s linear infinite; }
    .node-proteus  .ai-node-inner { animation: counter-cw 22s linear infinite; }

    .node-demeter  .ai-node-name { color: var(--green); }
    .node-themis   .ai-node-name { color: var(--blue-ice); }
    .node-athena   .ai-node-name { color: var(--cyan); }
    .node-apollo   .ai-node-name { color: var(--orange); }
    .node-proteus  .ai-node-name { color: var(--purple); }

    /* ─── STRIP ──────────────────────────────────────────── */
    .strip {
      background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-dark));
      padding: 0.9rem 0;
      overflow: hidden;
      border-top: 1px solid rgba(42,184,160,0.3);
      border-bottom: 1px solid rgba(42,184,160,0.3);
    }

    .strip-inner {
      display: flex;
      animation: marquee 25s linear infinite;
      white-space: nowrap;
      will-change: transform;
    }

    .strip-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      flex-shrink: 0;
      margin-right: 4rem;
    }

    .strip-item span { color: var(--teal-glow); margin-right: 0.5rem; }

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

    /* ─── SECTION BASE ─────────────────────────────────── */
    section { padding: 6rem 3rem; position: relative; }

    .section-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--teal-light);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--teal-light);
    }

    h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 1rem;
    }

    /* ─── DIENSTEN ──────────────────────────────────────── */
    .diensten {
      background: var(--navy-mid);
    }

    .diensten-header {
      max-width: 600px;
      margin-bottom: 4rem;
    }

    .diensten-header p {
      color: var(--white-dim);
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.7;
      margin-top: 1rem;
    }

    .diensten-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(42,184,160,0.1);
    }

    .dienst-card {
      background: var(--navy-mid);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .dienst-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 0;
      background: var(--teal-light);
      transition: height 0.4s;
    }

    .dienst-card:hover { background: var(--navy-light); }
    .dienst-card:hover::before { height: 100%; }

    .dienst-icon {
      font-size: 2rem;
      margin-bottom: 1.2rem;
      display: block;
    }

    .dienst-card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.8rem;
      color: var(--white);
    }

    .dienst-card p {
      font-size: 1rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.6;
    }

    .dienst-num {
      position: absolute;
      bottom: 1.5rem; right: 1.5rem;
      font-family: 'Space Mono', monospace;
      font-size: 2.5rem;
      font-weight: 700;
      color: rgba(42,184,160,0.06);
      line-height: 1;
    }

    /* ─── AI COLLECTIE ─────────────────────────────────── */
    .ai-collectie {
      background: var(--navy);
    }

    .ai-collectie-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 4rem;
    }

    .ai-collectie-header p {
      color: var(--white-dim);
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.7;
    }

    .ai-cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }

    .ai-card {
      background: var(--navy-mid);
      border: 1px solid rgba(42,184,160,0.1);
      padding: 2rem 1.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s;
      cursor: pointer;
    }

    .ai-card:hover { transform: translateY(-6px); }

    .ai-card-hex {
      width: 60px; height: 60px;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
    }

    .ai-card h3 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }

    .ai-card .ai-tagline {
      font-size: 0.8rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: var(--white-dim);
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .ai-card p {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.6;
    }

    .ai-card-glow {
      position: absolute;
      bottom: -30px; right: -30px;
      width: 100px; height: 100px;
      border-radius: 50%;
      opacity: 0.15;
      filter: blur(30px);
    }

    /* Card color themes */
    .ai-demeter { border-color: rgba(57,255,20,0.2); }
    .ai-demeter:hover { border-color: rgba(57,255,20,0.5); }
    .ai-demeter .ai-card-hex { background: rgba(57,255,20,0.1); }
    .ai-demeter h3 { color: var(--green); }
    .ai-demeter .ai-card-glow { background: var(--green); }

    .ai-themis { border-color: rgba(79,195,247,0.2); }
    .ai-themis:hover { border-color: rgba(79,195,247,0.5); }
    .ai-themis .ai-card-hex { background: rgba(79,195,247,0.1); }
    .ai-themis h3 { color: var(--blue-ice); }
    .ai-themis .ai-card-glow { background: var(--blue-ice); }

    .ai-athena { border-color: rgba(0,229,255,0.2); }
    .ai-athena:hover { border-color: rgba(0,229,255,0.5); }
    .ai-athena .ai-card-hex { background: rgba(0,229,255,0.1); }
    .ai-athena h3 { color: var(--cyan); }
    .ai-athena .ai-card-glow { background: var(--cyan); }

    .ai-apollo { border-color: rgba(255,140,0,0.2); }
    .ai-apollo:hover { border-color: rgba(255,140,0,0.5); }
    .ai-apollo .ai-card-hex { background: rgba(255,140,0,0.1); }
    .ai-apollo h3 { color: var(--orange); }
    .ai-apollo .ai-card-glow { background: var(--orange); }

    .ai-proteus { border-color: rgba(168,85,247,0.2); }
    .ai-proteus:hover { border-color: rgba(168,85,247,0.5); }
    .ai-proteus .ai-card-hex { background: rgba(168,85,247,0.1); }
    .ai-proteus h3 { color: var(--purple); }
    .ai-proteus .ai-card-glow { background: var(--purple); }

    /* ─── USP BANNER ────────────────────────────────────── */
    .usp-banner {
      background: linear-gradient(135deg, var(--teal-dark) 0%, rgba(26,122,110,0.3) 100%);
      border-top: 1px solid rgba(42,184,160,0.3);
      border-bottom: 1px solid rgba(42,184,160,0.3);
      padding: 4rem 3rem;
    }

    .usp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .usp-item {
      text-align: center;
    }

    .usp-number {
      font-family: 'Rajdhani', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--teal-glow);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .usp-label {
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white-dim);
    }

    /* ─── HARDWARE ──────────────────────────────────────── */
    .hardware {
      background: var(--navy-mid);
    }

    .hardware-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .hardware-content h2 { margin-bottom: 1.5rem; }

    .hardware-content p {
      color: var(--white-dim);
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .hw-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 2.5rem;
    }

    .hw-list li {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--white-dim);
    }

    .hw-list li::before {
      content: '▸';
      color: var(--teal-light);
      font-size: 0.8rem;
    }

    .hardware-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .hw-block {
      background: var(--navy);
      border: 1px solid rgba(42,184,160,0.15);
      padding: 1.8rem;
      position: relative;
      overflow: hidden;
    }

    .hw-block-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

    .hw-block h4 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--teal-light);
      margin-bottom: 0.3rem;
    }

    .hw-block p {
      font-size: 0.85rem;
      color: var(--white-dim);
      line-height: 1.5;
    }

    .hw-block-span {
      grid-column: span 2;
    }

    /* ─── CTA ────────────────────────────────────────────── */
    .cta-section {
      background: var(--navy);
      text-align: center;
      padding: 8rem 3rem;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,122,110,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-section .section-label { justify-content: center; }
    .cta-section .section-label::before { display: none; }

    .cta-section h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1.5rem;
    }

    .cta-section p {
      color: var(--white-dim);
      font-size: 1.15rem;
      font-weight: 300;
      max-width: 560px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }

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

    /* ─── AI TEASER ──────────────────────────────────────── */
    .ai-logos-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .ai-logo-chip {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(42,184,160,0.15);
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      min-width: 100px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .ai-logo-chip:hover { border-color: rgba(42,184,160,0.5); transform: translateY(-3px); }
    .ai-logo-chip img { width: 48px; height: 48px; object-fit: contain; }
    .ai-logo-chip span { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-dim); }
    .ai-expand-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      margin-top: 0;
    }
    .ai-expand-panel.open {
      max-height: 800px;
      margin-top: 3rem;
    }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      background: #070a0f;
      border-top: 1px solid rgba(42,184,160,0.15);
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 2rem;
    }

    .footer-left p {
      font-size: 0.85rem;
      color: var(--white-dim);
      margin-top: 0.5rem;
      font-weight: 300;
      letter-spacing: 0.05em;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--teal-light); }

    /* ─── DIENST MEER LINK ────────────────────────────── */
    .dienst-meer {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1.2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal-light);
      text-decoration: none;
      transition: color 0.2s, gap 0.2s;
    }
    .dienst-meer:hover { color: var(--teal-glow); gap: 0.6rem; }

    /* ─── SECTOREN DETAIL ─────────────────────────────── */
    .sectoren-detail { background: var(--navy-light); padding: 0; }

    .sector-anchor-nav {
      display: flex;
      gap: 0;
      border-bottom: 1px solid rgba(42,184,160,0.12);
      overflow-x: auto;
    }
    .sector-anchor-nav a {
      font-family: 'Space Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-decoration: none;
      padding: 1rem 2rem;
      border-right: 1px solid rgba(42,184,160,0.1);
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .sector-anchor-nav a::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
    }
    .sector-anchor-nav a:hover { color: var(--white); background: rgba(42,184,160,0.05); }
    .anchor-zorg::before    { background: #7FBBC4; }
    .anchor-overheid::before { background: #9AA6B2; }
    .anchor-onderwijs::before { background: #A6C48A; }
    .anchor-commercieel::before { background: #C4A87F; }
    .anchor-maatwerk::before { background: #a855f7; }

    .sector-blok {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 320px;
      border-bottom: 1px solid rgba(42,184,160,0.08);
    }
    .sector-blok:last-child { border-bottom: none; }
    .sector-blok-content {
      padding: 4rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
    }
    .sector-blok-img {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
      background: rgba(0,0,0,0.15);
      position: relative;
      overflow: hidden;
    }
    .sector-blok-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(42,184,160,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(42,184,160,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .sector-blok-img img { width: 160px; position: relative; z-index: 1; }
    .sector-blok-img img.glow-zorg    { filter: drop-shadow(0 0 30px rgba(127,187,196,0.5)); }
    .sector-blok-img img.glow-overheid { filter: drop-shadow(0 0 30px rgba(154,166,178,0.5)); }
    .sector-blok-img img.glow-onderwijs { filter: drop-shadow(0 0 30px rgba(166,196,138,0.5)); }
    .sector-blok-img img.glow-commercieel { filter: drop-shadow(0 0 30px rgba(196,168,127,0.5)); }
    .sector-blok-img img.glow-maatwerk { filter: drop-shadow(0 0 30px rgba(168,85,247,0.5)); }
    .sector-blok-reverse .sector-blok-img { order: -1; }

    .sector-blok-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      padding: 0.3rem 0.8rem;
      border: 1px solid;
      width: fit-content;
    }
    .sector-blok-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; }
    .badge-zorg    { color: #7FBBC4; border-color: rgba(127,187,196,0.3); }
    .badge-zorg::before { background: #7FBBC4; }
    .badge-overheid { color: #9AA6B2; border-color: rgba(154,166,178,0.3); }
    .badge-overheid::before { background: #9AA6B2; }
    .badge-onderwijs { color: #A6C48A; border-color: rgba(166,196,138,0.3); }
    .badge-onderwijs::before { background: #A6C48A; }
    .badge-commercieel { color: #C4A87F; border-color: rgba(196,168,127,0.3); }
    .badge-commercieel::before { background: #C4A87F; }
    .badge-maatwerk { color: #a855f7; border-color: rgba(168,85,247,0.3); }
    .badge-maatwerk::before { background: #a855f7; }

    .sector-blok-content h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1;
      color: var(--white);
    }
    .sector-blok-content p {
      font-size: 1rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.7;
    }
    .sector-meer {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal-light);
      text-decoration: none;
      margin-top: 0.5rem;
      transition: color 0.2s, gap 0.2s;
    }
    .sector-meer:hover { color: var(--teal-glow); gap: 0.7rem; }

    /* ─── PRICING HOME ────────────────────────────────── */
    .pricing-home {
      background: var(--navy-mid);
      border-top: 1px solid rgba(42,184,160,0.12);
      border-bottom: 1px solid rgba(42,184,160,0.12);
    }

    .pricing-home-inner { max-width: 1100px; margin: 0 auto; }

    .pricing-home-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 3rem;
    }
    .pricing-home-intro p {
      color: var(--white-dim);
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.7;
    }

    .pricing-home-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .ph-card {
      background: var(--navy);
      border: 1px solid rgba(42,184,160,0.15);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .ph-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--teal-light), var(--teal-glow));
    }
    .ph-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white-dim);
      margin-bottom: 1.2rem;
    }
    .ph-amount {
      font-family: 'Rajdhani', sans-serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--teal-glow);
      line-height: 1;
      margin-bottom: 0.2rem;
    }
    .ph-period {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white-dim);
      margin-bottom: 1.5rem;
    }
    .ph-includes {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .ph-includes li {
      font-size: 0.95rem;
      color: var(--white-dim);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .ph-includes li::before { content: '▸'; color: var(--teal-light); font-size: 0.7rem; }

    .pricing-maatwerk-note {
      background: rgba(168,85,247,0.05);
      border: 1px solid rgba(168,85,247,0.2);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .pricing-maatwerk-note p {
      font-size: 1rem;
      color: var(--white-dim);
      font-weight: 300;
    }
    .pricing-maatwerk-note strong { color: #a855f7; font-weight: 600; }

    /* ─── MERKENRIJ ──────────────────────────────────── */
    .merken-rij {
      padding: 2.75rem 3rem;
      background: var(--navy);
      border-top: 1px solid rgba(42,184,160,0.08);
    }
    .merken-rij-inner { max-width: 1100px; margin: 0 auto; }
    .merken-rij-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-align: center;
      margin-bottom: 1.5rem;
      opacity: 0.55;
    }
    .merken-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
    }
    .merken-grid span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-dim);
      padding: 0.4rem 1rem;
      border: 1px solid rgba(42,184,160,0.12);
      transition: color 0.2s, border-color 0.2s;
      cursor: default;
    }
    .merken-grid span:hover { color: var(--teal-glow); border-color: rgba(46,232,200,0.3); }
    .merken-rij-cta { text-align: center; margin-top: 1.5rem; }

    /* ─── ANIMATIONS ──────────────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease forwards;
    }

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

    .fade-in:nth-child(1) { animation-delay: 0.1s; }
    .fade-in:nth-child(2) { animation-delay: 0.2s; }
    .fade-in:nth-child(3) { animation-delay: 0.3s; }
    .fade-in:nth-child(4) { animation-delay: 0.4s; }
    .fade-in:nth-child(5) { animation-delay: 0.5s; }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .diensten-grid { grid-template-columns: 1fr 1fr; }
      .ai-cards { grid-template-columns: repeat(3, 1fr); }
      .hardware-layout { grid-template-columns: 1fr; }
      .usp-grid { grid-template-columns: repeat(2, 1fr); }
      .ai-collectie-header { grid-template-columns: 1fr; }
      .sector-blok { grid-template-columns: 1fr; }
      .sector-blok-reverse .sector-blok-img { order: 0; }
      .sector-blok-img { min-height: 200px; }
      .pricing-home-intro { grid-template-columns: 1fr; gap: 1rem; }
      .pricing-home-cards { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      /* NAV — hamburger */
      nav { padding: 1rem 1.5rem; }
      .nav-cta { display: none; }
      .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        z-index: 200;
      }
      .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
      }
      .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
      .hamburger.open span:nth-child(2) { opacity: 0; }
      .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

      .nav-links {
        display: none;
        position: fixed;
        top: 57px;
        left: 0; right: 0;
        background: rgba(7,10,15,0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(42,184,160,0.2);
        flex-direction: column;
        padding: 0.5rem 0;
        gap: 0;
        list-style: none;
        z-index: 99;
      }
      .nav-links.open { display: flex; }
      .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
      .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 0.1em;
      }
      .nav-links a::after { display: none; }

      /* HERO */
      section { padding: 4rem 1.5rem; }
      .hero { padding: 6rem 1.5rem 3rem; }

      /* AI CHIPS — 2 per rij */
      .ai-logos-row { gap: 0.75rem; }
      .ai-logo-chip {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
        padding: 1rem;
      }
      .ai-logo-chip img { width: 38px; height: 38px; }

      /* PRICING */
      .pricing-home-cards { grid-template-columns: 1fr; }
      .ph-card { padding: 1.5rem; }

      /* AI CARDS (expanded) */
      .ai-cards { grid-template-columns: 1fr 1fr; }

      /* USP */
      .usp-grid { grid-template-columns: 1fr 1fr; }

      /* FOOTER */
      footer { grid-template-columns: 1fr; }
      .footer-links { flex-wrap: wrap; gap: 0.75rem; }
    }
