  /* ============================================================
     TIKT BRAND TOKENS
     ============================================================ */
  :root{
    /* Brand colors (interpreted from concept) */
    --off-white: #F4F0E8;
    --sand:      #E8DDC8;
    --clarity:   #FFFFFF;
    --fade:      #C4BEB3;
    --deep-steel:#1A1B1F;
    --steel-soft:#2C2D32;

    /* Low sun gradient stops */
    --sun-1: #FFB877;
    --sun-2: #FF8A3D;
    --sun-3: #FF6A1A;
    /* Toegankelijke oranje voor kleine solide tekst op lichte achtergrond (WCAG AA, >=4.5:1) */
    --sun-text: #A8420A;

    /* Working tokens */
    --bg: var(--off-white);
    --ink: var(--deep-steel);
    --ink-soft: #5A5B61;
    --line: rgba(26,27,31,.10);
    --line-soft: rgba(26,27,31,.06);

    /* type */
    --display: 'DM Sans', system-ui, sans-serif;
    --body:    'Inter', system-ui, sans-serif;
  }

  *{box-sizing:border-box;margin:0;padding:0}
  html,body{height:100%}
  html{ scroll-behavior: smooth; }
  .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
  body{
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  ::selection{ background: var(--sun-2); color: var(--clarity); }

  /* ============================================================
     SHARED, DOT GRID, BREATHING ORBS, TICK LINE
     ============================================================ */

  /* Recurring dot-grid background pattern (signature brand element) */
  .dot-grid{
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(26,27,31,.13) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: 0 0;
  }
  .dot-grid.fade-edges{
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 90%);
            mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 90%);
  }
  .dot-grid.fade-bottom{
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
            mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
  }

  /* ============================================================
     NAV
     ============================================================ */
  nav{
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px max(36px, calc((100% - 1280px) / 2));
    background: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    transition: padding .3s ease, background .3s ease;
  }
  nav.scrolled{ padding: 12px max(36px, calc((100% - 1280px) / 2)); background: #ffffff; }

  .logo-mark{
    font-family: var(--display);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -.03em;
    color: var(--ink);
    text-decoration: none;
    line-height: 1;
    display: inline-flex; align-items: baseline;
    position: relative;
  }
  .logo-mark sup{
    font-size: 10px;
    font-weight: 400;
    margin-left: 2px;
    vertical-align: super;
    color: var(--sun-3);
  }
  .nav-links{ display: flex; gap: 32px; }
  .nav-links a{
    color: var(--ink-soft); text-decoration: none;
    font-size: 14px; font-weight: 500;
    position: relative;
    transition: color .3s ease;
  }
  .nav-links a::after{
    content:""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1px; background: var(--ink);
    transform: scaleX(0); transform-origin: right;
    transition: transform .35s cubic-bezier(.6,0,.2,1);
  }
  .nav-links a:hover{ color: var(--ink); }
  .nav-links a:hover::after{ transform: scaleX(1); transform-origin: left; }

  .nav-cta{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    background: var(--ink); color: var(--clarity);
    border-radius: 999px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    transition: transform .3s ease, background .3s ease;
  }
  .nav-cta::before{
    content:""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--sun-2);
    box-shadow: 0 0 8px var(--sun-2);
    animation: tickPulse 1.6s ease-in-out infinite;
  }
  .nav-cta:hover{ background: var(--steel-soft); transform: translateY(-1px); }

  /* ============================================================
     NAV DROPDOWN (Diensten)
     ============================================================ */
  .nav-dropdown{ position: relative; display: inline-flex; align-items: center; }
  .nav-dropdown-trigger{
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 0; padding: 0; margin: 0;
    font: inherit;
    color: var(--ink-soft);
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color .3s ease;
  }
  .nav-dropdown-trigger::after{
    content:""; position: absolute; left: 0; right: 14px; bottom: -6px;
    height: 1px; background: var(--ink);
    transform: scaleX(0); transform-origin: right;
    transition: transform .35s cubic-bezier(.6,0,.2,1);
  }
  .nav-dropdown-trigger:hover,
  .nav-dropdown.is-open .nav-dropdown-trigger{ color: var(--ink); }
  .nav-dropdown-trigger:hover::after,
  .nav-dropdown.is-open .nav-dropdown-trigger::after{ transform: scaleX(1); transform-origin: left; }
  .nav-dropdown-chevron{
    transition: transform .25s cubic-bezier(.6,0,.2,1);
    color: currentColor;
  }
  .nav-dropdown.is-open .nav-dropdown-chevron{ transform: rotate(180deg); }

  .nav-dropdown-panel{
    position: fixed;
    top: 72px; left: 50%;
    transform: translate(-50%, -8px);
    width: min(880px, calc(100vw - 48px));
    background: rgba(244,240,232,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    box-shadow: 0 24px 60px -20px rgba(26,27,31,.18);
    padding: 16px 16px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s cubic-bezier(.6,0,.2,1), transform .22s cubic-bezier(.6,0,.2,1), top .3s ease;
    z-index: 99;
    overflow: hidden;
  }
  nav.scrolled ~ .nav-dropdown-panel,
  nav.scrolled .nav-dropdown-panel{ top: 60px; }
  .nav-dropdown-panel::before{
    content:""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(26,27,31,.08) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 30%, transparent 80%);
    mask-image: radial-gradient(circle at 50% 0%, #000 30%, transparent 80%);
    pointer-events: none;
    opacity: .55;
  }
  .nav-dropdown.is-open .nav-dropdown-panel{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .nav-dropdown-grid{
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
    position: relative; z-index: 1;
  }
  .nav-dropdown-item{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px; row-gap: 4px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink);
    transition: background .25s cubic-bezier(.6,0,.2,1);
  }
  .nav-dropdown-item-title{
    font-family: var(--display);
    font-size: 16px; font-weight: 600; letter-spacing: -.01em;
    color: var(--ink);
    grid-column: 1; grid-row: 1;
  }
  .nav-dropdown-item-desc{
    font-size: 13px; font-weight: 400; line-height: 1.45;
    color: var(--ink-soft);
    grid-column: 1; grid-row: 2;
  }
  .nav-dropdown-item-chev{
    grid-column: 2; grid-row: 1 / span 2;
    align-self: center;
    font-family: var(--display);
    font-size: 22px; line-height: 1;
    color: var(--ink-soft);
    transition: transform .25s cubic-bezier(.6,0,.2,1), color .25s ease;
  }
  .nav-dropdown-item:hover{ background: rgba(255,138,61,.06); }
  .nav-dropdown-item:hover .nav-dropdown-item-chev{
    color: var(--sun-3);
    transform: translateX(4px);
  }
  .nav-dropdown-item:focus-visible{
    outline: 2px solid var(--sun-2);
    outline-offset: -2px;
    background: rgba(255,138,61,.06);
  }
  .nav-dropdown-all{
    display: block; text-align: center;
    margin: 12px -16px 0;
    padding: 14px 20px;
    border-top: 1px solid var(--line-soft);
    color: var(--sun-text);
    font-size: 14px; font-weight: 500;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
    position: relative;
    z-index: 1;
  }
  .nav-dropdown-all:hover{
    background: rgba(255,138,61,.06);
    color: var(--sun-text);
  }
  @media (max-width: 820px){
    .nav-dropdown-panel{ display: none; }
  }

  @keyframes tickPulse{
    0%, 100%{ transform: scale(1);   opacity: 1; }
    50%     { transform: scale(1.6); opacity: .55; }
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero{
    position: relative;
    min-height: 100vh;
    padding: 130px 36px 56px;
    overflow: hidden;
    display: flex; flex-direction: column;
  }

  /* Low sun gradient corner, signature brand visual */
  .sun-glow{
    position: absolute;
    top: -30vh; right: -20vw;
    width: 90vw; height: 90vw;
    max-width: 1200px; max-height: 1200px;
    background: radial-gradient(circle at center,
      var(--sun-1) 0%,
      var(--sun-2) 25%,
      rgba(255,138,61,.5) 45%,
      transparent 70%);
    filter: blur(20px);
    opacity: .85;
    pointer-events: none;
    z-index: 0;
    animation: sunBreath 8s ease-in-out infinite;
  }
  @keyframes sunBreath{
    0%, 100%{ transform: scale(1)    translate(0, 0);   opacity: .85; }
    50%     { transform: scale(1.05) translate(-2%,2%); opacity: 1;   }
  }


  .hero-inner{
    position: relative; z-index: 5;
    max-width: 1280px; margin: 0 auto; width: 100%;
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
  }

  .eyebrow{
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--body);
    font-size: 13px; font-weight: 500;
    letter-spacing: .04em;
    color: var(--ink-soft);
    margin-bottom: 36px;
    animation: fadeUp .7s .1s both ease-out;
  }
  .eyebrow .tick-line{
    width: 28px; height: 1px;
    background: var(--ink);
    transform-origin: left;
    animation: tickGrow 2s ease-in-out infinite;
  }
  @keyframes tickGrow{
    0%, 100%{ transform: scaleX(.4); }
    50%     { transform: scaleX(1);  }
  }

  h1.hero-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(31px, 5.6vw, 92px);
    line-height: .95;
    letter-spacing: -.045em;
    color: var(--ink);
    max-width: 14ch;
  }
  h1 .hero-line{ display: block; overflow: hidden; padding: 0 0 .5em; margin-bottom: -.5em; }
  h1 .hero-line > span{
    display: inline-block;
    transform: translateY(150%);
    animation: rise .9s cubic-bezier(.2,.85,.2,1) forwards;
  }
  h1 .hero-line:nth-child(1) > span{ animation-delay: .25s; }
  h1 .hero-line:nth-child(2) > span{ animation-delay: .38s; }
  h1 .hero-line:nth-child(3) > span{ animation-delay: .51s; }

  /* The signature к-mark / orange accent word */
  h1 .glow{
    background: linear-gradient(95deg, var(--sun-3) 0%, var(--sun-1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    font-weight: 500;
    position: relative;
  }

  /* Typewriter accent · cycles through words by typing them out letter-by-letter */
  .hero-typewriter{
    display: inline-block;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(95deg, var(--sun-3) 0%, var(--sun-1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    white-space: nowrap;
    padding-right: 0.3em;
    margin-right: -0.3em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .hero-typewriter::after{
    content: "";
    display: inline-block;
    width: 0.06em;
    height: 0.9em;
    margin-left: 0.04em;
    vertical-align: -0.1em;
    background: var(--sun-1);
    animation: heroTypewriterCaret 0.9s steps(2, end) infinite;
  }
  @keyframes heroTypewriterCaret{
    0%, 50%   { opacity: 1; }
    51%, 100% { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce){
    .hero-typewriter::after{ display: none; }
  }

  /* hero meta row */
  .hero-meta{
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 32px;
    margin-top: 56px;
  }
  .hero-sub{
    max-width: 560px;
    font-size: 18px; line-height: 1.55;
    color: var(--ink-soft);
    animation: fadeUp .8s .7s both ease-out;
  }
  .hero-sub strong{ color: var(--ink); font-weight: 500; }

  .hero-cta-row{
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
    animation: fadeUp .8s .82s both ease-out;
  }
  .hero-link{
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ink); text-decoration: none;
    font-family: var(--body);
    font-weight: 500; font-size: 15px;
    transition: gap .25s ease;
  }
  .hero-link:hover{ gap: 16px; }
  .hero-link .arrow{ display: inline-block; transition: transform .35s ease; }
  .hero-link:hover .arrow{ transform: translateX(4px); }

  .hero-cta-meta{
    display: inline-flex; align-items: center; flex-wrap: wrap;
    gap: 14px;
    font-family: var(--body);
    font-size: 13px;
    color: var(--ink-soft);
    animation: fadeUp .8s .95s both ease-out;
  }
  .hero-cta-meta .dot{
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--ink-soft);
    opacity: .5;
  }
  .btn-primary{
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 28px;
    background: var(--ink); color: var(--clarity);
    border-radius: 999px;
    font-family: var(--body);
    font-weight: 500; font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s cubic-bezier(.4,.2,.2,1), padding .35s cubic-bezier(.4,.2,.2,1);
  }
  .btn-primary::before{
    content: "";
    position: absolute; inset: 0;
    z-index: -1;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    transform: translateX(-101%);
    transition: transform .55s cubic-bezier(.6,0,.2,1);
  }
  .btn-primary:hover{ transform: translateY(-2px); padding-right: 36px; }
  .btn-primary:hover::before{ transform: translateX(0); }
  .btn-primary .arrow-circle{
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--clarity); color: var(--ink);
    display: grid; place-items: center;
    transition: transform .4s cubic-bezier(.4,.2,.2,1);
  }
  .btn-primary:hover .arrow-circle{ transform: rotate(-45deg); }

  /* Hero two-column grid, text left, moment-foto right */
  .hero-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 80px;
    align-items: center;
  }
  .hero-text{ min-width: 0; }

  .hero-figure{
    margin: 0;
    position: relative;
    z-index: 10;
    display: flex; flex-direction: column; gap: 18px;
    animation: fadeUp .9s .95s both ease-out;
  }
  .hero-figure-frame{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--sand);
    box-shadow:
      0 1px 0 rgba(26,27,31,.04),
      0 30px 60px -20px rgba(26,27,31,.28),
      0 12px 30px -12px rgba(255,138,61,.18);
  }
  .hero-figure-frame picture{
    display: block;
    width: 100%; height: 100%;
  }
  .hero-figure-frame img{
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 35% 50%;
    display: block;
  }
  .hero-figure-frame::after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,184,119,.08), rgba(255,106,26,.04));
    pointer-events: none;
  }
  .hero-figure-badge{
    position: absolute;
    left: 16px; bottom: 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--clarity);
    background: rgba(26,27,31,.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 12px;
    border-radius: 999px;
    z-index: 3;
  }

  .hero-figure-caption{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--ink-soft);
    padding-left: 4px;
  }

  /* Hero scan-card: alternative path for "first see, then talk" visitors */
  .hero-scan-card{
    position: absolute;
    right: -32px; bottom: -36px;
    width: 78%;
    min-width: 320px;
    max-width: 440px;
    padding: 24px 24px 22px;
    background: var(--ink);
    background-image: radial-gradient(120% 80% at 0% 100%, rgba(255,138,61,.12), transparent 60%);
    border-radius: 24px;
    box-shadow:
      0 24px 60px -20px rgba(26,27,31,.45),
      inset 0 1px 0 rgba(255,255,255,.04);
    z-index: 200;
    animation: fadeUp 1.1s 1.6s both ease-out;
    isolation: isolate;
  }
  .hero-scan-card::before,
  .hero-scan-card::after{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
  }
  .hero-scan-card::before{
    background: radial-gradient(180px circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,201,82,.18), transparent 65%);
    z-index: 1;
  }
  .hero-scan-card::after{
    padding: 1.5px;
    background: radial-gradient(160px circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,213,108,.95), rgba(255,170,60,.35) 45%, transparent 75%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: 3;
  }
  .hero-scan-card:hover::before,
  .hero-scan-card:hover::after{ opacity: 1; }
  .hero-scan-card:focus-within::before,
  .hero-scan-card:focus-within::after{ opacity: 0; }
  .hero-scan-card > *{ position: relative; z-index: 2; }
  .hero-scan-card__close{
    position: absolute;
    top: 10px; right: 10px;
    width: 24px; height: 24px;
    display: grid; place-items: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: rgba(255,255,255,.45);
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s ease, color .2s ease, background-color .2s ease;
    z-index: 5;
  }
  .hero-scan-card:hover .hero-scan-card__close,
  .hero-scan-card:focus-within .hero-scan-card__close,
  .hero-scan-card__close:focus-visible{
    opacity: 1;
  }
  .hero-scan-card__close:hover{
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.08);
  }
  .hero-scan-card__close:focus-visible{
    outline: 2px solid var(--sun-3);
    outline-offset: 2px;
  }
  .hero-scan-card.is-dismissed{
    display: none;
  }
  .hero-scan-card__eyebrow{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.6);
    margin-bottom: 10px;
  }
  .hero-scan-card__title{
    font-family: var(--display);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: var(--clarity);
    margin-bottom: 8px;
  }
  .hero-scan-card__sub{
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
  }
  .hero-scan-card__form{
    display: flex;
    gap: 8px;
    align-items: stretch;
  }
  .hero-scan-card__input{
    flex: 1; min-width: 0;
    padding: 13px 14px;
    background: var(--clarity);
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .hero-scan-card__input::placeholder{
    color: rgba(26,27,31,.6);
  }
  .hero-scan-card__input:focus{
    outline: none;
    border-color: var(--sun-3);
    box-shadow: 0 0 0 3px rgba(255,106,26,.25);
  }
  .hero-scan-card__input.is-error{
    border-color: #E5564E;
    box-shadow: 0 0 0 3px rgba(229,86,78,.22);
  }
  .hero-scan-card__submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    background: var(--sun-3);
    border: none;
    border-radius: 14px;
    font-family: var(--body);
    font-weight: 500;
    font-size: 14px;
    color: var(--clarity);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .25s ease, transform .25s ease;
  }
  .hero-scan-card__submit:hover{
    background: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  }
  .hero-scan-card__submit:focus-visible{
    outline: 2px solid var(--sun-3);
    outline-offset: 2px;
  }
  .hero-scan-card__submit[aria-busy="true"]{
    background: rgba(255,255,255,.10);
    cursor: progress;
  }
  .hero-scan-card__submit[aria-busy="true"]:hover{
    box-shadow: none;
  }
  .hero-scan-card__submit .tick-mini span{
    background: var(--clarity);
    opacity: .6;
  }
  .hero-scan-card__helper{
    font-family: var(--body);
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255,255,255,.6);
    margin-top: 10px;
    min-height: 1em;
  }
  .hero-scan-card__helper.is-error{
    color: #FFB1AB;
  }
  .hero-scan-card__disclaimer{
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .04em;
    color: rgba(255,255,255,.6);
    margin-top: 12px;
  }

  /* Hero bottom: ticking time bar (signature) */
  .ticker-bar{
    position: relative; z-index: 5;
    margin-top: auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px; flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 40px;
    animation: fadeUp 1s 1.4s both ease-out;
  }
  .tick-status{
    display: flex; align-items: center; gap: 12px;
    font-family: var(--body);
    font-size: 12px; color: var(--ink-soft);
    letter-spacing: .04em;
  }
  .tick-mini{
    display: inline-flex; gap: 3px;
  }
  .tick-mini span{
    width: 2px; height: 12px;
    background: var(--ink);
    opacity: .25;
    animation: tickWave 1.6s infinite;
  }
  .tick-mini span:nth-child(1){ animation-delay: 0s; }
  .tick-mini span:nth-child(2){ animation-delay: .15s; }
  .tick-mini span:nth-child(3){ animation-delay: .3s; }
  .tick-mini span:nth-child(4){ animation-delay: .45s; }
  .tick-mini span:nth-child(5){ animation-delay: .6s; }
  @keyframes tickWave{
    0%, 100%{ opacity: .25; transform: scaleY(.6); }
    50%     { opacity: 1;   transform: scaleY(1);  }
  }

  .live-stats{
    display: flex; gap: 48px;
  }
  .live-stat .num{
    font-family: var(--display);
    font-weight: 500;
    font-size: 28px;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1;
  }
  .live-stat .num em{ color: var(--sun-3); font-style: normal; }
  .live-stat .label{
    font-size: 11px;
    color: var(--ink-soft);
    margin-top: 4px;
    letter-spacing: .04em;
  }

  /* ============================================================
     MANIFESTO SECTION, "Geen AI bureau. Maar ademruimte."
     ============================================================ */
  .manifesto{
    position: relative;
    padding: 200px 36px;
    background: var(--bg);
    overflow: hidden;
  }
  .manifesto-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
  }

  /* Tikt signature mark: 8-ray asterisk with orange core, sand-cream lines.
     Replaces literal к decoration and the Claude-logo watermark. */
  .tikt-mark{
    display: block;
    pointer-events: none;
    user-select: none;
  }
  .tikt-mark .ray{
    stroke: currentColor;
    stroke-width: 7;
    stroke-linecap: round;
  }
  .tikt-mark .core{ fill: #eee6d6; }
  .tikt-mark--watermark{
    position: absolute;
    z-index: 1;
    color: #eee6d6;
  }

  .manifesto-eyebrow{
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 40px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .manifesto-eyebrow::before{
    content: "";
    width: 24px; height: 1px;
    background: var(--ink-soft);
  }

  .manifesto-text{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 76px);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--ink);
    max-width: 22ch;
  }
  .manifesto-text .strike{
    position: relative;
    display: inline-block;
    color: var(--ink-soft);
  }
  .manifesto-text .strike::after{
    content: "";
    position: absolute;
    left: -.02em; right: -.02em;
    top: 53%;
    height: 4px;
    background: var(--sun-3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(.7,0,.3,1);
  }
  .manifesto-text.in-view .strike::after{ transform: scaleX(1); }

  .manifesto-text .reveal{
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    font-weight: 500;
  }

  .manifesto-rule{
    margin: 80px 0 60px;
    display: flex; align-items: center; gap: 24px;
  }
  .manifesto-rule .line{
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .manifesto-rule .marker{
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 32% 30%, var(--sun-1), var(--sun-3) 90%);
    box-shadow:
      0 0 14px rgba(255,106,26,.45),
      inset 0 -2px 5px -1px rgba(26,27,31,.25),
      inset 0 2px 4px -1px rgba(255,255,255,.45);
  }

  .manifesto-quote{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .manifesto-quote-left{
    font-family: var(--body);
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: .04em;
  }
  .manifesto-quote-right{
    font-family: var(--display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -.01em;
  }
  .manifesto-quote-right strong{
    font-weight: 500;
    color: var(--sun-3);
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
  }

  /* ============================================================
     PROBLEM SECTION, "Je team rent in cirkels"
     ============================================================ */
  .problem{
    position: relative;
    padding: 160px 36px;
    background: var(--ink);
    color: var(--off-white);
    overflow: hidden;
  }
  .problem .dot-grid{
    background-image: radial-gradient(rgba(244,240,232,.10) 1px, transparent 1px);
  }
  .problem-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .problem-eyebrow{
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(244,240,232,.6);
    margin-bottom: 32px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .problem-eyebrow::before{
    content: ""; width: 6px; height: 6px;
    background: var(--sun-3);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--sun-3);
  }

  .problem-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 92px);
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--off-white);
    max-width: 16ch;
    margin-bottom: 36px;
  }
  .problem-title em{
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }

  .problem-text{
    font-size: 18px; line-height: 1.6;
    color: rgba(244,240,232,.7);
    max-width: 460px;
    margin-bottom: 40px;
  }
  .problem-text strong{ color: var(--off-white); font-weight: 500; }

  .problem-list{
    list-style: none;
    display: flex; flex-direction: column; gap: 18px;
    max-width: 460px;
  }
  .problem-list li{
    padding-left: 36px;
    position: relative;
    font-size: 16px;
    color: rgba(244,240,232,.8);
    line-height: 1.5;
  }
  .problem-list li::before{
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 16px; height: 1px;
    background: var(--sun-3);
  }
  .problem-list li::after{
    content: "";
    position: absolute;
    left: 14px; top: 6px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sun-3);
    box-shadow: 0 0 8px var(--sun-3);
  }

  /* Animated cycle visual, team running in circles */
  .cycle-stage{
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .cycle-stage svg{
    width: 100%; height: 100%;
  }
  .orbit{
    transform-origin: center;
    animation: orbit linear infinite;
  }
  .orbit-1{ animation-duration: 22s; }
  .orbit-2{ animation-duration: 16s; animation-direction: reverse; }
  .orbit-3{ animation-duration: 28s; }
  @keyframes orbit{
    to{ transform: rotate(360deg); }
  }

  .cycle-center{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
  }
  .cycle-center .clock-dot{
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--sun-3);
    box-shadow: 0 0 30px var(--sun-3);
    margin: 0 auto 14px;
    animation: tickPulse 1.6s infinite;
  }
  .cycle-center .label{
    font-family: var(--display);
    font-size: 14px;
    color: var(--off-white);
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .cycle-label{
    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    fill: rgba(244,240,232,.72);
    text-anchor: middle;
    dominant-baseline: middle;
    animation: labelPulse 5s ease-in-out infinite;
  }
  .cycle-label:nth-of-type(1){ animation-delay: 0s; }
  .cycle-label:nth-of-type(2){ animation-delay: 1s; }
  .cycle-label:nth-of-type(3){ animation-delay: 2s; }
  .cycle-label:nth-of-type(4){ animation-delay: 3s; }
  .cycle-label:nth-of-type(5){ animation-delay: 4s; }
  @keyframes labelPulse{
    0%, 100% { opacity: .55; }
    50%      { opacity: 1; }
  }

  /* ============================================================
     SOLUTION, Bento grid
     ============================================================ */
  .solution{
    position: relative;
    padding: 160px 36px;
    background: var(--bg);
    overflow: hidden;
  }
  .solution .dot-grid{ opacity: .6; }
  .solution-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
  }
  .section-header{
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 60px; flex-wrap: wrap;
    margin-bottom: 64px;
  }
  .section-header .left{ max-width: 700px; }
  .section-eyebrow{
    font-family: var(--body);
    font-size: 12px; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .section-eyebrow::before{
    content: ""; width: 28px; height: 1px;
    background: var(--ink-soft);
  }
  .section-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--ink);
  }
  .section-title em{
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .section-meta{
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 320px;
    line-height: 1.55;
  }

  /* Bento grid */
  .bento{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 160px;
    gap: 16px;
  }
  .bento-cell{
    background: var(--clarity);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    position: relative; overflow: hidden;
    transition: transform .4s cubic-bezier(.3,.7,.3,1), border-color .3s ease;
  }
  .bento-cell:hover{
    transform: translateY(-4px);
    border-color: rgba(255,106,26,.3);
  }
  .bento-cell .cell-eyebrow{
    font-family: var(--body);
    font-size: 11px; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 12px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .cell-live{
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: tickPulse 1.6s infinite;
  }
  .cell-orange{ background: var(--sun-3); box-shadow: 0 0 8px var(--sun-3); }

  /* Cell positions */
  .c-chat   { grid-column: span 5; grid-row: span 2; }
  .c-stat-1 { grid-column: span 3; grid-row: span 1; }
  .c-stat-2 { grid-column: span 4; grid-row: span 1; }
  .c-flow   { grid-column: span 4; grid-row: span 2; }
  .c-pulse  { grid-column: span 3; grid-row: span 2; }
  .c-stack  { grid-column: span 5; grid-row: span 1; }

  /* Chatbot cell */
  .chat-window{
    margin-top: 14px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .bubble{
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    animation: bubbleIn .5s forwards;
  }
  .bubble.user{
    align-self: flex-end;
    background: var(--ink); color: var(--off-white);
    border-bottom-right-radius: 4px;
  }
  .bubble.bot{
    align-self: flex-start;
    background: var(--sand); color: var(--ink);
    border-bottom-left-radius: 4px;
  }
  .bubble.b1{ animation-delay: 1.0s; }
  .bubble.b2{ animation-delay: 2.2s; }
  .bubble.b3{ animation-delay: 3.4s; }
  .typing{
    display: inline-flex; gap: 4px; align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--sand);
    align-self: flex-start;
    opacity: 0;
    animation: bubbleIn .4s 1.7s forwards, fadeOut .3s 2.2s forwards;
  }
  .typing span{
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--ink-soft);
    animation: typeBounce 1.2s infinite;
  }
  .typing span:nth-child(2){ animation-delay: .15s; }
  .typing span:nth-child(3){ animation-delay: .3s; }
  @keyframes bubbleIn{ from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
  @keyframes fadeOut{ to{opacity:0;height:0;padding:0} }
  @keyframes typeBounce{
    0%, 100%{ transform: translateY(0); opacity: .4 }
    50%     { transform: translateY(-4px); opacity: 1 }
  }

  /* Stat cells */
  .stat-num{
    font-family: var(--display);
    font-weight: 500;
    font-size: 44px;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--ink);
  }
  .stat-num em{ color: var(--sun-3); font-style: normal; }
  .stat-meta{
    font-size: 13px; color: var(--ink-soft);
    margin-top: 8px;
  }
  .spark{
    margin-top: 10px; height: 24px; width: 100%;
  }

  /* Flow cell */
  .flow{
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 280 / 200;
    margin: 12px auto 0;
  }
  .flow svg{ display: block; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
  .flow .node rect{
    fill: var(--bg);
    stroke: var(--line);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
  }
  .flow .node text{
    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;
    fill: var(--ink);
    dominant-baseline: central;
  }
  .flow .node{
    transform-box: fill-box;
    transform-origin: center;
    animation: nodePulse 4.5s infinite ease-out;
  }
  .n1 .nd{ fill: #6aa6ff; }
  .n2 .nd{ fill: var(--sun-3); }
  .n3 .nd{ fill: #4ade80; }
  .n4 .nd{ fill: #ef7a8e; }
  .n1{ animation-delay: 0s;   }
  .n2{ animation-delay: 1s;   }
  .n3{ animation-delay: 2.2s; }
  .n4{ animation-delay: 3.8s; }

  @keyframes nodePulse{
    0%, 6%, 100% { transform: scale(1);    opacity: .85; }
    2%           { transform: scale(1.04); opacity: 1;   }
  }

  @media (prefers-reduced-motion: reduce){
    .flow .node{ animation: none; }
    .flow svg .flow-packet{ display: none; }
    .flow svg .flow-path{ stroke: rgba(26,27,31,.18); }
  }

  /* Voice / pulse cell */
  .pulse-stage{
    margin-top: 12px;
    display: flex; align-items: center; justify-content: center;
    height: calc(100% - 80px);
    position: relative;
  }
  .ring{
    position: absolute;
    border: 1.5px solid var(--sun-3);
    border-radius: 50%;
    opacity: 0;
  }
  .r1{ width: 64px; height: 64px; animation: ringExpand 3s infinite ease-out; }
  .r2{ width: 64px; height: 64px; animation: ringExpand 3s infinite ease-out 1s; }
  .r3{ width: 64px; height: 64px; animation: ringExpand 3s infinite ease-out 2s; }
  .pulse-core{
    width: 64px; height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--sun-1), var(--sun-3));
    box-shadow: 0 0 30px rgba(255,106,26,.45);
    display: grid; place-items: center;
    color: var(--clarity); font-weight: 600;
    font-family: var(--display);
  }
  @keyframes ringExpand{
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(3.2); opacity: 0;  }
  }
  .pulse-meta{
    position: absolute; bottom: 16px; left: 24px; right: 24px;
    display: flex; justify-content: space-between;
    font-size: 10px; color: var(--ink-soft);
  }

  /* Stack chips */
  .stack{ margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
  .chip{
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--line);
    font-family: var(--body);
    font-size: 12px; font-weight: 500;
    color: var(--ink);
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform .3s ease;
  }
  .chip:hover{ transform: translateY(-2px); }
  .chip .dot{ width: 6px; height: 6px; border-radius: 50%; }

  /* ============================================================
     APPROACH, 3 step process
     ============================================================ */
  .approach{
    position: relative;
    padding: 160px 36px;
    background: var(--sand);
    overflow: hidden;
  }
  .approach-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
  }
  .steps{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .step{
    background: var(--bg);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.3,.7,.3,1);
  }
  .step:hover{ transform: translateY(-6px); }
  .step-num{
    font-family: var(--display);
    font-weight: 500;
    font-size: 14px;
    color: var(--sun-text);
    letter-spacing: .04em;
    margin-bottom: 60px;
    display: flex; align-items: center; gap: 10px;
  }
  .step-num::before{
    content: ""; width: 24px; height: 1px; background: var(--sun-3);
  }
  .step-icon{
    width: 56px; height: 56px;
    margin-bottom: 24px;
  }
  .step-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: 28px;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .step-text{
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .step-arrow{
    position: absolute;
    top: 36px; right: 36px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ink-soft);
    transition: transform .35s ease, background .35s ease, color .35s ease;
  }
  .step:hover .step-arrow{
    transform: rotate(-45deg);
    background: var(--ink);
    color: var(--clarity);
    border-color: var(--ink);
  }

  /* ============================================================
     BRAND INTRO, "Jouw partner voor AI" with banner photo
     ============================================================ */
  .brand-intro{
    position: relative;
    padding: 160px 36px;
    background: var(--sand);
    overflow: hidden;
  }
  .brand-intro .dot-grid{
    background-image: radial-gradient(rgba(26,27,31,.10) 1px, transparent 1px);
    opacity: .8;
  }
  .brand-intro-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
  }
  .brand-intro-eyebrow{
    font-family: var(--body);
    font-size: 12px; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 28px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .brand-intro-eyebrow::before{
    content: ""; width: 28px; height: 1px;
    background: var(--ink-soft);
  }
  .brand-intro-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -.035em;
    color: var(--ink);
    margin-bottom: 36px;
    max-width: 12ch;
  }
  .brand-intro-title em{
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .brand-intro-text p{
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 20px;
  }
  .brand-intro-text p strong{ color: var(--ink); font-weight: 500; }
  .brand-intro-text p a{
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255,138,61,.5);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s ease, color .2s ease;
  }
  .brand-intro-text p a:hover{
    color: var(--ink);
    text-decoration-color: rgba(255,138,61,1);
  }
  .brand-intro-meta{
    display: flex; gap: 32px;
    margin: 40px 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .brand-intro-meta div{ flex: 1; }
  .brand-intro-meta .num{
    font-family: var(--display);
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1;
  }
  .brand-intro-meta .num em{ color: var(--sun-3); font-style: normal; }
  .brand-intro-meta .label{
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 6px;
    letter-spacing: .04em;
  }
  .text-link{
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ink); text-decoration: none;
    font-weight: 500; font-size: 15px;
    font-family: var(--body);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: gap .25s ease;
  }
  .text-link:hover{ gap: 16px; }
  .text-link .arrow{
    display: inline-block;
    transition: transform .35s ease;
  }
  .text-link:hover .arrow{ transform: rotate(-45deg); }

  .brand-intro-image{
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
  }
  .brand-intro-image img{
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.3,.7,.3,1);
  }
  .brand-intro:hover .brand-intro-image img{ transform: scale(1.03); }
  /* warm overlay so it integrates with the sand background */
  .brand-intro-image::after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,27,31,.15) 100%);
    pointer-events: none;
  }
  .image-tag{
    position: absolute;
    z-index: 2;
    bottom: 24px; left: 24px;
    padding: 10px 18px;
    background: rgba(244,240,232,.92);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(255,255,255,.5);
  }
  .image-tag::before{
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--sun-3);
    box-shadow: 0 0 8px var(--sun-3);
    animation: tickPulse 1.6s infinite;
  }
  @keyframes floatDot{
    0%, 100%{ transform: translate(0, 0); }
    50%     { transform: translate(-6px, -10px); }
  }

  /* ============================================================
     TESTIMONIAL, updated with photo
     ============================================================ */
  .testimonial-grid{
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
  }
  .testimonial-photo{
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
  }
  .testimonial-photo img{
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.3,.7,.3,1);
  }
  .testimonial-photo:hover img{ transform: scale(1.03); }
  /* glowing orange shape behind photo */
  .testimonial-photo-glow{
    position: absolute;
    bottom: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sun-1), transparent 65%);
    filter: blur(30px);
    opacity: .85;
    pointer-events: none;
    z-index: -1;
    animation: floatDot 6s ease-in-out infinite;
  }
  .testimonial.has-photo .testimonial-inner{ text-align: left; }
  .testimonial.has-photo .testimonial-mark{
    text-align: left;
    font-size: 100px;
    margin-bottom: 8px;
  }
  .testimonial.has-photo .testimonial-quote{
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
  .testimonial.has-photo .testimonial-author{
    justify-content: flex-start;
  }

  /* ============================================================
     MOMENT, full-width photo with overlay card
     ============================================================ */
  .moment{
    position: relative;
    background: var(--bg);
    padding: 0;
  }
  .moment-photo{
    position: relative;
    height: 560px;
    overflow: hidden;
  }
  .moment-photo img{
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 65%;
    display: block;
    transition: transform 1.2s cubic-bezier(.3,.7,.3,1);
  }
  .moment:hover .moment-photo img{ transform: scale(1.02); }

  .moment-overlay{
    position: absolute; inset: 0;
    background: linear-gradient(
      180deg,
      rgba(26,27,31,.05) 0%,
      transparent 25%,
      transparent 55%,
      rgba(26,27,31,.35) 100%
    );
    pointer-events: none;
  }

  .moment-card{
    position: absolute;
    bottom: 56px; right: 56px;
    max-width: 460px;
    padding: 36px;
    background: rgba(244,240,232,.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(26,27,31,.18);
  }
  .moment-eyebrow{
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 20px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .moment-eyebrow::before{
    content: ""; width: 28px; height: 1px;
    background: var(--sun-3);
  }
  .moment-quote{
    font-family: var(--display);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .moment-quote em{
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .moment-meta{
    display: flex; align-items: center; gap: 14px;
    font-size: 13px;
    color: var(--ink-soft);
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .moment-meta strong{ color: var(--ink); font-weight: 500; }

  .moment-tag{
    position: absolute;
    top: 56px; left: 56px;
    padding: 11px 18px;
    background: rgba(244,240,232,.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(255,255,255,.5);
  }
  .moment-tag .dot{
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--sun-3);
    box-shadow: 0 0 8px var(--sun-3);
    animation: tickPulse 1.6s infinite;
  }

  @media (max-width: 820px){
    .moment-photo{ height: 540px; }
    .moment-card{
      bottom: 24px; left: 20px; right: 20px;
      max-width: none;
      padding: 24px;
      border-radius: 18px;
    }
    .moment-quote{ font-size: 22px; }
    .moment-tag{
      top: 24px; left: 20px;
      padding: 8px 14px;
      font-size: 12px;
    }
  }

  .proof-strip{
    position: relative;
    padding: 56px 0 64px;
    background: var(--bg);
    overflow: hidden;
  }
  .proof-eyebrow{
    text-align: center;
    font-family: var(--body);
    font-size: 11px; font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 36px;
  }
  .proof-track{
    display: flex; gap: 0; align-items: center;
    width: max-content;
    animation: marquee 50s linear infinite;
  }
  .proof-item{
    font-family: var(--display);
    font-size: 26px; font-weight: 500;
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    color: var(--ink);
    white-space: nowrap;
    display: flex; align-items: center; gap: 36px;
    padding: 0 36px;
  }
  .proof-item .dot{
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sun-3);
    flex: none;
  }
  @keyframes marquee{ to{ transform: translateX(-50%); } }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq{
    position: relative;
    padding: 160px 36px;
    background: var(--bg);
    border-top: 1px solid var(--line);
  }
  .faq-inner{
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 80px;
    align-items: start;
  }
  .faq-intro{ position: sticky; top: 120px; }
  .faq-eyebrow{
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--body);
    font-size: 12px; font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 36px;
  }
  .faq-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--ink);
    margin: 0 0 36px;
  }
  .faq-title em{
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    font-weight: 500;
  }
  .faq-help{
    font-family: var(--body);
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0 0 24px;
    max-width: 36ch;
  }
  .faq-list details{
    border-top: 1px solid var(--line);
    padding: 28px 0;
  }
  .faq-list details:last-child{ border-bottom: 1px solid var(--line); }
  .faq-list summary{
    list-style: none;
    cursor: pointer;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--ink);
    padding-right: 60px;
    position: relative;
    transition: color .25s ease;
  }
  .faq-list summary::-webkit-details-marker{ display: none; }
  .faq-list summary::after{
    content: "+";
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 20px; font-weight: 300;
    color: var(--ink-soft);
    background: transparent;
    transition: all .25s ease;
  }
  .faq-list summary:hover{ color: var(--sun-3); }
  .faq-list details[open] summary::after{
    content: "×";
    background: var(--ink); color: var(--clarity);
    border-color: var(--ink);
    font-size: 22px;
  }
  .faq-answer{
    margin-top: 18px;
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 64ch;
  }
  .faq-answer strong{ color: var(--ink); font-weight: 500; }
  @media (max-width: 900px){
    .faq{ padding: 100px 20px; }
    .faq-inner{ grid-template-columns: 1fr; gap: 48px; }
    .faq-intro{ position: static; }
  }

  /* ============================================================
     TESTIMONIAL
     ============================================================ */
  .testimonial{
    position: relative;
    padding: 180px 36px;
    background: var(--bg);
    overflow: hidden;
  }
  .testimonial-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    text-align: center;
  }
  .testimonial-mark{
    font-family: var(--display);
    font-weight: 500;
    font-size: 120px;
    line-height: .8;
    color: var(--sun-3);
    margin-bottom: 24px;
    opacity: .85;
  }
  .testimonial-quote{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 56px;
    max-width: 28ch;
    margin-left: auto; margin-right: auto;
  }
  .testimonial-quote em{
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .testimonial-author{
    display: inline-flex; align-items: center; gap: 16px;
  }
  .author-avatar{
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sun-1), var(--sun-3));
    position: relative;
  }
  .author-avatar::after{
    content: "L";
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: var(--clarity);
    font-family: var(--display);
    font-weight: 500; font-size: 22px;
  }
  .author-name{
    font-family: var(--display);
    font-weight: 500; font-size: 16px;
    color: var(--ink);
    text-align: left;
  }
  .author-role{
    font-size: 13px;
    color: var(--ink-soft);
  }

  /* ============================================================
     INSIGHTS
     ============================================================ */
  .insights{
    position: relative;
    padding: 160px 36px;
    background: var(--off-white);
    overflow: hidden;
  }
  .insights-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
  }
  .insights-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .insight-card{
    background: var(--clarity);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition: transform .4s cubic-bezier(.3,.7,.3,1);
  }
  .insight-card:hover{ transform: translateY(-6px); }
  .insight-thumb{
    aspect-ratio: 16/10;
    background: var(--sand);
    position: relative;
    overflow: hidden;
  }
  .insight-thumb::before,
  .insight-thumb::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .8;
    transition: transform .8s ease;
  }
  .insight-thumb::before{
    top: -30%; right: -10%;
    width: 70%; height: 100%;
    background: radial-gradient(circle, var(--sun-1), transparent 60%);
  }
  .insight-thumb::after{
    bottom: -40%; left: -10%;
    width: 60%; height: 90%;
    background: radial-gradient(circle, var(--sun-3), transparent 60%);
    opacity: .5;
  }
  .insight-card:hover .insight-thumb::before{ transform: scale(1.15); }
  .insight-card:hover .insight-thumb::after{ transform: scale(1.2); }

  .insight-thumb-tag{
    position: absolute;
    top: 18px; left: 18px;
    z-index: 2;
    padding: 6px 12px;
    background: rgba(244,240,232,.85);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--ink);
  }
  .insight-thumb-mark{
    position: absolute;
    bottom: 18px; right: 18px;
    z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    pointer-events: none;
    background:
      radial-gradient(circle at 32% 30%,
        var(--sun-1) 0%,
        var(--sun-3) 90%);
    box-shadow:
      0 8px 22px -6px rgba(255,106,26,.55),
      inset 0 -6px 14px -6px rgba(26,27,31,.32),
      inset 0 4px 10px -4px rgba(255,255,255,.55);
    transition: transform .4s cubic-bezier(.3,.7,.3,1);
  }
  .insight-card:hover .insight-thumb-mark{
    transform: scale(1.08) rotate(8deg);
  }

  .insight-body{
    padding: 28px 28px 32px;
    flex: 1;
    display: flex; flex-direction: column; gap: 16px;
  }
  .insight-meta{
    display: flex; gap: 16px;
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: .04em;
  }
  .insight-meta-divider{ color: var(--line); }
  .insight-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.015em;
    color: var(--ink);
    flex: 1;
  }
  .insight-arrow{
    align-self: flex-start;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ink-soft);
    transition: transform .35s ease, background .35s ease, color .35s ease;
  }
  .insight-card:hover .insight-arrow{
    transform: rotate(-45deg);
    background: var(--ink);
    color: var(--clarity);
    border-color: var(--ink);
  }

  /* ============================================================
     FINAL CTA
     ============================================================ */
  .final-cta{
    position: relative;
    padding: 200px 36px 120px;
    background: var(--ink);
    color: var(--off-white);
    overflow: hidden;
  }
  .final-cta .dot-grid{
    z-index: 1;
    background-image: radial-gradient(rgba(244,240,232,.10) 1px, transparent 1px);
  }
  /* DarkVeil ambient background, warm low-sun tint, behind the CTA.
     `screen` blend lets the orange glow add light over the ink while the
     veil's dark areas stay invisible. The bottom fade keeps the footer a
     clean dark band so CTA + footer read as one continuous surface. */
  .final-cta .darkveil-bg{
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: .85;
    mix-blend-mode: screen;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 44%, #000 92%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 44%, #000 92%, transparent 100%);
  }
  .final-cta .darkveil-bg canvas{
    display: block;
    width: 100%; height: 100%;
    mix-blend-mode: screen;
  }
  .final-cta-inner{
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    text-align: center;
  }
  .final-cta h2{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 7vw, 96px);
    line-height: 1.05;
    letter-spacing: -.035em;
    margin-bottom: 32px;
    color: var(--off-white);
    max-width: 16ch;
    margin-left: auto; margin-right: auto;
  }
  .final-cta h2 em{
    font-style: italic; padding-right: 0.3em; margin-right: -0.3em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .final-cta-sub{
    font-size: 18px;
    color: rgba(244,240,232,.7);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.55;
  }
  .final-buttons{
    display: inline-flex; gap: 14px;
    flex-wrap: wrap; justify-content: center;
  }
  .btn-light{
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 28px;
    background: var(--off-white); color: var(--ink);
    border-radius: 999px;
    font-family: var(--body);
    font-weight: 500; font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s ease, box-shadow .35s ease, color .35s ease;
  }
  .btn-light::before{
    content: "";
    position: absolute; inset: 0;
    z-index: -1;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    transform: translateX(-101%);
    transition: transform .55s cubic-bezier(.6,0,.2,1);
  }
  .btn-light:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(244,240,232,.18);
    color: var(--clarity);
  }
  .btn-light:hover::before{ transform: translateX(0); }
  .btn-light .arrow-circle{
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--ink); color: var(--off-white);
    display: grid; place-items: center;
    transition: transform .4s cubic-bezier(.4,.2,.2,1), background .35s ease, color .35s ease;
  }
  .btn-light:hover .arrow-circle{
    transform: rotate(-45deg);
    background: var(--clarity);
    color: var(--ink);
  }

  .btn-outline{
    display: inline-flex; align-items: center;
    padding: 18px 28px;
    background: transparent; color: var(--off-white);
    border: 1px solid rgba(244,240,232,.25);
    border-radius: 999px;
    font-family: var(--body);
    font-weight: 500; font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: border-color .35s ease, color .35s ease;
  }
  .btn-outline::before{
    content: "";
    position: absolute; inset: 0;
    z-index: -1;
    background: #000;
    transform: translateX(-101%);
    transition: transform .55s cubic-bezier(.6,0,.2,1);
  }
  .btn-outline:hover{
    border-color: #000;
    color: var(--clarity);
  }
  .btn-outline:hover::before{ transform: translateX(0); }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer{
    background: var(--ink);
    color: rgba(244,240,232,.6);
    padding: 40px 36px 40px;
    border-top: 1px solid rgba(244,240,232,.08);
  }
  .footer-inner{
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand{
    font-family: var(--display);
    font-weight: 600;
    font-size: 36px;
    color: var(--off-white);
    letter-spacing: -.03em;
    margin-bottom: 20px;
  }
  .footer-tagline{
    font-size: 14px;
    line-height: 1.55;
    max-width: 320px;
    margin-bottom: 24px;
  }
  .footer-col h3{
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 18px;
  }
  .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a{
    color: rgba(244,240,232,.6);
    text-decoration: none;
    font-size: 14px;
    transition: color .25s ease;
  }
  .footer-col a:hover{ color: var(--off-white); }
  .footer-bottom{
    max-width: 1280px; margin: 60px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(244,240,232,.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-size: 13px;
    color: rgba(244,240,232,.4);
  }

  /* ============================================================
     ANIMATIONS, global
     ============================================================ */
  @keyframes rise{   to{ transform: translateY(0); } }
  @keyframes fadeUp{ from{ opacity: 0; transform: translateY(20px) } to{ opacity: 1; transform: none } }

  /* Scroll-triggered */
  .fade-section{ opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(.4,.2,.2,1), transform .7s cubic-bezier(.4,.2,.2,1); }
  .fade-section.in-view{ opacity: 1; transform: none; }
  .stagger > *{ opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.4,.2,.2,1), transform .6s cubic-bezier(.4,.2,.2,1); }
  .stagger.in-view > *{ opacity: 1; transform: none; }
  .stagger.in-view > *:nth-child(1){ transition-delay: 0s; }
  .stagger.in-view > *:nth-child(2){ transition-delay: .07s; }
  .stagger.in-view > *:nth-child(3){ transition-delay: .14s; }
  .stagger.in-view > *:nth-child(4){ transition-delay: .21s; }
  .stagger.in-view > *:nth-child(5){ transition-delay: .28s; }

  /* Steps, slide in left to right one by one */
  .steps.stagger > .step{
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity .7s cubic-bezier(.4,.2,.2,1), transform .7s cubic-bezier(.4,.2,.2,1);
  }
  .steps.stagger.in-view > .step{ opacity: 1; transform: none; }
  .steps.stagger.in-view > .step:nth-child(1){ transition-delay: 0s; }
  .steps.stagger.in-view > .step:nth-child(2){ transition-delay: .25s; }
  .steps.stagger.in-view > .step:nth-child(3){ transition-delay: .5s; }
  @media (prefers-reduced-motion: reduce){
    .steps.stagger > .step{ opacity: 1; transform: none; transition: none; }
  }

  /* ============================================================
     TRUST STRIP, korte band met veiligheidsfeiten
     ============================================================ */
  .trust-strip{
    position: relative;
    padding: 80px 36px;
    background: var(--bg);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .trust-strip-inner{
    max-width: 1280px;
    margin: 0 auto;
  }
  .trust-strip-eyebrow{
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }
  .trust-strip-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .trust-strip-item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-strip-item .trust-mark{
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--ink);
  }
  .trust-strip-item .trust-mark .ray line{
    stroke: currentColor;
    stroke-width: 7;
    stroke-linecap: round;
  }
  .trust-strip-item .trust-mark .core{
    fill: var(--ink);
  }
  .trust-strip-body{
    min-width: 0;
  }
  .trust-strip-title{
    font-family: var(--display);
    font-weight: 500;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -.01em;
  }
  .trust-strip-meta{
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  /* ============================================================
     RESULTATEN, compacte strip met kerncijfers uit de cases
     ============================================================ */
  .results-strip{
    position: relative;
    padding: 96px 36px;
    background: var(--off-white);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
  }
  .results-strip .dot-grid{ opacity: .5; }
  .results-strip-inner{
    position: relative; z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
  }
  .results-strip-head{
    display: flex; align-items: baseline; justify-content: space-between;
    flex-wrap: wrap; gap: 12px 24px;
    margin-bottom: 48px;
  }
  .results-strip-eyebrow{
    font-family: var(--mono);
    font-size: 12px; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-soft);
  }
  .results-strip-title{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--ink);
    margin: 0;
  }
  .results-strip-title em{
    font-style: italic;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .results-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    overflow: hidden;
  }
  .result-cell{
    display: block;
    padding: 28px 24px;
    background: var(--clarity);
    text-decoration: none;
    transition: background .35s cubic-bezier(.4,.2,.2,1), transform .35s cubic-bezier(.4,.2,.2,1);
  }
  .result-cell:hover{ background: #FFF9F2; transform: translateY(-2px); }
  .result-figure{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(95deg, var(--sun-3), var(--sun-1));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
  }
  .result-figure .to{ -webkit-text-fill-color: var(--ink-soft); color: var(--ink-soft); font-weight: 400; }
  .result-figure .unit{ font-size: .42em; margin-left: .12em; letter-spacing: 0; }
  .result-label{
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .result-client{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--ink-soft);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .result-client .dot{
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--sun-3);
    flex-shrink: 0;
  }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1100px){
    .footer-inner{ grid-template-columns: 1fr 1fr; }
    .trust-strip-list{ grid-template-columns: 1fr 1fr; gap: 24px; }
    .results-grid{ grid-template-columns: 1fr 1fr; }
    .insights-grid, .steps{ grid-template-columns: 1fr 1fr; }
    .problem-inner{ grid-template-columns: 1fr; gap: 60px; }
    .manifesto-quote{ grid-template-columns: 1fr; gap: 24px; }
    .brand-intro-inner{ grid-template-columns: 1fr; gap: 48px; }
    .testimonial-grid{ grid-template-columns: 1fr; gap: 48px; }
    .brand-intro-image, .testimonial-photo{ aspect-ratio: 16/12; max-height: 520px; }
    .hero-grid{ grid-template-columns: 1fr; gap: 56px; }
    .hero-figure{ max-width: 480px; }
    .hero-scan-card{ right: 0; bottom: -28px; width: 95%; max-width: 460px; }
  }
  @media (max-width: 820px){
    nav, nav.scrolled{ padding: 14px 20px; }
    .nav-links{ display: none; }
    .nav-cta{ display: none; }
    .hero{ padding: 110px 20px 40px; }
    h1.hero-title{ font-size: clamp(36px, 11vw, 68px); }
    .rotator-wrap{ height: .9em; padding-bottom: .5em; margin-bottom: -.5em; }
    .rotator-track > span{ height: .9em; padding-bottom: .5em; line-height: .9em; }
    .hero-meta{ flex-direction: column; align-items: flex-start; gap: 32px; }
    .hero-scan-card{
      position: static;
      width: 100%;
      max-width: none;
      margin-top: -28px;
      padding: 22px 20px 20px;
    }
    .hero-scan-card__form{ flex-direction: column; }
    .hero-scan-card__submit{ width: 100%; min-height: 48px; }
    .hero-scan-card__input{ min-height: 48px; }
    .ticker-bar{ flex-direction: column; align-items: flex-start; gap: 20px; }
    .live-stats{ gap: 24px; flex-wrap: wrap; }
    .manifesto, .problem, .solution, .approach, .testimonial, .insights, .final-cta, .brand-intro{
      padding: 100px 20px;
    }
    .trust-strip{ padding: 56px 20px; }
    .trust-strip-list{ grid-template-columns: 1fr; gap: 20px; }
    .trust-strip-eyebrow{ margin-bottom: 24px; }
    .results-strip{ padding: 64px 20px; }
    .results-strip-head{ flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 32px; }
    .bento{
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 150px;
    }
    .c-chat   { grid-column: span 6; }
    .c-stat-1 { grid-column: span 3; }
    .c-stat-2 { grid-column: span 3; }
    .c-flow   { grid-column: span 3; }
    .c-pulse  { grid-column: span 3; }
    .c-stack  { grid-column: span 6; }
    .insights-grid, .steps{ grid-template-columns: 1fr; }
    .footer-inner{ grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 560px){
    .results-grid{ grid-template-columns: 1fr; }
  }

  /* ============================================================
     SCAN MODAL
     ============================================================ */
  .scan-modal{
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
  }
  .scan-modal[aria-hidden="false"]{
    pointer-events: auto;
    opacity: 1;
  }
  .scan-modal__backdrop{
    position: absolute; inset: 0;
    background: rgba(20,21,24,.62);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    cursor: pointer;
  }
  .scan-modal__shell{
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow: auto;
    background: var(--ink);
    background-image:
      radial-gradient(80% 60% at 20% 0%, rgba(255,138,61,.14), transparent 60%),
      radial-gradient(60% 50% at 100% 100%, rgba(255,106,26,.10), transparent 60%);
    border-radius: 28px;
    padding: 40px;
    box-shadow:
      0 40px 100px -30px rgba(0,0,0,.6),
      inset 0 1px 0 rgba(255,255,255,.06);
    transform: scale(.96) translateY(8px);
    transition: transform .35s cubic-bezier(.2,.85,.3,1);
  }
  .scan-modal[aria-hidden="false"] .scan-modal__shell{
    transform: scale(1) translateY(0);
  }
  .scan-modal__close{
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: var(--clarity);
    border: none;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
    z-index: 5;
  }
  .scan-modal__close:hover{
    background: rgba(255,255,255,.16);
    transform: scale(1.06);
  }
  .scan-modal__grid{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: stretch;
  }
  .scan-modal[data-state="complete"] .scan-modal__grid,
  .scan-modal[data-state="done"] .scan-modal__grid{
    display: none;
  }
  .scan-modal__complete,
  .scan-modal__done{
    display: none;
    text-align: center;
    padding: 20px 12px;
  }
  .scan-modal[data-state="complete"] .scan-modal__complete,
  .scan-modal[data-state="done"] .scan-modal__done{
    display: block;
    animation: fadeUp .5s ease-out both;
  }

  /* Mockup browser inside the modal */
  .scan-mockup{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--off-white);
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,.5),
      inset 0 0 0 1px rgba(255,255,255,.06);
    min-height: 420px;
    display: flex;
    flex-direction: column;
  }
  .scan-mockup__chrome{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(26,27,31,.06), rgba(26,27,31,.02));
    border-bottom: 1px solid rgba(26,27,31,.08);
    flex-shrink: 0;
  }
  .scan-mockup__dot{
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(26,27,31,.2);
  }
  .scan-mockup__dot:nth-child(1){ background: #FF6058; }
  .scan-mockup__dot:nth-child(2){ background: #FFBD2E; }
  .scan-mockup__dot:nth-child(3){ background: #28CA42; }
  .scan-mockup__url{
    margin-left: 12px;
    flex: 1;
    padding: 6px 14px;
    background: rgba(26,27,31,.05);
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .scan-mockup__viewport{
    position: relative;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .scan-mockup__line{
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(26,27,31,.10), rgba(26,27,31,.05), rgba(26,27,31,.10));
    background-size: 200% 100%;
    animation: scanShimmer 2.4s linear infinite;
    width: 100%;
  }
  .scan-mockup__line--xl{ height: 18px; width: 80%; }
  .scan-mockup__line--lg{ height: 12px; width: 60%; }
  .scan-mockup__line--short{ width: 50%; }
  .scan-mockup__row{
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    margin: 4px 0;
    align-items: center;
  }
  .scan-mockup__block{
    height: 64px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,138,61,.16), rgba(26,27,31,.06));
  }
  .scan-mockup__col{
    display: flex; flex-direction: column; gap: 8px;
  }
  .scan-mockup__grid-blocks{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: 6px 0;
  }
  .scan-mockup__card{
    height: 60px;
    border-radius: 8px;
    background: rgba(26,27,31,.05);
    border: 1px solid rgba(26,27,31,.04);
  }
  .scan-mockup__scanline{
    position: absolute;
    left: 0; right: 0;
    top: -50px;
    height: 90px;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(255,184,119,0) 8%,
      rgba(255,138,61,.3) 40%,
      rgba(255,106,26,.7) 50%,
      rgba(255,138,61,.3) 60%,
      transparent 92%);
    pointer-events: none;
    animation: scanSweep 2.6s cubic-bezier(.6,0,.4,1) infinite;
    z-index: 3;
    mix-blend-mode: multiply;
  }
  .scan-mockup__scanline::before{
    content: "";
    position: absolute;
    left: 4%; right: 4%;
    top: 50%;
    height: 1.5px;
    background: var(--sun-3);
    box-shadow:
      0 0 14px rgba(255,106,26,.95),
      0 0 30px rgba(255,138,61,.7);
  }
  @keyframes scanSweep{
    0%   { top: -10%; opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
  @keyframes scanShimmer{
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* Progress + checklist column */
  .scan-progress{
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--clarity);
    min-width: 0;
  }
  .scan-progress__eyebrow{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .scan-progress__eyebrow::before{
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sun-3);
    box-shadow: 0 0 12px rgba(255,106,26,.85);
    animation: scanPulse 1.4s ease-in-out infinite;
  }
  @keyframes scanPulse{
    0%, 100%{ opacity: 1; transform: scale(1); }
    50%     { opacity: .45; transform: scale(.75); }
  }
  .scan-progress__title{
    font-family: var(--display);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--clarity);
    margin-top: 6px;
  }
  .scan-progress__sub{
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-top: 2px;
    word-break: break-all;
  }
  .scan-checklist{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 6px 0 0;
    padding: 0;
  }
  .scan-step{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    font-family: var(--body);
    font-size: 14px;
    color: rgba(255,255,255,.42);
    transition: background-color .35s ease, color .35s ease;
  }
  .scan-step__icon{
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.18);
    position: relative;
    transition: all .3s ease;
  }
  .scan-step.is-active{
    background: rgba(255,106,26,.10);
    color: var(--clarity);
  }
  .scan-step.is-active .scan-step__icon{
    border-color: rgba(255,106,26,.3);
  }
  .scan-step.is-active .scan-step__icon::before{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--sun-3);
    border-right-color: var(--sun-3);
    animation: scanSpin 1s linear infinite;
  }
  .scan-step.is-done{
    color: rgba(255,255,255,.78);
  }
  .scan-step.is-done .scan-step__icon{
    border-color: var(--sun-3);
    background: var(--sun-3);
    box-shadow: 0 0 16px rgba(255,106,26,.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .scan-step.is-done .scan-step__icon::before{
    content: "";
    width: 8px; height: 4px;
    border-left: 1.5px solid var(--clarity);
    border-bottom: 1.5px solid var(--clarity);
    transform: translateY(-1px) rotate(-45deg);
  }
  @keyframes scanSpin{
    from{ transform: rotate(0deg); }
    to  { transform: rotate(360deg); }
  }
  .scan-progress__bar{
    height: 4px;
    background: rgba(255,255,255,.08);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 4px;
  }
  .scan-progress__fill{
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--sun-1), var(--sun-3));
    box-shadow: 0 0 12px rgba(255,106,26,.6);
    border-radius: 999px;
    transition: width .8s cubic-bezier(.4,.2,.2,1);
  }
  .scan-progress__meta{
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,.5);
    letter-spacing: .04em;
  }
  .scan-progress__meta .scan-progress__dot{
    width: 3px; height: 3px;
    background: rgba(255,255,255,.3);
    border-radius: 50%;
  }

  /* Stages: complete + done */
  .scan-modal__check{
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sun-3);
    color: var(--clarity);
    border-radius: 50%;
    box-shadow: 0 12px 30px -8px rgba(255,106,26,.5);
    animation: scanCheckPop .6s cubic-bezier(.2,.85,.3,1.4) both;
  }
  .scan-modal__check svg{ width: 30px; height: 30px; }
  @keyframes scanCheckPop{
    from{ opacity: 0; transform: scale(.5); }
    to  { opacity: 1; transform: scale(1); }
  }
  .scan-modal__title{
    font-family: var(--display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--clarity);
    margin-bottom: 12px;
  }
  .scan-modal__msg{
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,.65);
    max-width: 480px;
    margin: 0 auto 28px;
  }
  .scan-modal__msg strong{
    color: var(--clarity);
    font-weight: 500;
  }
  .scan-modal__form{
    display: flex;
    gap: 8px;
    max-width: 460px;
    margin: 0 auto 20px;
  }
  .scan-modal__email{
    flex: 1; min-width: 0;
    padding: 14px 16px;
    background: var(--clarity);
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .scan-modal__email:focus{
    outline: none;
    border-color: var(--sun-3);
    box-shadow: 0 0 0 3px rgba(255,106,26,.25);
  }
  .scan-modal__email.is-error{
    border-color: #E5564E;
    box-shadow: 0 0 0 3px rgba(229,86,78,.22);
  }
  .scan-modal__send{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: var(--sun-3);
    color: var(--clarity);
    border: none;
    border-radius: 14px;
    font-family: var(--body);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .25s ease, box-shadow .25s ease;
  }
  .scan-modal__send:hover{
    background: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  }
  .scan-modal__note{
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,.4);
    margin-top: 18px;
    letter-spacing: .04em;
  }
  .scan-modal__done .scan-modal__send{
    margin-top: 6px;
  }
  .scan-modal__scores{
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 20px auto 22px;
    padding: 0;
  }
  .scan-modal__scores span{
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    color: rgba(255,255,255,.55);
  }
  .scan-modal__scores strong{
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    color: var(--clarity);
    letter-spacing: -.02em;
  }
  .scan-modal__consent{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px auto 0;
    max-width: 420px;
    text-align: left;
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,.7);
    cursor: pointer;
  }
  .scan-modal__consent-input{
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--sun-3);
  }
  .scan-modal__consent a{
    color: var(--clarity);
    text-decoration: underline;
  }
  .scan-modal__consent.is-error span{ color: #FFB1AB; }
  .scan-modal__consent.is-error .scan-modal__consent-input{
    outline: 2px solid #E5564E;
    outline-offset: 2px;
    border-radius: 3px;
  }
  .scan-modal__form-error{
    display: none;
    margin: 8px auto 0;
    max-width: 420px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(229,86,78,.12);
    border: 1px solid rgba(229,86,78,.3);
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.5;
    color: #FFB1AB;
    text-align: left;
  }
  .scan-modal__form-error.is-visible{ display: block; }

  /* Scan modal responsive */
  @media (max-width: 820px){
    .scan-modal{ padding: 12px; }
    .scan-modal__shell{ padding: 28px 20px; max-height: 95vh; border-radius: 22px; }
    .scan-modal__close{ top: 12px; right: 12px; }
    .scan-modal__grid{ grid-template-columns: 1fr; gap: 24px; }
    .scan-mockup{ min-height: 240px; }
    .scan-mockup__viewport{ padding: 18px 16px; }
    .scan-mockup__grid-blocks{ display: none; }
    .scan-modal__title{ font-size: 26px; }
    .scan-modal__form{ flex-direction: column; }
    .scan-modal__send{ width: 100%; min-height: 48px; }
    .scan-modal__email{ min-height: 48px; }
    .scan-progress__title{ font-size: 22px; }
  }

  @media (prefers-reduced-motion: reduce){
    .scan-mockup__line{ animation: none; }
    .scan-mockup__scanline{ animation: none; opacity: .4; top: 50%; }
    .scan-step.is-active .scan-step__icon::before{ animation: none; }
    .scan-progress__eyebrow::before{ animation: none; }
  }
