﻿    /* ---------- SELF-HOSTED FONT ---------- */
    @font-face {
      font-family: 'Share Tech Mono';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/fonts/share-tech-mono-latin.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    /* ---------- DESIGN TOKENS (60-30-10) ---------- */

    /* SINGLE THEME — 60% Dust Grey + Amethyst (bg shades) · 30% Taupe shades (elements) · 10% Royal Blue */
    :root {
      /* 60% — Dust Grey main bg + Amethyst dark alt-sections */
      --bg:           #E4D6D4;        /* Dust Grey — main bg */
      --bg-rgb:       228, 214, 212;
      --bg-deep:      #2E0750;        /* Dark Amethyst — alt dark sections */
      --bg-light:     #F0E5E3;        /* lighter dust */

      /* 30% — zelfde hue als bg (Dust Grey), klein beetje donkerder voor cards */
      --surface:      #D6C8C6;        /* main — bg minus ~12 lightness */
      --surface-2:    #D6C8C6;
      --surface-3:    #D6C8C6;
      --border:       rgba(46,7,80,0.18);

      /* 10% — Royal Blue accent */
      --accent:       #4D73D3;
      --accent-rgb:   77, 115, 211;
      --accent-warm:  #7C9EE8;        /* lighter royal blue for gradient depth */
      --accent-warm-rgb: 124, 158, 232;

      --text:         #2E0750;        /* Dark Amethyst — text on dust grey bg */
      --text-muted:   rgba(46,7,80,0.72);
      --text-soft:    rgba(46,7,80,0.5);

      /* Text on taupe surface (mid-tone — dark text reads well) */
      --text-on-surface:       #2E0750;
      --text-on-surface-muted: rgba(46,7,80,0.72);
      --text-on-surface-soft:  rgba(46,7,80,0.5);

      /* Text on dark amethyst sections (process, footer if used) */
      --text-on-dark:       #E4D6D4;
      --text-on-dark-muted: rgba(228,214,212,0.72);
      --text-on-dark-soft:  rgba(228,214,212,0.5);

      /* CTA = solid dark amethyst, no gradient */
      --cta-bg:       #2E0750;
      --cta-text:     #E4D6D4;
      --cta-text-soft: rgba(228,214,212,0.85);
      --cta-btn-bg:   #4D73D3;
      --cta-btn-text: #E4D6D4;

      /* No shadows — fully flat */
      --shadow:       none;
      --shadow-glow:  none;

      --input-bg:     #F0E5E3;

      /* Icon colors — DEFAULT palette (icons on Dust Grey bg → need dark fills) */
      --ico-bright:   #4D73D3;        /* royal blue */
      --ico-mid:      #2E0750;        /* dark amethyst main */
      --ico-shadow:   #1A0330;
      --ico-deep:     #0F0119;
      --ico-cream:    #AB9080;        /* taupe accent */
      --ico-dark:     #1A0330;
      --ico-purple:   #4D73D3;

      /* Accent splash kleuren — voor variatie binnen iconen, naast theme-base */
      --ico-teal:     #43C6AC;
      --ico-yellow:   #FFD24A;
      --ico-coral:    #FF8A5A;
      --ico-mint:     #7BC865;
      --ico-rose:     #E85F8C;
      --ico-sky:      #7C9EE8;

      --radius-sm: 8px;
      --radius:    12px;
      --radius-lg: 18px;
      --container: 1200px;
    }

    /* ---------- RESET ---------- */
    * { margin:0; padding:0; box-sizing:border-box; }

    html {
      /* smooth scroll is handled in JS (script.js) met custom easing */
      scroll-padding-top: 80px;     /* offset for sticky header */
    }

    body {
      font-family: 'Calibri', 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      letter-spacing: 0.1px;
      line-height: 1.5;
      transition: background-color 0.3s ease, color 0.3s ease;
      position: relative;
      min-height: 100vh;
    }

    /* Share Tech Mono for nav, logo, eyebrows, section labels */
    .mono,
    nav a,
    .nav-cta,
    .logo-mark,
    .logo-sub,
    .eyebrow,
    .step-num,
    .step-duration,
    .project-tech li,
    .tech-pill strong {
      font-family: 'Share Tech Mono', 'Courier New', monospace;
    }

    /* ---- TEXT SELECTION (theme-aware) ---- */
    ::selection {
      background: rgba(var(--accent-rgb), 0.45);
      color: var(--text);
      text-shadow: none;
    }
    ::-moz-selection {
      background: rgba(var(--accent-rgb), 0.45);
      color: var(--text);
    }

    /* Flat — no ambient gradient */
    body::before { display: none; }

    .container {
      width: 90%;
      max-width: var(--container);
      margin: 0 auto;
    }

    img { max-width:100%; display:block; }
    a { color: inherit; }

    /* ---------- TYPOGRAPHY ---------- */
    h1, h2, h3, h4 {
      letter-spacing: -0.5px;
      line-height: 1.15;
      color: var(--text);
    }

    h2 { font-size: clamp(32px, 4vw, 48px); }
    h3 { font-size: 22px; }

    p {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.75;
    }

    /* WizardZ-style solid pill: royal blue bg + dust grey text, sharp corners */
    .eyebrow {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 6px;
      background: var(--accent);
      border: none;
      color: var(--text-on-dark);
      font-size: 15px;
      letter-spacing: 0.5px;
      text-transform: none;
      margin-bottom: 22px;
      font-weight: 700;
    }

.section-title {
      max-width: 720px;
      margin-bottom: 60px;
    }

    .section-title h2 { margin-bottom: 16px; }
    .section-title p { font-size: 18px; }

    /* ---------- HEADER ---------- */
    header {
      position: sticky;
      top: 0;
      background: rgba(var(--bg-rgb), 0.85);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      z-index: 100;
      transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .logo {
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
      line-height: 1;
    }

    .logo-mark {
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 4px;
      color: var(--text);
    }

    .logo-sub {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 4px;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .logo-sub::before,
    .logo-sub::after {
      content: "";
      display: inline-block;
      width: 10px;
      height: 1.5px;
      background: var(--accent);
      border-radius: 2px;
    }

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

    nav a {
      color: var(--text-muted);
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 15px;
      transition: all 0.25s ease;
      letter-spacing: 0.4px;
    }

    nav a:hover {
      color: var(--accent);
      background: rgba(var(--accent-rgb),0.1);
    }

    nav .nav-cta {
      background: var(--accent);
      color: var(--bg-deep);
      font-weight: 600;
      margin-left: 8px;
    }

nav .nav-cta:hover {
      background: var(--text);
      color: var(--bg);
      transform: translateY(-1px);
    }

    /* ---------- HERO ---------- */
    .hero {
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* Hero corner blobs replaced by .mesh class (see ANIMATIONS section) */

    .hero-content {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
    }

    .hero h2 {
      font-size: clamp(40px, 5.5vw, 64px);
      line-height: 1.05;
      margin-bottom: 24px;
      font-weight: 700;
    }

    .hero h2 span {
      display: inline-block;
      color: var(--accent);
    }

.hero p.lead {
      font-size: 19px;
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 540px;
    }

    .buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 26px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      border: none;
      font-family: inherit;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--text-on-dark);
      border-radius: 8px;
    }

    .btn-primary:hover {
      background: var(--accent-warm);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--text);
      border-radius: 8px;
    }

    .btn-secondary:hover {
      background: var(--text);
      color: var(--bg);
      transform: translateY(-1px);
    }

    /* Ghost: zachte variant — onderlijn-only style die past bij flat sharp design */
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1.5px dashed var(--text);
      border-radius: 4px;
      padding: 12px 22px;
    }
    .btn-ghost:hover {
      background: var(--text);
      color: var(--bg);
      border-style: solid;
      transform: translateY(-2px);
    }

    /* CTA onder een sectie met cards — gecentreerd onder de grid */
    .section-cta {
      display: flex;
      justify-content: center;
      margin-top: 48px;
      position: relative;
      z-index: 2;
    }
    @media (max-width: 700px) {
      .section-cta { margin-top: 32px; }
    }

    .hero-meta {
      display: flex;
      gap: 32px;
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid var(--border);
    }

    .hero-meta .item h4 {
      font-size: 28px;
      color: var(--accent);
      margin-bottom: 4px;
    }

