*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --ink: #0f0f0f; --ink-mid: #555; --ink-soft: #6f6f6f;
    --paper: #fafaf8; --rule: #e4e4e0;
    --accent: #5b5bd6;
    --sans: 'Space Grotesk', system-ui, sans-serif;
    --mono: 'Archivo', sans-serif;
    --max: 1040px;
  }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { font-family: var(--sans); background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid #0f0f0f;
    outline-offset: 4px;
  }
  .skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 999;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--paper);
    padding: 0.7rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 14px;
  }
  .skip-link:focus { transform: none; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 3rem;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  nav.scrolled {
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  #scroll-progress { position: absolute; left: 0; bottom: -1px; height: 3px; width: 0%; background: var(--accent); z-index: 101; }
  @media (prefers-reduced-motion: no-preference) { #scroll-progress { transition: width 0.1s linear; } }
  .nav-logo { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; transition: color 0.3s; display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
  .nav-logo img { height: 38px; width: auto; flex-shrink: 0; }
  .nav-logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
  .nav-links a { font-size: 14px; color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { font-size: 13px; font-weight: 500; padding: 0.45rem 1.1rem; background: var(--accent); color: #fff !important; border-radius: 999px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
  .nav-cta:hover { background: #4a4abf; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(91,91,214,0.35); }

  .w { max-width: var(--max); margin: 0 auto; padding: 0 3rem; }
  .divider { border: none; border-top: 1px solid var(--rule); }
  .eyebrow { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.5rem; }
  .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 1.75rem; }

  /* SECTION HEAD: nummer + ghost-tekst */
  .section-head { position: relative; margin-bottom: 1.75rem; }
  .section-head .section-title { margin-bottom: 0; }
  .section-num { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.14em; margin-bottom: 0.5rem; position: relative; z-index: 1; }
  .ghost-text {
    position: absolute; top: -0.28em; left: 0; z-index: 0;
    font-size: clamp(3.4rem, 13vw, 10.5rem); font-weight: 700; line-height: 1;
    letter-spacing: -0.02em; color: rgba(15,15,15,0.02);
    -webkit-text-stroke: 1.25px rgba(15,15,15,0.16);
    white-space: nowrap; pointer-events: none; user-select: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 78%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 78%);
  }
  @media (prefers-reduced-motion: no-preference) {
    .ghost-text { will-change: transform; }
  }
  .ghost-text-light { color: rgba(255,255,255,0.03); -webkit-text-stroke: 1.25px rgba(255,255,255,0.18); }
  .section-head .section-title { position: relative; z-index: 1; }

  @media (max-width: 780px) {
    .ghost-text { display: none; }
  }

  /* TICKER */
  .ticker { overflow: hidden; background: var(--ink); padding: 1.1rem 0; }
  .ticker-track { display: flex; width: max-content; animation: ticker-scroll var(--ticker-duration, 32s) linear infinite; }
  .ticker-set { display: flex; align-items: center; flex-shrink: 0; }
  .ticker-item { font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper); white-space: nowrap; padding: 0 1.25rem; }
  .ticker-sep { color: var(--accent); font-size: 13px; flex-shrink: 0; }
  @keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

  /* HERO */
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
  }
  #hero {
    max-width: 100%; margin: 0; padding: 10rem 3rem 6rem;
    background: var(--paper);
    position: relative;
    overflow: hidden;
    min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-scroll-cue {
    position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-soft); text-decoration: none; z-index: 1;
    transition: color 0.2s;
  }
  .hero-scroll-cue:hover { color: var(--ink); }
  .hero-scroll-cue-mouse { width: 20px; height: 32px; border: 1.5px solid currentColor; border-radius: 999px; position: relative; flex-shrink: 0; }
  .hero-scroll-cue-mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 4px;
    background: currentColor; border-radius: 50%; transform: translateX(-50%);
  }
  @media (prefers-reduced-motion: no-preference) {
    .hero-scroll-cue-mouse::before { animation: heroScrollDot 1.6s ease-in-out infinite; }
  }
  @keyframes heroScrollDot {
    0% { top: 6px; opacity: 1; }
    70% { top: 18px; opacity: 0; }
    100% { top: 18px; opacity: 0; }
  }
  .hero-orbs { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
  .hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
  .hero-orb-1 { width: 520px; height: 520px; top: -140px; left: -100px; background: var(--accent); opacity: 0.3; }
  .hero-orb-2 { width: 440px; height: 440px; top: 8%; right: -120px; background: #8b5cf6; opacity: 0.26; }
  .hero-orb-3 { width: 380px; height: 380px; bottom: -160px; left: 28%; background: #ec4899; opacity: 0.2; }
  @media (prefers-reduced-motion: no-preference) {
    .hero-orb-1 { animation: heroOrbDrift1 26s ease-in-out infinite; }
    .hero-orb-2 { animation: heroOrbDrift2 32s ease-in-out infinite; }
    .hero-orb-3 { animation: heroOrbDrift3 22s ease-in-out infinite; }
  }
  @keyframes heroOrbDrift1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(50px, 35px); } }
  @keyframes heroOrbDrift2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-40px, 45px); } }
  @keyframes heroOrbDrift3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(35px, -25px); } }
  .hero-grid { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 2.5rem; align-items: center; }
  #hero .eyebrow { animation: heroFadeUp 0.6s ease both; color: var(--ink-soft); }
  #hero .hero-headline { animation: heroFadeUp 0.7s 0.1s ease both; }
  #hero .hero-sub { animation: heroFadeUp 0.7s 0.2s ease both; }
  #hero .cta-row { animation: heroFadeUp 0.7s 0.3s ease both; }
  #hero .hero-tags { animation: heroFadeUp 0.7s 0.4s ease both; }

  /* HERO CARDS: gradient-blob met zwevende trust-kaartjes */
  .hero-cards { position: relative; width: 100%; aspect-ratio: 4/5; animation: heroFadeUp 0.8s 0.35s ease both; }
  .hero-blob {
    position: absolute; inset: 8%; border-radius: 42px; overflow: hidden;
    background: linear-gradient(135deg, #5b5bd6 0%, #8b5cf6 45%, #ec4899 100%);
    box-shadow: 0 30px 60px rgba(91,91,214,0.25);
  }
  .hero-blob img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-card {
    position: absolute; background: #fff; border-radius: 16px;
    padding: 0.9rem 1.1rem; box-shadow: 0 12px 30px rgba(15,15,15,0.14);
    font-family: var(--sans);
  }
  .hero-card-msg {
    top: 6%; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 13px; font-weight: 500; color: var(--ink);
    white-space: nowrap; border-radius: 999px;
  }
  .hero-card-icon { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
  .hero-card-review { left: 4%; bottom: 20%; width: 62%; }
  .hero-card-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 0.35rem; }
  .hero-card-quote { font-size: 13px; font-style: italic; color: var(--ink); line-height: 1.4; margin-bottom: 0.4rem; }
  .hero-card-name { font-size: 11px; color: var(--ink-soft); font-family: var(--mono); }
  .hero-card-price { right: 6%; bottom: 4%; }
  .hero-card-price-label { font-size: 10px; font-family: var(--mono); color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
  .hero-card-price-value { font-size: 18px; font-weight: 700; color: var(--accent); }
  @media (prefers-reduced-motion: no-preference) {
    .hero-card-msg { animation: heroFloat 6s ease-in-out infinite; }
    .hero-card-review { animation: heroFloat 6s ease-in-out 1.5s infinite; }
    .hero-card-price { animation: heroFloat 6s ease-in-out 0.8s infinite; }
    @keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  }
  .hero-headline { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 300; line-height: 1.07; letter-spacing: -0.025em; margin-bottom: 1.5rem; max-width: 16ch; color: var(--ink); }
  .hero-headline em {
    font-style: italic;
    padding-right: 0.12em;
    background: linear-gradient(90deg, var(--accent), #ec4899);
    background-size: 110% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero-sub { font-size: 1rem; color: var(--ink-mid); max-width: 44ch; margin-bottom: 2rem; line-height: 1.7; }
  .cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 0.85rem; }
  .cta-microcopy { display: flex; align-items: center; gap: 0.45rem; font-size: 13px; color: var(--ink-soft); margin-bottom: 2rem; }
  .cta-microcopy svg { width: 15px; height: 15px; color: #22c55e; flex-shrink: 0; }
  .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; font-size: 14px; font-weight: 500; text-decoration: none; border-radius: 999px; transition: all 0.2s; position: relative; overflow: hidden; letter-spacing: 0.01em; }
  .btn-dark { background: var(--accent); color: #fff; }
  .btn-dark:hover { background: #4a4abf; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,91,214,0.35); }
  .btn-dark span, .btn-dark svg { position: relative; z-index: 1; }
  .btn-outline { border: 1.5px solid var(--accent); color: var(--accent); background: transparent; }
  .btn-outline:hover { background: rgba(91,91,214,0.06); transform: translateY(-1px); }
  .hero-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .hero-tag { font-size: 12px; font-family: var(--mono); font-weight: 500; color: var(--accent); background: rgba(91,91,214,0.05); border: 1.5px solid rgba(91,91,214,0.3); padding: 0.4rem 1rem; border-radius: 999px; letter-spacing: 0.02em; }
  .hero-tag::before { content: '✓ '; color: var(--accent); font-weight: 700; }

  /* ABOUT */
  #about { background: var(--ink); color: var(--paper); padding: 5rem 3rem; }
  #about .w { display: grid; grid-template-columns: 1fr 260px; gap: 3rem; align-items: center; }
  .about-photo { width: 100%; border-radius: 50%; overflow: hidden; aspect-ratio: 1; outline: 3px solid #5b5bd6; outline-offset: 4px; }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-body { font-size: 14px; line-height: 1.8; color: #aaa; }
  .about-list { list-style: none; margin-top: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .about-list li { font-size: 12px; font-family: var(--mono); font-weight: 500; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); border: 1.5px solid rgba(91,91,214,0.5); padding: 0.35rem 0.9rem; border-radius: 999px; text-align: center; }
  .about-list li::before { content: '✓ '; color: #a5a5f0; font-weight: 700; }

  /* WORK */
  #work { max-width: 100%; padding: 4rem 0 3rem; background: #f2f1ee; overflow: hidden; }
  #work .section-head { max-width: var(--max); margin: 0 auto 2.5rem; padding: 0 3rem; }
  #work .section-title { color: var(--ink); }
  .work-stage { position: relative; height: 260px; width: 100%; cursor: grab; touch-action: pan-y; }
  .work-stage:active { cursor: grabbing; }
  .work-cflow-card { position: absolute; left: 50%; top: 0; width: 340px; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--rule); box-shadow: 0 4px 24px rgba(0,0,0,0.12); transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.55s ease; user-select: none; }
  .work-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.75rem; }
  .work-nav-btn { width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--rule); cursor: pointer; font-size: 16px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
  .work-nav-btn:hover { background: var(--ink); color: #fff; }
  .work-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #ebebea; position: relative; }
  .work-badge { position: absolute; top: 22px; right: -32px; background: var(--accent); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 70px; transform: rotate(35deg); pointer-events: none; white-space: nowrap; z-index: 2; box-shadow: 0 2px 8px rgba(91,91,214,0.3); }
  .work-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
  .work-info { padding: 0.75rem 1rem; border-top: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; background: #fff; }
  .work-title { font-size: 13px; font-weight: 500; }
  .work-type { font-size: 11px; color: var(--ink-soft); font-family: var(--mono); margin-top: 2px; }
  .work-arrow { font-size: 14px; color: var(--ink-soft); }
  .work-concept { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px dashed var(--rule); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
  .work-concept-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; font-size: 14px; font-weight: 500; letter-spacing: 0.01em; border-radius: 999px; border: 1.5px solid var(--accent); color: var(--accent); background: transparent; text-decoration: none; transition: all 0.2s; }
  .work-concept-link:hover { background: rgba(91,91,214,0.06); transform: translateY(-1px); }

  /* SERVICES */
  #services { max-width: 100%; padding: 5rem 3rem; background: #f2f1ee; }
  #services > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
  #services .section-title { color: var(--ink); }

  /* Pakket kaarten */
  .intro-banner { display: flex; align-items: center; gap: 20px; background: var(--accent); border-radius: 12px; padding: 18px 28px; margin-top: 28px; flex-wrap: wrap; }
  .intro-banner-tag { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(255,255,255,0.18); color: #fff; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
  .intro-banner-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
  .intro-banner-text strong { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
  .intro-banner-text span { font-size: 13px; color: rgba(255,255,255,0.75); }
  .intro-banner-until { font-family: var(--mono); font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap; }
  .pricing-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; align-items: stretch; }
  .pkg-card { background: #fff; border-radius: 14px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); position: relative; }
  .pkg-card::before, .glow-card::before { content: ''; position: absolute; inset: -4px; border-radius: 18px; padding: 4px; background: radial-gradient(180px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(91,91,214,1) 0%, rgba(91,91,214,0.5) 40%, transparent 100%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: var(--glow-opacity, 0); transition: opacity 0.3s ease; pointer-events: none; z-index: 2; }
  .pkg-card::after, .glow-card::after { content: ''; position: absolute; top: var(--glow-y, 50%); left: var(--glow-x, 50%); width: 350px; height: 350px; background: radial-gradient(circle, rgba(91,91,214,0.08) 0%, transparent 70%); border-radius: 50%; transform: translate(-50%, -50%); opacity: var(--glow-opacity, 0); transition: opacity 0.3s ease; pointer-events: none; z-index: 0; }
  .pkg-featured::before { background: radial-gradient(200px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(180,130,255,1) 0%, rgba(180,130,255,0.6) 50%, transparent 100%); }
  .pkg-featured::after { background: radial-gradient(circle, rgba(180,130,255,0.15) 0%, transparent 70%); }
  .pkg-card > *, .glow-card > * { position: relative; z-index: 1; }
  .pkg-card .pkg-cta { position: relative; z-index: 3; }
  .glow-card { position: relative; }
  .pkg-featured { background: #1a1a2e; border-color: #1a1a2e; box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
  .pkg-maat { background: #fafaf8; box-shadow: none; }
  .pkg-name { font-size: 20px; font-weight: 700; color: var(--ink); }
  .pkg-featured .pkg-name { color: #fff; }
  .pkg-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
  .pkg-featured .pkg-desc { color: rgba(255,255,255,0.5); }
  .pkg-price-row { display: flex; align-items: baseline; gap: 0.4rem; margin-top: 0.5rem; }
  .pkg-price { font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1; }
  .pkg-featured .pkg-price { color: #fff; }
  .pkg-maat .pkg-price { font-size: 22px; }
  .pkg-period { font-size: 12px; color: var(--ink-soft); font-family: var(--mono); }
  .pkg-featured .pkg-period { color: rgba(255,255,255,0.4); }
  .pkg-old-row { font-size: 13px; color: var(--ink-soft); }
  .pkg-old-row del { color: var(--ink-mid); font-weight: 500; text-decoration-color: var(--accent); }
  .pkg-intro { display: inline-block; font-size: 9px; font-family: var(--mono); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(91,91,214,0.1); color: var(--accent); border: 1px solid rgba(91,91,214,0.25); padding: 2px 8px; border-radius: 20px; margin-left: 6px; }
  .pkg-intro-white { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
  .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; padding: 0; margin: 0.5rem 0 0; border-top: 1px solid #f0f0ec; padding-top: 1rem; flex: 1; }
  .pkg-featured .pkg-features { border-color: rgba(255,255,255,0.1); }
  .pkg-features li { font-size: 13px; color: var(--ink-mid); display: flex; align-items: center; gap: 0.5rem; }
  .pkg-featured .pkg-features li { color: rgba(255,255,255,0.65); }
  .pkg-features li::before { content: '✓'; color: #5b5bd6; font-weight: 700; font-size: 13px; flex-shrink: 0; }
  .pkg-levertijd { color: var(--accent) !important; font-weight: 600 !important; }
  .pkg-levertijd::before { display: none; }
  .pkg-levertijd svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--accent); }
  .pkg-featured .pkg-levertijd { color: #fff !important; }
  .pkg-featured .pkg-levertijd svg { stroke: #fff; }
  .pkg-featured .pkg-features li::before { color: #a5a5f0; }
  .pkg-popular-badge { position: absolute; top: 1rem; right: 1rem; font-size: 9px; font-family: var(--mono); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
  .pkg-cta { display: block; margin-top: 1.25rem; padding: 0.75rem 1rem; background: var(--accent); border: none; border-radius: 999px; font-size: 14px; font-weight: 500; font-family: var(--sans); color: #fff; text-decoration: none; text-align: center; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
  .pkg-cta:hover { background: #4a4abf; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,91,214,0.35); }
  .pkg-cta-white { background: #fff; color: var(--accent); }
  .pkg-cta-white:hover { background: #f0f0ff; box-shadow: 0 6px 20px rgba(91,91,214,0.25); }

  /* Onderhoud */
  .abo-table-wrap { margin-top: 2rem; background: #fff; box-shadow: 0 0 0 1px var(--rule); border-radius: 14px; overflow: visible; }
  .abo-table-scroll { overflow-x: auto; border-radius: 14px; }
  .abo-section-title { font-size: 15px; font-weight: 600; color: var(--ink); margin: 2rem 0 0.5rem; }
  .abo-intro { font-size: 13px; color: var(--ink-soft); margin-bottom: 1rem; }
  .abo-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
  .abo-table th { padding: 1rem 1.25rem; text-align: center; font-size: 15px; font-weight: 600; color: var(--ink); vertical-align: bottom; border-bottom: 2px solid var(--rule); background: #f7f7f5; }
  .abo-table th:first-child { text-align: left; border-radius: 14px 0 0 0; }
  .abo-table th:last-child { border-radius: 0 14px 0 0; }
  .abo-th-featured { background: #1a1a2e !important; color: #fff !important; position: relative; vertical-align: bottom; border-bottom: 2px solid #1a1a2e !important; }
  .abo-badge-above { position: absolute; bottom: 100%; left: 0; right: 0; text-align: center; font-size: 10px; font-family: var(--mono); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 6px 10px; border-radius: 10px 10px 0 0; white-space: nowrap; }
  .abo-th-name-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
  .abo-th-name { display: block; }
  .abo-th-price { font-size: 22px; font-weight: 700; color: var(--ink); display: block; margin-top: 4px; }
  .abo-th-price span { font-size: 12px; font-family: var(--mono); font-weight: 400; color: var(--ink-soft); }
  .abo-th-featured .abo-th-price { color: #fff; }
  .abo-th-featured .abo-th-price span { color: rgba(255,255,255,0.45); }
  .abo-table td { padding: 0.75rem 1.25rem; text-align: center; color: var(--ink-mid); border-bottom: 1px solid var(--rule); }
  .abo-table td:first-child { text-align: left; color: var(--ink); font-weight: 400; }
  .abo-table tbody tr:last-child td { border-bottom: none; }
  .abo-table td:nth-child(3) { background: #f5f5fd; }
  .abo-table th:nth-child(3) { background: #1a1a2e; }
  .abo-check { color: var(--accent); font-weight: 700; }
  .abo-disclaimer { font-size: 12px; color: var(--ink-soft); margin-top: 0.75rem; }

  /* Extra's */
  .pricing-extras { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .extras-label { grid-column: 1 / -1; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
  .extra-row { background: #fff; border: 1px solid #e4e4e0; border-radius: 12px; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
  .extra-name { font-size: 13px; font-weight: 500; color: var(--ink); }
  .extra-price { font-size: 18px; font-weight: 700; color: var(--accent); }
  .extra-period { font-size: 11px; font-weight: 400; color: var(--ink-soft); font-family: var(--mono); }

  /* HOW */
  #how { background: #fff; padding: 5rem 3rem; }
  #how .w { display: grid; grid-template-columns: auto 1fr 1fr 1fr 1fr; gap: 2rem; align-items: start; }
  .how-label { padding-top: 2px; }
  .how-n { font-family: var(--mono); font-size: 10px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 0.4rem; font-weight: 600; }
  .how-title { font-size: 14px; font-weight: 500; margin-bottom: 0.3rem; }
  .how-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.6; }

  /* FAQ */
  #reviews { max-width: var(--max); margin: 0 auto; padding: 5rem 3rem; }
  #reviews .w { max-width: var(--max); }
  .reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr)); gap: 1.5rem; }
  .review-card { background: #f5f5f3; border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
  .review-text { font-size: 1rem; line-height: 1.65; color: rgba(15,15,15,0.75); font-style: italic; }
  .review-author { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
  .review-name { font-weight: 600; font-size: 0.95rem; color: #0f0f0f; }
  .review-company { font-size: 0.85rem; color: rgba(15,15,15,0.45); margin-top: 2px; }
  .review-google { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: rgba(15,15,15,0.4); text-decoration: none; transition: color 0.2s; }
  .review-google:hover { color: #4285F4; }

  #faq { max-width: var(--max); margin: 0 auto; padding: 5rem 3rem; }
  .faq-list { max-width: 640px; display: flex; flex-direction: column; gap: 0.625rem; }
  .faq-card { background: #f5f5f3; border-radius: 12px; }
  .faq-card .faq-panel { overflow: hidden; border-radius: 0 0 12px 12px; }
  .faq-trigger {
    width: 100%; display: flex; align-items: flex-start; justify-content: space-between;
    gap: 1rem; padding: 1rem 1.25rem; text-align: left; background: none; border: none;
    cursor: pointer; font-family: var(--sans); font-size: 15px; font-weight: 500;
    color: var(--ink); letter-spacing: -0.02em; line-height: 1.4;
  }
  .faq-trigger:focus-visible { outline: 3px solid #0f0f0f; outline-offset: -3px; border-radius: 12px; }
  .faq-chevron { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; color: var(--accent); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
  .faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
  .faq-panel { height: 0; overflow: hidden; transition: height 0.35s cubic-bezier(0.16,1,0.3,1); }
  .faq-panel-inner { padding: 0 1.25rem 1.25rem; font-size: 14px; color: var(--ink-mid); line-height: 1.7; }

  /* CONTACT */
  #contact { max-width: var(--max); margin: 0 auto; padding: 5rem 3rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
  .contact-photo { margin-top: 2rem; max-width: 280px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(15,15,15,0.14); }
  .contact-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .contact-info { font-size: 13px; color: var(--ink-mid); line-height: 1.75; }
  .form-field { margin-bottom: 0.9rem; }
  .form-field label { display: block; font-size: 10px; font-family: var(--mono); color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }
  .form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 0.65rem 0.9rem; border: 1px solid var(--rule);
    border-radius: 2px; background: #fff; font-family: var(--sans); font-size: 14px;
    color: var(--ink); outline: none; transition: border-color 0.2s; -webkit-appearance: none;
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); }
  .form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible {
    outline: 3px solid #0f0f0f;
    outline-offset: 4px;
  }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-submit { width: 100%; padding: 0.8rem; background: var(--accent); color: #fff; font-family: var(--sans); font-size: 14px; font-weight: 500; border: none; border-radius: 999px; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; margin-top: 0.4rem; }
  .form-submit:hover { background: #4a4abf; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,91,214,0.35); }
  .form-status { min-height: 1.4rem; margin-top: 0.75rem; font-size: 13px; color: var(--ink-mid); }

  /* PAKKET MODAL */
  #pkg-modal { display: none; }
  #pkg-modal.open { display: flex; }
  #pkg-modal-box { animation: modal-in 0.22s cubic-bezier(0.16,1,0.3,1); }
  @keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }
  .mf { margin-bottom: 0.85rem; }
  .mf-label { display: block; font-size: 10px; font-family: var(--mono); color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }
  .mf-input { width: 100%; padding: 0.65rem 0.9rem; border: 1px solid var(--rule); border-radius: 8px; background: var(--paper); font-family: var(--sans); font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s; }
  .mf-input:focus, .mf-input:focus-visible { outline: none; border-color: var(--accent); }
  #pkg-modal-submit:hover { background: #4a4abf; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,91,214,0.35); }

  /* FOOTER */
  footer { border-top: 1px solid var(--rule); padding: 2.5rem 3rem; }
  footer .w { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
  .footer-l { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
  .footer-r { font-size: 12px; color: var(--ink-soft); font-family: var(--mono); text-align: right; }
  .footer-socials { display: flex; gap: 0.75rem; align-items: center; }
  .footer-social { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid var(--rule); border-radius: 50%; color: var(--ink-soft); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .footer-social:hover { border-color: var(--accent); color: var(--accent); }
  .footer-social svg { width: 14px; height: 14px; }

  @media (max-width: 780px) {
    nav { padding: 0.75rem 1rem; gap: 0.75rem; }
    .nav-logo { font-size: 12px; gap: 8px; }
    .nav-logo img { height: 32px; }
    .nav-links { gap: 0; flex-shrink: 0; }
    .nav-links li:not(:last-child) { display: none; }
    .nav-cta { padding: 0.55rem 0.85rem; min-height: 38px; display: inline-flex; align-items: center; }
    .w, #hero, #work, #services, #faq, #contact, #about, #how, footer { padding-left: 1.25rem; padding-right: 1.25rem; }
    .work-stage { height: 220px; }
    .work-cflow-card { width: 260px; }
    #work .section-title { padding: 0 1.25rem; margin-bottom: 2rem; }
    #hero { padding-top: 5.5rem; }
    .hero-headline { font-size: clamp(2rem, 9vw, 2.6rem); max-width: 100%; }
    .hero-sub { font-size: 0.95rem; max-width: 100%; }
    .cta-row { flex-direction: column; align-items: flex-start; }
    .btn { width: 100%; justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .hero-cards { max-width: 320px; margin: 0 auto; width: 100%; }
    .hero-orb-1, .hero-orb-2, .hero-orb-3 { opacity: 0.12; }
    .hero-orb-1 { width: 320px; height: 320px; }
    .hero-orb-2 { width: 260px; height: 260px; }
    .hero-orb-3 { width: 220px; height: 220px; }
    .hero-card-msg { font-size: 10.5px; padding: 0.6rem 0.85rem; gap: 0.4rem; }
    .hero-card-quote { font-size: 12px; }
    #about .w { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-photo { max-width: 200px; margin: 0 auto; }
    .about-list { grid-template-columns: 1fr; }
    .pricing-packages { grid-template-columns: 1fr; }
    .pkg-card { padding: 1.25rem; }
    .onderhoud-top { flex-direction: column; gap: 0.75rem; }
    .onderhoud-price-block { text-align: left; }
    .onderhoud-card { padding: 1.25rem; }
    .pricing-extras { grid-template-columns: 1fr 1fr; }
    #how .w { grid-template-columns: 1fr; gap: 1.25rem; }
    .how-label { display: block; margin-bottom: 0.5rem; }
    #reviews { padding: 3.5rem 1.25rem; overflow: hidden; }
    #reviews .w { padding-left: 0; padding-right: 0; }
    .reviews-grid { grid-template-columns: 1fr; width: 100%; }
    .review-card { padding: 1.25rem; max-width: 100%; overflow: hidden; }
    .review-text { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
    #services .abo-table-wrap { margin-left: 0; margin-right: 0; border-radius: 12px; max-width: none; }
    .abo-table-scroll { overflow-x: auto; border-radius: 12px; }
    .abo-badge-above { position: static; display: inline-block; border-radius: 4px; margin-bottom: 4px; font-size: 8px; padding: 2px 6px; }
    .abo-table { min-width: unset; width: 100%; font-size: 11px; }
    .abo-table th, .abo-table td { padding: 0.4rem 0.4rem; }
    .abo-table td:first-child, .abo-table th:first-child { width: 34%; min-width: unset; position: static; }
    .abo-table th:nth-child(2), .abo-table td:nth-child(2),
    .abo-table th:nth-child(3), .abo-table td:nth-child(3),
    .abo-table th:nth-child(4), .abo-table td:nth-child(4) { width: 22%; }
    .abo-th-price { font-size: 13px !important; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-photo { max-width: 220px; margin: 1.5rem auto 0; }
    footer .w { flex-direction: column; gap: 1rem; align-items: flex-start; text-align: left; }
    .footer-r { text-align: left; }
    .footer-socials { order: -1; }
    .hero-tags { gap: 0.4rem; }
    .hero-tag { font-size: 11px; }
  }

  @media (prefers-reduced-motion: no-preference) {
    .js .fade { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .js .fade.in { opacity: 1; transform: none; }

    /* Staggered reveal voor grids/lijsten */
    .js .fade-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .js .fade-stagger.in > * { opacity: 1; transform: none; }
    .js .fade-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
    .js .fade-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
    .js .fade-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
    .js .fade-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
    .js .fade-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
    .js .fade-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
    .js .fade-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
    .js .fade-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }
  }

  /* ANNOUNCEMENT BAR */
  #ann-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 38px; background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-family: var(--sans);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ann-track { display: flex; align-items: center; gap: 0.6rem; padding: 0 3rem; }
  .ann-tag { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(255,255,255,0.18); padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
  .ann-msg { opacity: 0.9; white-space: nowrap; }
  .ann-sep { opacity: 0.4; }
  .ann-cd-wrap { font-size: 12px; white-space: nowrap; }
  #ann-countdown { font-weight: 600; font-family: var(--mono); }

  body.ann-visible nav { top: 38px; }
  body.ann-visible #hero { padding-top: calc(10rem + 38px); }

  #ann-bar.ann-hidden { transform: translateY(-100%); }

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

  @media (max-width: 780px) {
    #ann-bar { overflow: hidden; }
    .ann-marquee-wrap { display: flex; animation: ann-ticker 22s linear infinite; }
    .ann-marquee-wrap .ann-track { flex-shrink: 0; white-space: nowrap; padding: 0 2rem; }
    body.ann-visible #hero { padding-top: calc(5.5rem + 38px); }
  }