.hero-meta .item p {
      font-size: 13px;
      color: var(--text-soft);
      letter-spacing: 0.6px;
      text-transform: uppercase;
    }

    /* ---------- DASHBOARD MOCK ---------- */
    .dashboard {
      background: var(--bg-deep);            /* solid dark amethyst */
      border: 1.5px solid var(--bg-deep);
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      z-index: 1;
      color: var(--text-on-dark);
    }

    .dashboard::before { display: none; }

    .dashboard-top,
    .dashboard-content { position: relative; z-index: 1; }

    .dashboard-top {
      padding: 14px 20px;
      border-bottom: 1.5px solid rgba(228,214,212,0.15);
      display: flex;
      gap: 8px;
      background: var(--bg-deep);
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .red    { background: #ff5f57; }
    .yellow { background: var(--accent); }
    .green  { background: #28c840; }

    .dashboard-content { padding: 28px; }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 22px;
    }

    .card {
      background: var(--bg-deep);
      padding: 20px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
    }

    .card p {
      font-size: 12px;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .card h3 {
      font-size: 28px;
      color: var(--text);
    }

    .card .delta {
      font-size: 12px;
      color: var(--accent);
      margin-top: 4px;
    }

.chart {
      background: var(--bg-deep);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      padding: 22px;
    }

    .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 18px;
    }

    .chart-header p {
      font-size: 13px;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .chart-header span {
      color: var(--accent);
      font-size: 14px;
      font-weight: 600;
    }

.bars {
      display: flex;
      gap: 8px;
      align-items: flex-end;
      height: 90px;
    }

    .bar {
      flex: 1;
      background: var(--accent);
      opacity: 1;
    }

    /* ---------- TRUSTED / LOGO BAR ---------- */
    .trust {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust p {
      text-align: center;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 24px;
    }

    .trust-row {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .trust-row span {
      color: var(--text-muted);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
      opacity: 0.5;
      transition: opacity 0.3s;
    }

    .trust-row span:hover { opacity: 1; }

    /* ---------- SERVICES ---------- */
    .services { padding: 120px 0; }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* WizardZ-style cards: sharp, alternating, no shadow */
    .service-card {
      background: var(--surface);                 /* taupe = light variant */
      border: 1.5px solid var(--text);
      padding: 32px 28px;
      border-radius: 16px;
      transition: transform 0.25s ease;
      position: relative;
      overflow: hidden;
      color: var(--text-on-surface);
    }

    /* Alternating: every 2nd card is dark amethyst */
    .service-grid .service-card:nth-child(even) {
      background: var(--bg-deep);
      border-color: var(--bg-deep);
      color: var(--text-on-dark);
    }
    .service-grid .service-card:nth-child(even) h3 { color: var(--text-on-dark); }
    .service-grid .service-card:nth-child(even) p { color: var(--text-on-dark-muted); }
    .service-grid .service-card:nth-child(even) ul li { color: var(--text-on-dark-muted); }
    .service-grid .service-card:nth-child(even) ul li::before { color: var(--accent); }
    .service-grid .service-card:nth-child(even) {
      --ico-bright:   #E4D6D4;
      --ico-mid:      #4D73D3;
      --ico-shadow:   #3D5BAE;
      --ico-deep:     #1A0330;
      --ico-cream:    #E4D6D4;
      --ico-dark:     #1A0330;
      --ico-purple:   #4D73D3;
    }

    .service-card:hover { transform: translateY(-3px); }

    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(var(--accent-rgb),0.14);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 24px;
      position: relative;
    }

.service-card h3 { margin-bottom: 12px; position: relative; }
    .service-card p  { position: relative; margin-bottom: 18px; }

    .service-card ul {
      list-style: none;
      position: relative;
    }

    .service-card ul li {
      color: var(--text-muted);
      font-size: 14px;
      padding: 6px 0;
      padding-left: 22px;
      position: relative;
    }

    .service-card ul li::before {
      content: "→";
      color: var(--accent);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

/* ---------- PROCESS ---------- */
    .process {
      padding: 100px 0;
      background: var(--bg-deep);  /* subtle bg shade for visual rhythm (60% in shades) */
      position: relative;
      overflow: hidden;
    }

    .process::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 120%;
      height: 200%;
      background:
        radial-gradient(ellipse at 20% 30%, rgba(var(--accent-rgb),0.10) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(var(--accent-warm-rgb),0.08) 0%, transparent 45%);
      pointer-events: none;
    }

    .process .container { position: relative; z-index: 1; }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .step { position: relative; }

    .step-num {
      font-size: 48px;
      color: var(--accent);
      font-weight: 700;
      line-height: 1;
      margin-bottom: 16px;
      opacity: 0.9;
    }

.step h3 { font-size: 18px; margin-bottom: 10px; }
    .step p  { font-size: 14px; line-height: 1.7; }

    /* ---------- TESTIMONIALS ---------- */
    .testimonials { padding: 120px 0; }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .testimonial {
      background: var(--surface);
      border: 1.5px solid var(--text);
      padding: 32px;
      border-radius: 16px;
      position: relative;
    }

.testimonial::before {
      content: "“";
      position: absolute;
      top: 10px;
      right: 30px;
      font-size: 100px;
      color: var(--accent);
      opacity: 0.25;
      line-height: 1;
      font-family: Georgia, serif;
    }

    .testimonial blockquote {
      font-size: 17px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial .author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bg-deep);
      font-weight: 700;
    }

.author-info strong {
      display: block;
      color: var(--text);
      font-size: 15px;
    }

    .author-info span {
      color: var(--text-soft);
      font-size: 13px;
    }

    /* ---------- CTA ---------- */
    .cta { padding: 80px 0 140px; }

    .cta-box {
      background: var(--cta-bg);              /* solid dark amethyst */
      padding: 56px 48px;
      border-radius: 16px;
      color: var(--cta-text);
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    /* Flat — no glow blobs behind CTA */
    .cta-box::before,
    .cta-box::after { display: none; }

    .cta-box h2 {
      color: var(--cta-text);
      font-size: clamp(28px, 3vw, 38px);
      margin-bottom: 14px;
      position: relative;
    }

    .cta-box p {
      color: var(--cta-text-soft);
      font-size: 17px;
      position: relative;
    }

    .cta-box .buttons {
      justify-content: flex-end;
      position: relative;
    }

    .cta-box .btn-primary {
      background: var(--cta-btn-bg);
      color: var(--cta-btn-text);
      box-shadow: none;
    }

    .cta-box .btn-primary:hover {
      filter: brightness(0.95);
    }

    /* ---------- CONTACT ---------- */
    .contact { padding: 100px 0; }

    .contact-box {
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 16px;
      padding: 44px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }

.contact h2 { margin-bottom: 16px; }
    .contact p  { line-height: 1.7; }

    .contact-info {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contact-info .item {
      display: flex;
      gap: 14px;
      align-items: center;
      color: var(--text-muted);
      font-size: 15px;
    }

    .contact-info .icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(var(--accent-rgb),0.14);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    label {
      font-size: 13px;
      color: var(--text-soft);
      margin-bottom: -8px;
      letter-spacing: 0.5px;
    }

    input, textarea {
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--input-bg);
      color: var(--text);
      outline: none;
      font-family: inherit;
      font-size: 15px;
      transition: border-color 0.25s;
    }

    input::placeholder, textarea::placeholder { color: var(--text-soft); }

    input:focus, textarea:focus { border-color: var(--accent); }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    /* ---------- FOOTER ---------- */
    footer {
      padding: 50px 0 30px;
      border-top: 1px solid var(--border);
      background: var(--bg-deep);
      color: var(--text-on-dark);
    }

    footer p,
    footer .footer-brand p,
    footer .footer-col a,
    footer .footer-bottom { color: var(--text-on-dark-muted); }
    footer .footer-col h4 { color: var(--text-on-dark-soft); }
    footer .footer-col a:hover { color: var(--accent); }
    footer .footer-bottom { border-color: rgba(228,214,212,0.15); }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      max-width: 320px;
    }

    .footer-col h4 {
      font-size: 13px;
      color: var(--text-soft);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-col a {
      display: block;
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 0;
      font-size: 14px;
      transition: color 0.25s;
    }

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

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 13px;
      color: var(--text-soft);
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 900px) {
      .hero { padding: 60px 0; }
      .hero-content,
      .service-grid,
      .stats,
      .testimonial-grid,
      .contact-box,
      .cta-box,
      .footer-grid { grid-template-columns: 1fr; }

      .process-grid { grid-template-columns: repeat(2, 1fr); }

      .cta-box { padding: 40px 30px; }
      .cta-box .buttons { justify-content: flex-start; }

      .contact-box { padding: 30px; }

      .hero-meta { flex-wrap: wrap; gap: 18px; }
    }

    /* ---------- ANIMATIONS / TRANSITIONS ---------- */

    [data-reveal] {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    [data-reveal].is-revealed {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal="fade"]  { transform: none; }
    [data-reveal="left"]  { transform: translateX(-32px); }
    [data-reveal="left"].is-revealed  { transform: translateX(0); }
    [data-reveal="right"] { transform: translateX(32px); }
    [data-reveal="right"].is-revealed { transform: translateX(0); }
    [data-reveal="scale"] { transform: scale(0.94); }
    [data-reveal="scale"].is-revealed { transform: scale(1); }

    .stagger > *:nth-child(1) { --reveal-delay: 0ms; }
    .stagger > *:nth-child(2) { --reveal-delay: 90ms; }
    .stagger > *:nth-child(3) { --reveal-delay: 180ms; }
    .stagger > *:nth-child(4) { --reveal-delay: 270ms; }
    .stagger > *:nth-child(5) { --reveal-delay: 360ms; }
    .stagger > *:nth-child(6) { --reveal-delay: 450ms; }

    @media (prefers-reduced-motion: reduce) {
      [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
      }
    }

    /* View transitions for HTMX boost */
    @view-transition { navigation: auto; }

    ::view-transition-old(root) { animation: 0.2s cubic-bezier(0.4, 0, 1, 1) both fade-out; }
    ::view-transition-new(root) { animation: 0.35s cubic-bezier(0, 0, 0.2, 1) both fade-in; }

    @keyframes fade-out { to { opacity: 0; transform: translateY(-8px); } }
    @keyframes fade-in  { from { opacity: 0; transform: translateY(12px); } }

    /* Active nav link */
    nav a.is-active {
      color: var(--accent);
      background: rgba(var(--accent-rgb), 0.1);
    }

    /* Floating gradient blobs */
    @keyframes float-blob {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-20px, 30px); }
    }

    /* Mesh blob now handles hero atmospheric gradient (animated via mesh-shift) */

    /* Page enter animation */
    main {
      animation: page-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    @keyframes page-in {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    body.htmx-request main {
      opacity: 0.55;
      transition: opacity 0.2s ease;
    }

    /* Logo mark micro-interaction */
    .logo .logo-mark { transition: letter-spacing 0.3s ease; }
    .logo:hover .logo-mark { letter-spacing: 8px; }

    /* ---------- INTERNAL PAGE HERO ---------- */
    .page-hero {
      padding: 100px 0 60px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    /* Page-hero atmospheric gradient handled by .mesh class */

    .page-hero .container { position: relative; z-index: 1; }

    .page-hero h1 {
      font-size: clamp(40px, 5.5vw, 64px);
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .page-hero h1 .grad {
      display: inline-block;
      color: var(--accent);
    }

.page-hero p.lead {
      font-size: 19px;
      max-width: 640px;
      margin: 0 auto;
      color: var(--text-muted);
    }

    /* ---------- SERVICE DETAIL BLOCK ---------- */
    .service-detail {
      padding: 100px 0;
      border-bottom: 1px solid var(--border);
    }
    .service-detail:last-of-type { border-bottom: none; }

    .service-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }

    .service-detail.alt .service-detail-grid {
      grid-template-columns: 1.1fr 1fr;
    }
    .service-detail.alt .service-detail-text   { order: 2; }
    .service-detail.alt .service-detail-visual { order: 1; }

    .service-detail h2 {
      font-size: clamp(28px, 3.5vw, 40px);
      margin-bottom: 18px;
    }

    .service-detail p { font-size: 17px; margin-bottom: 24px; }

    .service-detail .features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 24px;
      list-style: none;
    }

    .service-detail .features li {
      color: var(--text-muted);
      font-size: 15px;
      padding-left: 26px;
      position: relative;
      line-height: 1.6;
    }

    .service-detail .features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .service-detail-visual {
      background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 50px 40px;
      position: relative;
      overflow: hidden;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Flat — no gradient blob behind big icons */
    .service-detail-visual::before { display: none; }

    .visual-emoji {
      font-size: 120px;
      position: relative;
      z-index: 1;
      opacity: 1;
    }

    @media (max-width: 900px) {
      .service-detail-grid,
      .service-detail.alt .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
      .service-detail.alt .service-detail-text   { order: 0; }
      .service-detail.alt .service-detail-visual { order: 0; }
      .service-detail .features { grid-template-columns: 1fr; }
    }

    /* ---------- TIMELINE (Aanpak page) ---------- */
    .timeline {
      padding: 60px 0 120px;
      position: relative;
    }

    .timeline-list {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      padding-left: 60px;
    }

    .timeline-list::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom,
        transparent,
        rgba(var(--accent-rgb), 0.5) 10%,
        rgba(var(--accent-rgb), 0.5) 90%,
        transparent);
    }

    .timeline-step {
      position: relative;
      padding: 0 0 56px 0;
    }
    .timeline-step:last-child { padding-bottom: 0; }

    .timeline-step::before {
      content: "";
      position: absolute;
      left: -47px;
      top: 6px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: none;
    }

    .timeline-step .step-label {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .timeline-step h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .timeline-step p {
      font-size: 15px;
      margin-bottom: 14px;
    }

    .timeline-step .duration {
      font-size: 12px;
      color: var(--text-soft);
      display: inline-block;
      padding: 4px 12px;
      border: 1px solid var(--border);
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    @media (max-width: 700px) {
      .timeline-list { padding-left: 40px; }
      .timeline-step::before { left: -32px; }
    }

    /* ---------- TECH STACK ---------- */
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 14px;
      margin-top: 40px;
    }

    .tech-pill {
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 10px;
      padding: 18px;
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      transition: all 0.25s ease;
    }

    .tech-pill:hover {
      border-color: rgba(var(--accent-rgb), 0.4);
      color: var(--text);
      transform: translateY(-3px);
    }

    .tech-pill strong {
      display: block;
      color: var(--text);
      font-size: 16px;
      margin-bottom: 4px;
      font-weight: 600;
    }

    /* ---------- BIG STATS ---------- */
    .big-stats {
      padding: 80px 0;
    }

    .big-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }

    .big-stat {
      text-align: center;
      padding: 30px;
    }

    .big-stat .num {
      font-size: clamp(48px, 6vw, 76px);
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 10px;
    }

    .big-stat .label {
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* ---------- FAQ ---------- */
    .faq {
      padding: 40px 0 100px;
      max-width: 800px;
      margin: 0 auto;
    }

    details.faq-item {
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 12px;
      padding: 0;
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }

    details.faq-item[open] {
      border-color: rgba(var(--accent-rgb), 0.4);
    }

    details.faq-item summary {
      padding: 20px 24px;
      cursor: pointer;
      font-weight: 600;
      font-size: 16px;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

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

    details.faq-item summary::after {
      content: "+";
      color: var(--accent);
      font-size: 26px;
      font-weight: 400;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    details.faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    details.faq-item .faq-body {
      padding: 0 24px 22px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    /* ---------- ICONS (chunky flat vector — large & graphical) ---------- */
    .ico {
      width: 64px;
      height: 64px;
      display: inline-block;
      vertical-align: middle;
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .ico-lg  { width: 140px; height: 140px; }
    .ico-xl  { width: 220px; height: 220px; }
    .ico-2xl { width: 320px; height: 320px; }

    /* Service-icon: now BIG and graphical, no bg block */
    .service-icon {
      width: auto;
      height: auto;
      background: none;
      padding: 0;
      margin-bottom: 16px;
      color: inherit;
      font-size: 0;
      display: block;
      overflow: visible;
      position: relative;
    }

    /* Still shadow under the floating icon — icon zit ~10px naar links genudged */
    .service-icon::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: calc(50% - 10px);
      transform: translateX(-50%);
      width: 55%;
      height: 8px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.22) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    /* big-icon variant: icon is gecentreerd, shadow ook gecentreerd */
    .service-card.big-icon .service-icon::after {
      left: 50%;
    }

    /* Raket: geen wrapper-shadow want hij is "onderweg" */
    .service-card.is-rocket .service-icon::after { display: none; }

    /* Raket-launch animatie — meer "stuwkracht" dan andere icons */
    .service-card.is-rocket .service-icon .ico {
      animation: rocket-launch 2.4s ease-in-out infinite !important;
      overflow: visible;
    }
    @keyframes rocket-launch {
      0%, 100% { translate: 0 0; }
      50%      { translate: 0 -12px; }
    }

    /* Vlam flikkert + pulseert */
    .rocket-flame {
      transform-origin: 60px 82px;
      animation: rocket-flame-flicker 0.18s ease-in-out infinite alternate;
    }
    @keyframes rocket-flame-flicker {
      from { transform: scaleY(0.94) scaleX(0.97); opacity: 0.95; }
      to   { transform: scaleY(1.10) scaleX(1.05); opacity: 1;    }
    }

    /* Speed-lines snel pulseren — onderstreept beweging */
    .rocket-streaks {
      animation: rocket-streaks-fade 0.6s ease-in-out infinite alternate;
    }
    @keyframes rocket-streaks-fade {
      from { opacity: 0.3; }
      to   { opacity: 1;   }
    }

    @media (prefers-reduced-motion: reduce) {
      .rocket-flame, .rocket-streaks { animation: none !important; }
    }

    /* ============================================================
       AUTO — rijdt L→R, wielen draaien
       ============================================================ */
    .service-card.is-car .service-icon::after { display: none; }
    .service-card.is-car .service-icon .ico {
      animation: none !important;   /* geen extra bob op de wrapper */
      overflow: visible;
    }

    /* Hele auto traverseert van links naar rechts en wraps */
    .car-traverse {
      animation: car-drive 4.2s linear infinite;
    }
    @keyframes car-drive {
      0%   { transform: translateX(-90px); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      100% { transform: translateX(90px);  opacity: 0; }
    }

    /* Wielen — eigen rotatie rond hun midden */
    .car-wheel-rear,
    .car-wheel-front {
      transform-box: fill-box;
      transform-origin: center;
      animation: car-wheel-spin 0.45s linear infinite;
    }
    @keyframes car-wheel-spin {
      to { transform: rotate(360deg); }
    }

    /* Speed-streaks subtiele pulse — extra suggestie van snelheid */
    .car-streaks {
      animation: car-streaks-pulse 0.5s ease-in-out infinite alternate;
    }
    @keyframes car-streaks-pulse {
      from { opacity: 0.5; transform: translateX(-2px); }
      to   { opacity: 1;   transform: translateX(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .car-traverse, .car-wheel-rear, .car-wheel-front, .car-streaks {
        animation: none !important;
      }
    }

    /* ============================================================
       PLANT — zwaait + blaadjes ademen (groei-metafoor)
       ============================================================ */
    .is-plant .ico { animation: none !important; overflow: visible; }

    /* Plant zwaait zachtjes rond pot-basis */
    .plant-sway {
      transform-box: fill-box;
      transform-origin: 60px 84px;     /* basis aan pot-rand */
      animation: plant-sway 4.5s ease-in-out infinite alternate;
    }
    @keyframes plant-sway {
      from { transform: rotate(-3deg); }
      to   { transform: rotate(3deg);  }
    }

    /* Blaadjes ademen — elk een eigen fase voor levend gevoel */
    .leaf {
      transform-box: fill-box;
      transform-origin: center;
      animation: leaf-breathe 3.2s ease-in-out infinite alternate;
    }
    .leaf-1 { animation-delay: 0s;    }
    .leaf-2 { animation-delay: 0.5s;  }
    .leaf-3 { animation-delay: 1.0s;  }
    .leaf-4 { animation-delay: 1.5s;  animation-duration: 4s; }   /* bloem iets trager */
    @keyframes leaf-breathe {
      from { transform: scale(0.88); }
      to   { transform: scale(1.06); }
    }

    @media (prefers-reduced-motion: reduce) {
      .plant-sway, .leaf { animation: none !important; }
    }

    .service-icon .ico {
      width: 200px;
      height: 200px;
      margin-left: -10px;       /* nudge so it doesn't crop on left padding */
      position: relative;
      z-index: 1;
    }

    /* Playful rotation per card position (scherp blijft, alleen lichte tilt) */
    .service-grid > .service-card:nth-child(3n+1) .service-icon .ico { transform: rotate(-4deg); }
    .service-grid > .service-card:nth-child(3n+2) .service-icon .ico { transform: rotate(3deg); }
    .service-grid > .service-card:nth-child(3n+3) .service-icon .ico { transform: rotate(-2deg); }

    .service-card:hover .service-icon .ico {
      transform: rotate(0deg) scale(1.06);
    }

    /* Subtle float for service-card icons (alternating direction) */
    .service-grid > .service-card:nth-child(odd)  .service-icon .ico { animation: ico-float-a 5.5s ease-in-out infinite; }
    .service-grid > .service-card:nth-child(even) .service-icon .ico { animation: ico-float-b 6s ease-in-out infinite; }

    @keyframes ico-float-a {
      0%, 100% { translate: 0 0; }
      50%      { translate: 0 -6px; }
    }
    @keyframes ico-float-b {
      0%, 100% { translate: 0 0; }
      50%      { translate: 0 4px; }
    }

    /* Big visual icon (service-detail pages) — huge, floating, no bg card */
    .visual-emoji {
      font-size: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .visual-emoji .ico {
      width: clamp(280px, 38vw, 480px) !important;
      height: clamp(280px, 38vw, 480px) !important;
      transform: rotate(-5deg);
      animation: ico-float-big 7s ease-in-out infinite;
    }

    .service-detail.alt .visual-emoji .ico {
      transform: rotate(5deg);
      animation: ico-float-big 7s ease-in-out infinite 1.2s;
    }

    .service-detail:hover .visual-emoji .ico {
      transform: rotate(0deg) scale(1.04);
    }

    @keyframes ico-float-big {
      0%, 100% { translate: 0 0; }
      50%      { translate: 0 -12px; }
    }

    /* Service-detail visual: kill the bg card, let icon float */
    .service-detail-visual {
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      padding: 30px !important;
      min-height: auto !important;
      position: relative;
      overflow: visible;
    }
    .service-detail-visual::before { display: none !important; }

    /* Decorative sparkles around big icons */
    .visual-emoji {
      position: relative;
    }
    /* Sharp vector accents around big icons (no glow, hard shapes) */
    .visual-emoji::before {
      content: "";
      position: absolute;
      width: 16px;
      height: 16px;
      top: 10%;
      right: 8%;
      background: var(--accent);
      transform: rotate(45deg);
      animation: sparkle-pulse 4s ease-in-out infinite;
    }
    .visual-emoji::after {
      content: "";
      position: absolute;
      width: 24px;
      height: 24px;
      bottom: 14%;
      left: 6%;
      background: var(--accent-warm);
      border-radius: 50%;
      animation: sparkle-pulse 4s ease-in-out infinite 1.5s;
    }

    @keyframes sparkle-pulse {
      0%, 100% { opacity: 1; }
      50%      { opacity: 0.5; }
    }

    @media (max-width: 900px) {
      .service-icon .ico { width: 160px; height: 160px; }
    }

    /* Background decoration icons */
    .bg-deco {
      position: absolute;
      pointer-events: none;
      opacity: 0.08;
      z-index: 0;
      filter: blur(0.5px);
    }

.bg-deco--tr { top: -40px;  right: -40px; }
    .bg-deco--bl { bottom: -40px; left: -40px; }
    .bg-deco--tl { top: -40px;  left: -40px; }
    .bg-deco--br { bottom: -40px; right: -40px; }

    @keyframes bg-float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      50%      { transform: translate(-12px, 16px) rotate(4deg); }
    }
    .bg-deco { animation: bg-float 14s ease-in-out infinite; }
    .bg-deco--bl, .bg-deco--br { animation-direction: reverse; animation-duration: 18s; }

    /* ---------- ANIMATED MESH GRADIENT ---------- */
    @property --mesh-p1x { syntax: '<percentage>'; initial-value: 20%; inherits: false; }
    @property --mesh-p1y { syntax: '<percentage>'; initial-value: 30%; inherits: false; }
    @property --mesh-p2x { syntax: '<percentage>'; initial-value: 80%; inherits: false; }
    @property --mesh-p2y { syntax: '<percentage>'; initial-value: 70%; inherits: false; }
    @property --mesh-p3x { syntax: '<percentage>'; initial-value: 60%; inherits: false; }
    @property --mesh-p3y { syntax: '<percentage>'; initial-value: 20%; inherits: false; }
    @property --mesh-rot { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

    .mesh {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    /* Flat — no mesh */
    .mesh::before { display: none; }

@keyframes mesh-shift {
      0% {
        --mesh-p1x: 20%; --mesh-p1y: 30%;
        --mesh-p2x: 80%; --mesh-p2y: 70%;
        --mesh-p3x: 60%; --mesh-p3y: 20%;
      }
      33% {
        --mesh-p1x: 70%; --mesh-p1y: 50%;
        --mesh-p2x: 30%; --mesh-p2y: 30%;
        --mesh-p3x: 20%; --mesh-p3y: 80%;
      }
      66% {
        --mesh-p1x: 50%; --mesh-p1y: 80%;
        --mesh-p2x: 60%; --mesh-p2y: 20%;
        --mesh-p3x: 90%; --mesh-p3y: 50%;
      }
      100% {
        --mesh-p1x: 20%; --mesh-p1y: 30%;
        --mesh-p2x: 80%; --mesh-p2y: 70%;
        --mesh-p3x: 60%; --mesh-p3y: 20%;
      }
    }

    /* Conic gradient ring (animated rotation) — for buttons / accents */
    @keyframes conic-spin {
      to { --mesh-rot: 360deg; }
    }

    /* Flat — no conic ring */
    .conic-ring { display: none; }

    /* Hero: keep corner blobs AND let mesh overlay */
    .hero {
      background: transparent;
    }
    .hero > .container {
      position: relative;
      z-index: 1;
    }

    .hero.mesh::before { inset: -5%; opacity: 1; }
    .page-hero.mesh::before { inset: -10%; }

    /* CTA box gets a moving conic ring underneath */
    .cta-box {
      position: relative;
      isolation: isolate;
    }
    .cta-box .conic-ring {
      inset: -30%;
      mix-blend-mode: screen;
      opacity: 0.85;
    }

    /* Reduced motion: disable mesh animation */
    @media (prefers-reduced-motion: reduce) {
      .mesh::before, .conic-ring, .bg-deco, body::before,
      .service-icon .ico, .visual-emoji .ico,
      .visual-emoji::before, .visual-emoji::after {
        animation: none !important;
      }
    }

    /* ---- SECTION DIVIDERS (sharp solid line + accent square) ---- */
    .section-divider {
      position: relative;
      height: 1.5px;
      width: min(960px, 80%);
      margin: 0 auto;
      background: var(--text);
      opacity: 0.15;
    }

    .section-divider::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      background: var(--accent);
    }

    /* ============================================================
       ONE-PAGE LAYOUT — Hero graphic, project grid, light CTA, deco
       ============================================================ */

    /* ---- HERO GRAPHIC (big icon + rings + sparkles) ---- */
    .hero-graphic {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      max-width: 520px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
    }

    .hero-rings {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      animation: rings-rotate 60s linear infinite;
    }

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

    .hero-icon {
      position: relative;
      width: 68%;
      height: 68%;
      z-index: 2;
      animation: ico-float-big 7s ease-in-out infinite;
    }

    /* ---- DECORATIVE SHAPES (dots / stars / diamonds) ---- */
    .deco {
      position: absolute;
      pointer-events: none;
      z-index: 3;
    }

    .deco-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--accent);
    }

    .deco-diamond {
      width: 18px;
      height: 18px;
      background: var(--accent);
      transform: rotate(45deg);
    }

    .deco-star {
      width: 22px;
      height: 22px;
      background: var(--accent);
      clip-path: polygon(
        50% 0%, 60% 35%, 100% 50%, 60% 65%,
        50% 100%, 40% 65%, 0% 50%, 40% 35%
      );
    }

    /* Hero deco positions */
    .deco-dot--1     { top: 8%;  left: 6%;  width: 16px; height: 16px; }
    .deco-dot--2     { bottom: 14%; right: 4%; width: 22px; height: 22px; background: var(--bg-deep); }
    .deco-star--1    { top: 2%; right: 8%; }
    .deco-star--2    { bottom: 6%; left: 8%; width: 16px; height: 16px; }
    .deco-diamond--1 { top: 50%; right: -2%; width: 14px; height: 14px; background: var(--bg-deep); }

    /* Decorative animation: gentle pulse */
    .deco-dot, .deco-star, .deco-diamond {
      animation: deco-pulse 3.5s ease-in-out infinite;
    }
    .deco-dot--2,
    .deco-star--2,
    .deco-diamond--1 { animation-delay: 1.5s; }

    @keyframes deco-pulse {
      0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
      50%      { opacity: 0.6; transform: scale(1.2) rotate(0deg); }
    }
    .deco-diamond { animation-name: deco-pulse-diamond; }
    @keyframes deco-pulse-diamond {
      0%, 100% { opacity: 1; transform: rotate(45deg) scale(1); }
      50%      { opacity: 0.6; transform: rotate(45deg) scale(1.2); }
    }

    /* Gecentreerde content op alle service-cards (icon + titel + tekst) */
    .service-card {
      text-align: center;
    }
    .service-card .service-icon {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* ---- BIG ICONS IN SERVICE CARDS ---- */
    .service-card.big-icon {
      padding-top: 28px;
    }
    .service-card.big-icon .service-icon {
      margin-bottom: 14px;
    }
    .service-card.big-icon .service-icon .ico {
      width: 240px;
      height: 240px;
      margin-left: 0;          /* gecentreerd, geen left-nudge meer */
    }

    @media (max-width: 900px) {
      .service-card.big-icon .service-icon .ico { width: 180px; height: 180px; }
    }

    /* ---- PROJECT GRID (2x2 cards with big icon background) ---- */
    .projecten-section { padding: 100px 0; }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 36px;                /* nette gelijkmatige ruimte alle kanten */
    }

    .project-card {
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 18px;
      padding: 48px 36px 36px;
      position: relative;
      overflow: hidden;
      color: var(--text-on-surface);
      transition: transform 0.25s ease;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .project-card:hover { transform: translateY(-4px); }

    /* Alternating dark variant */
    .project-card.alt {
      background: var(--bg-deep);
      border-color: var(--bg-deep);
      color: var(--text-on-dark);
    }
    .project-card.alt h3 { color: var(--text-on-dark); }
    .project-card.alt p  { color: var(--text-on-dark-muted); }
    .project-card.alt .project-tech li {
      background: rgba(228,214,212,0.10);
      color: var(--text-on-dark-muted);
      border-color: rgba(228,214,212,0.20);
    }

    /* Project icon palette per card type */
    .project-card {
      --ico-bright: #4D73D3;
      --ico-mid:    #2E0750;
      --ico-shadow: #1A0330;
      --ico-deep:   #0F0119;
      --ico-cream:  #E4D6D4;
      --ico-dark:   #1A0330;
      --ico-purple: #4D73D3;
    }
    .project-card.alt {
      --ico-bright: #E4D6D4;
      --ico-mid:    #4D73D3;
      --ico-shadow: #3D5BAE;
      --ico-deep:   #1A0330;
      --ico-cream:  #E4D6D4;
      --ico-dark:   #1A0330;
      --ico-purple: #4D73D3;
    }

    .project-card .eyebrow { margin-bottom: 16px; }

    .project-card h3 {
      font-size: 24px;
      margin-bottom: 14px;
      color: var(--text-on-surface);
    }

    .project-card p {
      font-size: 15px;
      line-height: 1.65;
      max-width: 100%;
      color: var(--text-on-surface-muted);
    }

    .project-tech {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;       /* tech-pills gecentreerd */
      gap: 6px;
      margin-top: 8px;
      margin-bottom: 18px;
      max-width: 100%;
    }
    .project-tech li {
      font-size: 12px;
      padding: 4px 10px;
      background: rgba(46,7,80,0.08);
      border: 1px solid rgba(46,7,80,0.15);
      border-radius: 4px;
      color: var(--text-on-surface-muted);
      letter-spacing: 0.3px;
    }

    .project-icon {
      position: relative;            /* flow-positioned, centered in flex column */
      order: -1;                     /* boven h3 + tech-pills */
      width: 180px;
      height: 180px;
      margin-bottom: 12px;
      z-index: 2;
    }
    .project-icon .ico {
      width: 100%;
      height: 100%;
      animation: ico-float-big 6.5s ease-in-out infinite;
      transform: rotate(-6deg);
      position: relative;
      z-index: 1;
    }

    /* Still shadow under the floating project icon */
    .project-icon::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 9px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.22) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .project-card.alt .project-icon .ico { transform: rotate(6deg); animation-delay: 1s; }

    .deco-star--card,
    .deco-dot--card,
    .deco-diamond--card {
      position: absolute;
      top: 36px;
      right: 36px;
      z-index: 4;
    }
    .deco-star--card { width: 18px; height: 18px; background: var(--accent); }
    .deco-dot--card  { width: 14px; height: 14px; background: var(--bg-deep); }
    .project-card.alt .deco-dot--card { background: var(--accent); }
    .deco-diamond--card { width: 16px; height: 16px; background: var(--accent); transform: rotate(45deg); }

    /* Wide variant — voor solo-cards (bv. 5e project in 2-col grid) */
    .project-card-wide {
      grid-column: 1 / -1;
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
    }

    @media (max-width: 900px) {
      .project-grid { grid-template-columns: 1fr; }
      .project-card p, .project-tech { max-width: 100%; }
      /* Project-icon blijft full-opacity & in flow — zelfde als desktop */
    }

    /* ---- BIG STEPS IN PROCESS ---- */
    .step.big-step {
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 14px;
      padding: 28px 24px;
      color: var(--text-on-surface);
      position: relative;
      text-align: center;
    }
    .step.big-step h3 { color: var(--text-on-surface); margin-bottom: 8px; font-size: 18px; }
    .step.big-step p  { color: var(--text-on-surface-muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
    .step.big-step .step-num {
      font-size: 56px;
      color: var(--accent);
      font-weight: 800;
      line-height: 1;
      margin: 0 auto 12px;
      display: inline-block;
    }
    .step.big-step .step-duration {
      display: inline-block;
      font-size: 12px;
      padding: 4px 10px;
      background: var(--accent);
      color: var(--text-on-dark);
      border-radius: 4px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }

    /* ---- LIGHT CTA (Let's make things happen) ---- */
    .cta-box.light-cta {
      background: var(--surface);
      border: 1.5px solid var(--text);
      color: var(--text-on-surface);
      margin: 24px 0;                /* extra ademruimte rondom de CTA-blok */
      grid-template-columns: 1.4fr 1fr;
      padding: 60px;
      align-items: center;
    }
    .cta-box.light-cta h2 { color: var(--text-on-surface); font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; }
    .cta-box.light-cta p  { color: var(--text-on-surface-muted); font-size: 17px; margin-bottom: 22px; }
    .cta-box.light-cta .eyebrow { margin-bottom: 14px; }

    .cta-graphic {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      max-width: 280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cta-icon {
      width: 80%;
      height: 80%;
      animation: ico-float-big 5s ease-in-out infinite;
    }
    .cta-graphic .deco-cta--1 { top: 8%;  right: 0%; width: 18px; height: 18px; }
    .cta-graphic .deco-cta--2 { bottom: 14%; left: 6%; width: 16px; height: 16px; }
    .cta-graphic .deco-cta--3 { top: 38%; left: -2%; width: 12px; height: 12px; background: var(--bg-deep); }

    /* Project card icon overrides icon palette via cascade — flat color shift */
    .projecten-section { background: transparent; }

    /* ---- WERKWIJZE STEPS GRID 2x2 on smaller screens ---- */
    @media (max-width: 900px) {
      .cta-box.light-cta { padding: 36px 30px; }
    }

    /* ============================================================
       SLOGAN, MARQUEE, ROBIN MASCOT
       ============================================================ */

    .hero-slogan {
      display: block;
      font-family: 'Share Tech Mono', monospace;
      font-size: 14px;
      letter-spacing: 2px;
      color: var(--accent);
      margin-top: 10px;
      margin-bottom: 22px;
      text-transform: uppercase;
    }

    /* High-contrast section labels (eyebrow override sharp + bold) */
    .eyebrow {
      letter-spacing: 1px;
      font-weight: 400;       /* Share Tech Mono looks balanced at regular weight */
      font-size: 14px;
    }

    /* ---- STATIC PROJECT STRIP (geen horizontale loop) ---- */
    .project-strip {
      width: 100%;
      padding: 28px 24px;
      border-top: 1.5px solid var(--text);
      border-bottom: 1.5px solid var(--text);
      background: var(--bg);
      position: relative;
    }

    .project-strip-track {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
      gap: 24px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .marquee-item {
      font-family: 'Share Tech Mono', monospace;
      font-size: 22px;
      letter-spacing: 2px;
      color: var(--text);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    a.marquee-item:hover,
    a.marquee-item:focus-visible {
      color: var(--accent);
      transform: translateY(-2px);
      outline: none;
    }

    /* Geen diamond-icoontjes meer in de project-strip */
    .project-strip-track .marquee-item::after { display: none; }

    /* ---- ROBIN MASCOT ---- */
    .robin {
      position: absolute;
      pointer-events: none;
      z-index: 4;
    }
    .robin svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .robin--hero {
      width: 90px;
      height: 90px;
      bottom: 4%;
      right: 12%;
      animation: robin-hop 3.5s ease-in-out infinite;
    }
    .robin--projecten {
      width: 56px;
      height: 56px;
      top: 16px;
      right: 18px;
      animation: robin-hop 4s ease-in-out infinite 0.5s;
    }
    .robin--cta {
      width: 80px;
      height: 80px;
      top: 10%;
      left: 5%;
      animation: robin-hop 3.8s ease-in-out infinite 1s;
    }

    @keyframes robin-hop {
      0%, 100% { translate: 0 0;  rotate: 0deg; }
      45%      { translate: 0 -8px; rotate: -3deg; }
      55%      { translate: 0 -8px; rotate: -3deg; }
    }

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

    /* ============================================================
       MOBILE NAV — fullscreen overlay (rewritten)
       ============================================================ */

    /* Hamburger button — only visible on mobile (z-index above overlay so X stays clickable) */
    .nav-toggle {
      display: none;
      width: 48px;
      height: 48px;
      background: transparent;
      border: 1.5px solid var(--text);
      border-radius: 10px;
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      color: var(--text);
      position: relative;
      z-index: 210;
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .nav-toggle:active { transform: scale(0.96); }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    }

    .nav-toggle[aria-expanded="true"] {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--text-on-dark);
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Lock scroll when overlay open */
    body.nav-open { overflow: hidden; }

    @media (max-width: 900px) {
      .nav-toggle { display: inline-flex; }

      /* backdrop-filter op header maakt een containing-block voor
         position:fixed descendants → overlay-nav krijgt dan max 80px hoogte.
         Op mobiel uitzetten zodat nav daadwerkelijk fullscreen kan zijn. */
      header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg);
      }

      /* Fullscreen overlay nav */
      nav {
        position: fixed;
        inset: 0;
        background: var(--bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: 100px 8% 60px;
        gap: 0;
        z-index: 200;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
      }

      nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
      }

      /* Decorative accent blob in overlay corner */
      nav::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        background: var(--accent);
        opacity: 0.10;
        border-radius: 50%;
        top: -80px;
        right: -80px;
        pointer-events: none;
        filter: blur(40px);
      }
      nav::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: var(--bg-deep);
        opacity: 0.15;
        border-radius: 50%;
        bottom: -60px;
        left: -60px;
        pointer-events: none;
        filter: blur(40px);
      }

      nav a {
        font-family: 'Share Tech Mono', monospace;
        font-size: 28px;
        font-weight: 400;
        letter-spacing: 2px;
        padding: 18px 0;
        text-align: left;
        color: var(--text);
        border-radius: 0;
        border: none;
        border-bottom: 1.5px solid var(--border);
        transition: color 0.2s ease, padding-left 0.25s ease;
        position: relative;
        z-index: 2;
      }
      nav a:last-of-type { border-bottom: 1.5px solid var(--border); }

      nav a:hover,
      nav a:active,
      nav a.is-active {
        color: var(--accent);
        background: transparent;
        padding-left: 14px;
      }

      nav .nav-cta {
        margin: 22px 0 0;
        text-align: center;
        background: var(--accent);
        color: var(--text-on-dark);
        padding: 18px;
        border-radius: 10px;
        border-bottom: none !important;
        font-size: 18px;
        letter-spacing: 1.5px;
      }

      nav .nav-cta:hover,
      nav .nav-cta:active {
        background: var(--text);
        color: var(--bg);
        padding-left: 18px;
      }

      /* Stagger animation for nav items when overlay opens */
      nav a {
        opacity: 0;
        transform: translateY(8px);
        transition: color 0.2s ease, padding-left 0.25s ease,
                    opacity 0.4s ease, transform 0.4s ease;
      }
      nav.is-open a {
        opacity: 1;
        transform: translateY(0);
      }
      nav.is-open a:nth-child(1) { transition-delay: 0.08s; }
      nav.is-open a:nth-child(2) { transition-delay: 0.14s; }
      nav.is-open a:nth-child(3) { transition-delay: 0.20s; }
      nav.is-open a:nth-child(4) { transition-delay: 0.26s; }
      nav.is-open a:nth-child(5) { transition-delay: 0.32s; }

      /* "MENU / SLUITEN" label above hamburger when open */
      .nav-toggle::before {
        content: "MENU";
        position: absolute;
        font-family: 'Share Tech Mono', monospace;
        font-size: 10px;
        letter-spacing: 1.5px;
        color: var(--text-muted);
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.2s ease;
        pointer-events: none;
      }
      .nav-toggle[aria-expanded="true"]::before {
        content: "SLUIT";
        color: var(--accent);
      }
    }

    /* ============================================================
       ABSTRACT FLOATING SHAPES (more interesting than rectangles)
       ============================================================ */
    .blob {
      position: absolute;
      pointer-events: none;
      z-index: -1;
      filter: blur(0.5px);
    }
    .blob--1 {
      width: 900px;
      height: 840px;
      background: var(--accent);
      border-radius: 64% 36% 50% 50% / 50% 60% 40% 50%;
      top: 20%; left: -360px;
      opacity: 0.15;
      animation: blob-morph 14s ease-in-out infinite;
    }
    .blob--2 {
      width: 780px;
      height: 720px;
      background: var(--bg-deep);
      border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
      top: 60%; right: -300px;
      opacity: 0.18;
      animation: blob-morph 18s ease-in-out infinite reverse;
    }
    .blob--3 {
      width: 600px;
      height: 600px;
      background: var(--surface-3);
      border-radius: 50% 30% 70% 50% / 60% 50% 40% 50%;
      bottom: 10%; left: 40%;
      opacity: 0.4;
      animation: blob-morph 16s ease-in-out infinite;
    }

    @keyframes blob-morph {
      0%, 100% {
        border-radius: 64% 36% 50% 50% / 50% 60% 40% 50%;
        transform: rotate(0deg);
      }
      50% {
        border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
        transform: rotate(20deg);
      }
    }

    /* Curved arrow lines pointing at icons */
    .squiggle {
      position: absolute;
      pointer-events: none;
      z-index: 1;
    }
    .squiggle svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }
    .squiggle path {
      fill: none;
      stroke: var(--accent);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-dasharray: 4 6;
    }

    /* Floating mini-ring orbiting an icon */
    .orbit-ring {
      position: absolute;
      border: 1.5px solid var(--text);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.3;
    }

    /* Curved section divider (wavy) */
    .curved-divider {
      width: 100%;
      height: 60px;
      overflow: hidden;
      line-height: 0;
      margin: 20px 0 -1px;
    }
    .curved-divider svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .curved-divider path {
      stroke: var(--text);
      stroke-width: 1.5;
      fill: none;
      stroke-dasharray: 6 8;
      opacity: 0.4;
    }

    /* ============================================================
       EXTRA GRAPHIC ELEMENTS — verspreid over de site
       ============================================================ */

    /* Sections need positioning for absolute deco */
    .services,
    .projecten-section,
    .werkwijze-section,
    .testimonials,
    .stack-section,
    .project-strip {
      position: relative;
      overflow-x: clip;       /* alleen horizontaal clippen — paper-note tape mag verticaal uitsteken */
      overflow-y: visible;
    }

    main { overflow-x: clip; }   /* extra safety voor onderliggende absolute elementen */

    /* ---- Section title decoration: 3 dots + 1 line accent ---- */
    .section-title {
      position: relative;
    }
    .section-title::before {
      content: "";
      position: absolute;
      width: 40px;
      height: 2px;
      background: var(--accent);
      top: 0;
      left: 0;
      margin-top: -24px;
    }

    /* ---- DIENSTEN section decoration ---- */
    .blob--diensten-1 {
      position: absolute;
      width: 720px;
      height: 660px;
      background: var(--accent);
      border-radius: 40% 60% 70% 30% / 50% 50% 50% 50%;
      top: 30%;
      right: -300px;
      opacity: 0.12;
      animation: blob-morph 16s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }
    .blob--diensten-2 {
      position: absolute;
      width: 540px;
      height: 540px;
      background: var(--bg-deep);
      border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
      bottom: 10%;
      left: -180px;
      opacity: 0.20;
      animation: blob-morph 19s ease-in-out infinite reverse;
      pointer-events: none;
      z-index: 0;
    }

    /* Floating plus signs scattered in diensten */
    .floating-plus {
      position: absolute;
      width: 22px;
      height: 22px;
      pointer-events: none;
      z-index: 1;
      animation: deco-pulse 4s ease-in-out infinite;
    }
    .floating-plus::before,
    .floating-plus::after {
      content: "";
      position: absolute;
      background: var(--accent);
      border-radius: 1px;
    }
    .floating-plus::before {
      width: 100%; height: 3px;
      top: 50%; left: 0;
      transform: translateY(-50%);
    }
    .floating-plus::after {
      width: 3px; height: 100%;
      left: 50%; top: 0;
      transform: translateX(-50%);
    }

    /* ---- WERKWIJZE: connector line between steps ---- */
    .werkwijze-section .process-grid {
      position: relative;
    }
    .werkwijze-section .process-grid::before {
      content: "";
      position: absolute;
      top: 58px;                /* loopt door het midden van de step-num cijfers */
      left: 8%;
      right: 8%;
      height: 2px;
      background: repeating-linear-gradient(
        to right,
        var(--text) 0,
        var(--text) 6px,
        transparent 6px,
        transparent 14px
      );
      opacity: 0.4;
      z-index: 0;
    }
    @media (max-width: 900px) {
      .werkwijze-section .process-grid::before { display: none; }
    }

    .werkwijze-section .step.big-step {
      position: relative;
      z-index: 1;
    }
    /* (arrow connector verwijderd — ::after is voor texture overlay) */

    /* Werkwijze background blob */
    .blob--werkwijze {
      position: absolute;
      width: 840px;
      height: 780px;
      background: var(--accent);
      border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
      top: 0;
      right: -240px;
      opacity: 0.10;
      animation: blob-morph 20s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    /* Walking robin in werkwijze */
    .robin--werkwijze {
      width: 56px;
      height: 56px;
      top: 28px;
      left: 4%;
      animation: robin-hop 3.2s ease-in-out infinite;
    }
    @media (max-width: 900px) {
      .robin--werkwijze { display: none; }
    }

    /* ============================================================
       STACK SECTION — Waar we mee bouwen
       ============================================================ */
    .stack-section {
      padding: 100px 0;
      position: relative;
      overflow-x: clip;
      overflow-y: visible;
    }

    .blob--stack {
      position: absolute;
      width: 960px;
      height: 840px;
      background: var(--accent);
      border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
      bottom: 6%;
      right: -360px;
      opacity: 0.10;
      animation: blob-morph 18s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    .stack-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
      margin-top: 48px;
      position: relative;
      z-index: 1;
    }

    .stack-group {
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 4px;
      padding: 24px 22px;
      position: relative;
      transition: transform 0.25s ease;
    }

    .stack-group:hover { transform: translateY(-3px); }

    .stack-group h3 {
      font-family: 'Share Tech Mono', monospace;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1.5px dashed rgba(46, 7, 80, 0.25);
    }

    .stack-pills {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0;
      margin: 0;
    }

    .stack-pills li {
      font-family: 'Share Tech Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.5px;
      padding: 6px 12px;
      background: rgba(77, 115, 211, 0.10);
      border: 1px solid rgba(77, 115, 211, 0.35);
      border-radius: 4px;
      color: var(--text-on-surface);
      white-space: nowrap;
    }

    @media (max-width: 700px) {
      .stack-section { padding: 70px 0; }
      .stack-grid { gap: 20px; margin-top: 32px; }
      .stack-group { padding: 20px 18px; }
    }

    /* ============================================================
       TICKET FORM (op /support)
       ============================================================ */
    .ticket-form {
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 4px;
      padding: 32px 30px;
      position: relative;
    }
    .form-row {
      margin-bottom: 18px;
    }
    .form-row label {
      display: block;
      font-family: 'Share Tech Mono', monospace;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 6px;
    }
    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row select,
    .form-row textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      background: var(--bg-light);
      font-family: inherit;
      font-size: 15px;
      color: var(--text);
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .form-row textarea {
      resize: vertical;
      min-height: 140px;
      font-family: inherit;
      line-height: 1.55;
    }
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: var(--accent);
      background: #fff;
    }
    .form-row-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .form-submit {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .form-hint {
      margin-top: 6px;
      font-size: 12px;
      opacity: 0.65;
      font-family: 'Share Tech Mono', monospace;
      letter-spacing: 0.5px;
    }

    /* Dropzone — drag-drop upload met thumbnail preview */
    .dropzone {
      position: relative;
      padding: 28px 20px;
      border: 2px dashed rgba(46, 7, 80, 0.35);
      border-radius: 6px;
      background: var(--bg-light);
      text-align: center;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    }
    .dropzone:hover,
    .dropzone:focus-visible {
      border-color: var(--accent);
      background: rgba(77,115,211,0.05);
      outline: none;
    }
    .dropzone.is-drag {
      border-color: var(--accent);
      background: rgba(77,115,211,0.10);
      transform: scale(1.01);
    }
    .dropzone-prompt {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text);
      opacity: 0.75;
    }
    .dropzone-prompt p { margin: 0; font-size: 14px; line-height: 1.4; }
    .dropzone-prompt .form-hint { margin-top: 4px; opacity: 0.7; }
    .dropzone.has-files .dropzone-prompt {
      display: none;
    }
    .dropzone-preview {
      display: none;
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 10px;
    }
    .dropzone.has-files .dropzone-preview { display: grid; }
    .dz-thumb {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      background: var(--surface);
    }
    .dz-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .dz-thumb .dz-remove {
      position: absolute;
      top: 4px; right: 4px;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(46,7,80,0.85);
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      line-height: 1;
    }
    .dz-thumb .dz-remove:hover { background: #b91c1c; }
    .dz-thumb .dz-name {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 3px 6px;
      background: rgba(46,7,80,0.85);
      color: var(--bg);
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .dz-add {
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 4 / 3;
      border: 1.5px dashed var(--text);
      border-radius: 4px;
      background: transparent;
      cursor: pointer;
      font-size: 24px;
      color: var(--text);
      opacity: 0.5;
      transition: opacity 0.2s ease, border-color 0.2s ease;
    }
    .dz-add:hover { opacity: 1; border-color: var(--accent); color: var(--accent); }

    .file-input {
      display: block;
      width: 100%;
      padding: 10px 14px;
      border: 1.5px dashed var(--text);
      border-radius: 4px;
      background: var(--bg-light);
      font-family: inherit;
      font-size: 13px;
      color: var(--text);
      cursor: pointer;
    }
    .file-input::file-selector-button {
      padding: 6px 14px;
      margin-right: 14px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      background: var(--text);
      color: var(--bg);
      font-family: 'Share Tech Mono', monospace;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .file-input::file-selector-button:hover {
      background: var(--accent);
      color: var(--text-on-dark);
    }

    /* Attachment thumbnails — gedeeld door admin + klant track-page */
    .attach-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 10px;
      margin-top: 12px;
    }
    .attach-thumb {
      display: block;
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      background: var(--bg-light);
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease;
    }
    .attach-thumb:hover { transform: translateY(-2px); }
    .attach-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .attach-thumb .attach-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 4px 8px;
      background: rgba(46,7,80,0.85);
      color: var(--bg);
      font-family: 'Share Tech Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    @media (max-width: 600px) {
      .ticket-form { padding: 24px 20px; }
      .form-row-2col { grid-template-columns: 1fr; gap: 0; }
    }

    /* Ticket status pills (track page) */
    .ticket-status {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 4px;
      font-family: 'Share Tech Mono', monospace;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .status-open    { background: rgba(77,115,211,0.18); color: var(--accent); }
    .status-waiting { background: rgba(245,158,11,0.18); color: #b45309; }
    .status-closed  { background: rgba(46,7,80,0.10);   color: var(--text); }
    .status-urgent  { background: rgba(220,38,38,0.18); color: #b91c1c; }
    .status-high    { background: rgba(245,158,11,0.18); color: #b45309; }
    .status-normal  { background: rgba(77,115,211,0.10); color: var(--accent); }
    .status-low     { background: rgba(46,7,80,0.06);   color: var(--text); }

    /* Public message list (klant ziet eigen thread) */
    .messages-public { display: flex; flex-direction: column; gap: 14px; }
    .msg-public {
      padding: 18px 20px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
    }
    .msg-public.msg-customer { background: var(--surface); }
    .msg-public.msg-rbn      { background: rgba(77,115,211,0.10); border-color: var(--accent); }
    .msg-public .msg-head {
      display: flex;
      justify-content: space-between;
      font-family: 'Share Tech Mono', monospace;
      font-size: 11px;
      letter-spacing: 1px;
      margin-bottom: 10px;
      opacity: 0.75;
    }
    .msg-public .msg-body { white-space: pre-wrap; font-size: 14.5px; line-height: 1.6; }

    /* ============================================================
       ADMIN DASHBOARD (/admin)
       ============================================================ */
    .admin-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
    .admin-header {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
    }
    .admin-filters { display: flex; gap: 6px; flex-wrap: wrap; }
    .admin-filters a {
      padding: 8px 14px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      text-decoration: none;
      color: var(--text);
      font-family: 'Share Tech Mono', monospace;
      font-size: 13px;
      letter-spacing: 1px;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .admin-filters a:hover  { background: rgba(77,115,211,0.10); }
    .admin-filters a.active { background: var(--text); color: var(--bg); }

    .admin-empty { text-align: center; padding: 60px 20px; opacity: 0.6; }

    /* Inline-link binnen eyebrow (site-url in case study labels) */
    .eyebrow-link {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1.5px dashed currentColor;
      padding-bottom: 1px;
      transition: color 0.2s ease, border-color 0.2s ease;
    }
    .eyebrow-link:hover,
    .eyebrow-link:focus-visible {
      color: var(--bg-deep);
      border-bottom-style: solid;
      outline: none;
    }

    /* Desktop tabel */
    table.tickets {
      width: 100%;
      border-collapse: collapse;
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 4px;
      overflow: hidden;
    }
    table.tickets th, table.tickets td {
      padding: 12px 14px;
      text-align: left;
      border-bottom: 1px solid rgba(46,7,80,0.15);
      font-size: 14px;
      vertical-align: middle;
    }
    table.tickets th {
      background: var(--bg-deep);
      color: var(--text-on-dark);
      font-family: 'Share Tech Mono', monospace;
      letter-spacing: 1px;
      font-size: 12px;
      text-transform: uppercase;
    }
    table.tickets tr:last-child td { border-bottom: none; }
    table.tickets tr:hover td { background: rgba(77,115,211,0.08); }
    table.tickets a { color: var(--accent); text-decoration: none; font-weight: 600; }
    table.tickets a:hover { text-decoration: underline; }

    .cell-with-avatar {
      display: flex; align-items: center; gap: 10px;
    }
    .avatar-sm {
      width: 32px; height: 32px; font-size: 11px;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-family: 'Share Tech Mono', monospace;
      font-weight: 700;
      letter-spacing: 0.5px;
      user-select: none;
    }

    /* Status pills (gedeeld) */
    .pill {
      display: inline-block;
      padding: 3px 9px;
      border-radius: 4px;
      font-size: 11px;
      font-family: 'Share Tech Mono', monospace;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .pill-open    { background: rgba(77,115,211,0.18); color: var(--accent); }
    .pill-waiting { background: rgba(245,158,11,0.18); color: #b45309; }
    .pill-closed  { background: rgba(46,7,80,0.10);   color: var(--text); }
    .pill-urgent  { background: rgba(220,38,38,0.18); color: #b91c1c; }
    .pill-high    { background: rgba(245,158,11,0.18); color: #b45309; }
    .pill-normal  { background: rgba(77,115,211,0.10); color: var(--accent); }
    .pill-low     { background: rgba(46,7,80,0.06);   color: var(--text); }

    /* Mobile: kaartjes — verbergt tabel, toont cards onder 760px */
    .tickets-cards { display: none; }
    @media (max-width: 760px) {
      .admin-wrap { padding: 24px 16px; }
      .tickets-table { display: none; }
      .tickets-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .ticket-card {
        display: block;
        padding: 16px 18px;
        background: var(--surface);
        border: 1.5px solid var(--text);
        border-radius: 4px;
        text-decoration: none;
        color: var(--text);
        transition: transform 0.2s ease, border-color 0.2s ease;
      }
      .ticket-card:hover, .ticket-card:active {
        transform: translateY(-2px);
        border-color: var(--accent);
      }
      .ticket-card-head {
        display: flex; justify-content: space-between; align-items: center;
        margin-bottom: 8px;
      }
      .ticket-card-id {
        font-family: 'Share Tech Mono', monospace;
        font-size: 12px;
        letter-spacing: 1px;
        color: var(--accent);
        font-weight: 700;
      }
      .ticket-card-subject {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.3;
      }
      .ticket-card-meta {
        display: flex; justify-content: space-between; align-items: center;
        font-size: 13px;
      }
    }

    /* ============================================================
       ADMIN — RESILIENCE CHECKLIST (/admin/resilience)
       ============================================================ */
    .resilience-summary {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      margin: 20px 0 36px;
      padding: 14px 18px;
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 4px;
    }
    .resilience-section {
      margin-bottom: 40px;
      padding: 24px 26px;
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 4px;
    }
    .resilience-section-head {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1.5px dashed rgba(46,7,80,0.25);
    }
    .resilience-section-head h2 {
      font-size: 20px;
      margin: 0 0 4px;
      line-height: 1.2;
    }
    .resilience-section-head .resilience-sub {
      font-family: 'Share Tech Mono', monospace;
      font-size: 12px;
      letter-spacing: 1px;
      opacity: 0.7;
      margin: 0;
    }
    .resilience-icon {
      font-size: 26px;
      line-height: 1;
      flex-shrink: 0;
    }

    .resilience-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .resilience-item {
      padding: 14px 16px;
      background: var(--bg-light);
      border-left: 3px solid var(--accent);
      border-radius: 2px;
    }
    .resilience-item-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }
    .resilience-item-head h3 {
      font-size: 15px;
      margin: 0;
      line-height: 1.3;
    }
    .resilience-why,
    .resilience-how {
      font-size: 13.5px;
      line-height: 1.55;
      margin: 4px 0 0;
      color: var(--text);
    }
    .resilience-why strong,
    .resilience-how strong {
      font-family: 'Share Tech Mono', monospace;
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 400;
      display: inline-block;
      margin-right: 4px;
    }

    .resilience-footer {
      margin-top: 40px;
      padding: 18px;
      text-align: center;
      font-family: 'Share Tech Mono', monospace;
      font-size: 11px;
      letter-spacing: 1px;
      opacity: 0.6;
    }

    /* Admin nav-links (boven admin-pages) */
    .admin-subnav {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .admin-subnav a {
      padding: 6px 12px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      text-decoration: none;
      color: var(--text);
      font-family: 'Share Tech Mono', monospace;
      font-size: 12px;
      letter-spacing: 1px;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .admin-subnav a:hover,
    .admin-subnav a.is-current { background: var(--accent); color: var(--text-on-dark); border-color: var(--accent); }

    @media (max-width: 700px) {
      .resilience-section { padding: 20px 18px; }
      .resilience-section-head h2 { font-size: 17px; }
      .resilience-item-head h3 { font-size: 14px; }
    }

    @media print {
      header, footer, .crumbs, .btn { display: none !important; }
      body { background: #fff; }
      .resilience-section { break-inside: avoid; page-break-inside: avoid; }
      .resilience-item { break-inside: avoid; }
    }

    /* Admin ticket-detail (/admin/ticket) */
    .crumbs {
      font-family: 'Share Tech Mono', monospace;
      font-size: 12px; letter-spacing: 1px;
      margin-bottom: 16px;
      opacity: 0.7;
    }
    .crumbs a { color: var(--text); text-decoration: none; }
    .crumbs a:hover { color: var(--accent); }

    .ticket-head {
      padding: 20px 24px;
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 4px;
      margin-bottom: 24px;
    }
    .ticket-head h1 { font-size: 22px; margin-bottom: 10px; line-height: 1.25; }
    .ticket-meta {
      display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
      font-size: 13px;
      opacity: 0.85;
      font-family: 'Share Tech Mono', monospace;
      letter-spacing: 0.5px;
    }
    .status-form { display: inline-flex; gap: 6px; align-items: center; }
    .status-form select {
      padding: 4px 8px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      background: var(--bg-light);
      font-family: 'Share Tech Mono', monospace;
      font-size: 12px;
    }

    .messages { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
    .msg {
      padding: 16px 18px;
      border-radius: 4px;
      border: 1.5px solid var(--text);
    }
    .msg.customer { background: var(--surface); }
    .msg.rbn      { background: rgba(77,115,211,0.08); border-color: var(--accent); }
    .msg .msg-head {
      display: flex; justify-content: space-between;
      font-family: 'Share Tech Mono', monospace;
      font-size: 11px; letter-spacing: 1px;
      margin-bottom: 8px;
      opacity: 0.7;
    }
    .msg .msg-body {
      white-space: pre-wrap;
      font-size: 14px;
      line-height: 1.55;
    }

    .reply-form {
      padding: 20px 22px;
      background: var(--surface);
      border: 1.5px solid var(--text);
      border-radius: 4px;
    }
    .reply-form label {
      display: block;
      font-family: 'Share Tech Mono', monospace;
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
      color: var(--accent);
    }
    .reply-form textarea {
      width: 100%; padding: 12px 14px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      background: var(--bg-light);
      font-family: inherit; font-size: 14px;
      resize: vertical; min-height: 140px;
      line-height: 1.55;
    }
    .reply-form textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
    .reply-controls {
      display: flex; justify-content: space-between; gap: 12px;
      margin-top: 16px; flex-wrap: wrap;
    }
    .reply-controls select {
      padding: 10px 12px;
      border: 1.5px solid var(--text);
      border-radius: 4px;
      background: var(--bg-light);
      font-family: 'Share Tech Mono', monospace;
      font-size: 13px;
    }

    .flash {
      padding: 12px 16px;
      border-radius: 4px;
      margin-bottom: 16px;
      font-size: 14px;
    }
    .flash-ok  { background: rgba(34,197,94,0.15);  border: 1.5px solid #16a34a; color: #14532d; }
    .flash-err { background: rgba(220,38,38,0.15);  border: 1.5px solid #b91c1c; color: #7f1d1d; }

    /* Admin ticket-detail mobile tweaks */
    @media (max-width: 700px) {
      .admin-wrap { padding: 24px 16px; }
      .ticket-head { padding: 16px 18px; }
      .ticket-head h1 { font-size: 18px; }
      .ticket-meta { gap: 10px; font-size: 12px; }
      .reply-form { padding: 16px 18px; }
      .reply-controls { flex-direction: column; align-items: stretch; }
      .reply-controls .btn { width: 100%; justify-content: center; }
    }

    /* ============================================================
       AVATAR + MESSAGE ROW (gedeeld door admin + klant track-page)
       ============================================================ */
    .msg-row {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .msg-content {
      flex: 1;
      min-width: 0;
    }
    .avatar {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Share Tech Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.5px;
      font-weight: 700;
      box-shadow: 0 1px 3px rgba(0,0,0,0.15);
      user-select: none;
    }
    @media (max-width: 600px) {
      .avatar { width: 34px; height: 34px; font-size: 11px; }
      .msg-row { gap: 10px; }
    }

    /* ---- MARQUEE decoration: small floating shapes around it ---- */
    .marquee-deco {
      position: absolute;
      width: 14px;
      height: 14px;
      background: var(--accent);
      transform: rotate(45deg);
      z-index: 2;
      animation: deco-pulse 3s ease-in-out infinite;
    }
    .marquee-deco--1 { top: -8px; left: 12%; }
    .marquee-deco--2 { bottom: -8px; right: 18%; background: var(--bg-deep); }
    .marquee-deco--3 {
      top: -6px; right: 6%;
      background: transparent;
      border: 2px solid var(--accent);
      transform: none;
      border-radius: 50%;
    }

    /* ---- BIG NUMBER BACKDROP behind step numbers (more abstract) ---- */
    .step.big-step {
      overflow: visible;
    }
    .step.big-step .step-num {
      position: relative;
      display: inline-block;
    }
    .step.big-step .step-num::after {
      content: "";
      position: absolute;
      width: 72px;
      height: 72px;
      background: var(--accent);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0.15;
      z-index: -1;
    }

    /* ---- Tiny corner accents on cards (extra detail) ---- */
    .service-card.big-icon {
      position: relative;
    }
    .service-card.big-icon::after {
      content: "";
      position: absolute;
      width: 22px;
      height: 22px;
      bottom: 18px;
      right: 18px;
      background: var(--accent);
      transform: rotate(45deg);
      opacity: 0.85;
      transition: transform 0.3s ease;
    }
    .service-card.big-icon:hover::after {
      transform: rotate(135deg) scale(1.1);
    }

    /* ---- DOT GRID pattern (subtle, in corners of some sections) ---- */
    .dot-grid {
      position: absolute;
      width: 100px;
      height: 100px;
      background-image:
        radial-gradient(circle, var(--text) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
      opacity: 0.20;
      pointer-events: none;
      z-index: 0;
    }
    .dot-grid--projecten { bottom: -40px; left: -40px; }
    .dot-grid--testimonials { top: -40px; right: -40px; }

    /* ---- SPACE EASTER EGGS (UFO, alien, astronaut, planet) ---- */
    .space-deco {
      position: absolute;
      pointer-events: none;
      z-index: 1;
    }
    .space-deco svg { width: 100%; height: 100%; display: block; }

    /* Animaties verhuizen naar de inner svg → wrapper blijft stil → shadow blijft stil */
    .ufo-drift     > svg { animation: ufo-fly 10s ease-in-out infinite; }
    .planet-spin   > svg,
    .planet-bounce > svg { animation: planet-bounce 3.4s ease-in-out infinite; }
    .astro-float   > svg { animation: astro-float 5s ease-in-out infinite; }
    .alien-peek    > svg { animation: alien-peek 4s ease-in-out infinite; }

    /* Losse ::after shadow op wrapper (blijft stil, beweegt niet mee) — niet voor UFO of planeet */
    .astro-float::after,
    .alien-peek::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 8px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.22) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
    }

    /* UFO vliegt rond in een ovaal patroon */
    @keyframes ufo-fly {
      0%   { translate: 0 0; }
      25%  { translate: -22px -14px; }
      50%  { translate: -34px 0; }
      75%  { translate: -22px 14px; }
      100% { translate: 0 0; }
    }
    @keyframes planet-bounce { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
    @keyframes astro-float { 0%,100% { translate: 0 0; rotate: -4deg; } 50% { translate: 0 -12px; rotate: 4deg; } }
    @keyframes alien-peek  { 0%,100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -8px; rotate: 6deg; } }

    @media (prefers-reduced-motion: reduce) {
      .ufo-drift, .planet-spin, .astro-float, .alien-peek { animation: none !important; }
    }

    /* Mobile: schaal space-eggs proportioneel kleiner zodat ze niet over content vallen */
    @media (max-width: 700px) {
      .space-deco {
        width: 60% !important;       /* relatief — niet de exacte inline px-waarde */
        max-width: 90px !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
      }
    }

    /* Section dividers: zelfde size en spacing op mobile */
    @media (max-width: 700px) {
      .section-divider {
        width: min(720px, 88%);
        margin: 0 auto;
      }
    }

    /* ============================================================
       PAPER NOTE STYLING — vervangt rounded box look
       ============================================================ */

    /* Flat sharp rounded cards — geen shadow, geen texture, kleine radius */
    .service-card,
    .project-card,
    .step.big-step,
    .contact-box,
    details.faq-item,
    .testimonial {
      border: none;
      position: relative;
      margin-top: 50px;            /* ruimte boven card voor de uitstekende tape */
      box-shadow: none;
      transition: transform 0.25s ease;
    }

    /* Geen texture overlay meer */
    .service-card::after,
    .step.big-step::after,
    .contact-box::after,
    details.faq-item::after,
    .testimonial::after,
    .project-card .paper-overlay {
      display: none;
    }

    .project-card { position: relative; }

    /* Flat sharp rounded — uniform 4px radius, geen tilts */
    .service-card,
    .project-card,
    .step.big-step,
    .contact-box,
    details.faq-item,
    .testimonial {
      border-radius: 4px;
      overflow: visible;
    }

    /* Dark variant — solid amethyst, geen shadow */
    .project-card.alt {
      background: var(--bg-deep);
      box-shadow: none;
    }

    /* Geen tilts — flat sharp cards */

    /* Hover: lift, geen rotation, geen shadow */
    .service-card:hover,
    .project-card:hover,
    .step.big-step:hover,
    details.faq-item:hover,
    .contact-box:hover {
      transform: translateY(-3px);
    }

    /* Tape strip at top of cards (the iconic paper-note tape) */
    .service-card.big-icon,
    .project-card,
    .step.big-step,
    details.faq-item {
      position: relative;
    }

    /* Uniforme licht-blauwe tape op ALLE cards (consistent, geen variant) */
    .service-card::before,
    .project-card::before,
    .step.big-step::before,
    .contact-box::before,
    details.faq-item::before,
    .testimonial::before {
      content: "";
      position: absolute;
      top: -17px;
      left: 50%;
      transform: translateX(-50%) rotate(-3deg);
      width: 128px;
      height: 32px;
      background: rgba(157, 186, 229, 0.55);          /* light blue, semi-transparent */
      border-left: 3px dashed rgba(157, 186, 229, 0.80);
      border-right: 3px dashed rgba(157, 186, 229, 0.80);
      z-index: 5;
      pointer-events: none;
    }
    /* Alternerende tape-hoek per nth-child voor handgeplaatst gevoel */
    .service-grid .service-card:nth-child(2n)::before,
    .step.big-step:nth-child(2n)::before,
    .project-grid .project-card:nth-child(2n)::before {
      transform: translateX(-50%) rotate(2deg);
    }

    /* Reset old service-card.big-icon::after (the diamond) — keep small, repositioned */
    .service-card.big-icon::after {
      content: "";
      position: absolute;
      width: 16px;
      height: 16px;
      bottom: 14px;
      right: 14px;
      background: var(--accent);
      transform: rotate(45deg);
      opacity: 0.85;
      transition: transform 0.3s ease;
    }
    .service-card.big-icon:hover::after {
      transform: rotate(135deg) scale(1.1);
    }

    /* Tech-pill — flat */
    .tech-pill {
      border-radius: 4px;
      box-shadow: none;
      transition: transform 0.25s ease;
    }
    .tech-pill:hover {
      transform: translateY(-2px);
    }

    /* Disable transform on touch devices (avoid stuck transforms) */
    @media (hover: none) {
      .service-card, .project-card, .step.big-step,
      .contact-box, details.faq-item, .tech-pill {
        /* Mobile: reduce tilts so paper notes are less crooked but still styled */
      }
    }

    /* ---- Wavy line decoration ---- */
    .wave-line {
      position: absolute;
      width: 120px;
      height: 30px;
      pointer-events: none;
      z-index: 1;
    }
    .wave-line svg {
      width: 100%;
      height: 100%;
    }
    .wave-line path {
      fill: none;
      stroke: var(--accent);
      stroke-width: 2;
      stroke-linecap: round;
    }

    /* Mobile spacing tweaks */
    @media (max-width: 700px) {
      .hero { padding: 60px 0 40px; }
      .hero-content { gap: 30px; }
      .hero h2 { font-size: 38px; }
      .hero-slogan { font-size: 13px; }
      .hero-graphic { max-width: 320px; }

      .marquee-item { font-size: 16px; }
      .project-strip-track { gap: 16px 32px; }

      .service-card.big-icon .service-icon .ico { width: 140px; height: 140px; }

      .project-card { padding: 36px 24px 28px; min-height: 280px; }
      .project-card h3 { font-size: 20px; }
      .project-icon { width: 140px; height: 140px; }

      .step.big-step .step-num { font-size: 44px; }

      .cta-box.light-cta { padding: 32px 24px; grid-template-columns: 1fr; gap: 24px; }
      .cta-graphic { max-width: 220px; }

      footer { padding: 32px 0 20px; }
      .footer-grid { gap: 24px; }
    }

    /* Touch-friendly tap targets */
    @media (hover: none) {
      .btn, nav a, .nav-toggle { min-height: 44px; }
    }

    /* ============================================================
       ICON PALETTE OVERRIDE for icons on TAUPE surface (service-cards)
       — taupe is mid-tone; use dark amethyst body + dust-grey highlights
       ============================================================ */
    .service-card {
      --ico-bright:   #4D73D3;    /* royal blue highlight */
      --ico-mid:      #2E0750;    /* dark amethyst main body */
      --ico-shadow:   #1A0330;    /* deeper amethyst */
      --ico-deep:     #0F0119;    /* darkest */
      --ico-cream:    #E4D6D4;    /* dust grey accent (pops against taupe) */
      --ico-dark:     #1A0330;
      --ico-purple:   #4D73D3;
    }

    /* ============================================================
       DARK SECTION OVERRIDES — sections on bg-deep (Amethyst)
       need light text. Currently used by .process.
       ============================================================ */
    .process {
      color: var(--text-on-dark);
    }
    .process h2,
    .process h3,
    .process .step h3,
    .process .step-num,
    .process .section-title h2 { color: var(--text-on-dark); }
    .process p,
    .process .step p,
    .process .section-title p { color: var(--text-on-dark-muted); }
    .process .timeline-step .duration { color: var(--text-on-dark-soft); border-color: rgba(228,214,212,0.2); }

    /* Dashboard mock inner cards (.card, .chart) sit on bg-deep amethyst → light text */
    .dashboard .card,
    .dashboard .chart { color: var(--text-on-dark); }
    .dashboard .card p,
    .dashboard .chart-header p { color: var(--text-on-dark-soft); }
    .dashboard .card h3 { color: var(--text-on-dark); }
    .dashboard .card .delta { color: var(--accent); }

    /* ============================================================
       TEXT COLOR OVERRIDES on light beige surfaces
       (cards/testimonials/FAQ/contact-box sit on --surface = beige,
        so text needs to flip to dark navy for readability)
       ============================================================ */
    .service-card,
    .service-card h3,
    .service-card p,
    .service-card ul li { color: var(--text-on-surface); }
    .service-card p { color: var(--text-on-surface-muted); }
    .service-card ul li { color: var(--text-on-surface-muted); }

    .testimonial,
    .testimonial blockquote { color: var(--text-on-surface); }
    .testimonial .author-info strong { color: var(--text-on-surface); }
    .testimonial .author-info span   { color: var(--text-on-surface-soft); }

    .tech-pill         { color: var(--text-on-surface-muted); }
    .tech-pill strong  { color: var(--text-on-surface); }

    .contact-box,
    .contact-box p   { color: var(--text-on-surface-muted); }
    .contact-box h2  { color: var(--text-on-surface); }
    .contact-info .item { color: var(--text-on-surface-muted); }

    details.faq-item             { color: var(--text-on-surface-muted); }
    details.faq-item summary     { color: var(--text-on-surface); }
    details.faq-item .faq-body   { color: var(--text-on-surface-muted); }

    /* Form inputs sit on dark --input-bg → keep light text */
    input, textarea { color: var(--text); }

    /* Service-detail visual block has transparent bg → it's on dark body bg */
    .service-detail-visual { color: var(--text); }