/* ══════════════════════════════════════════════
       SECTION 1, HERO, big title + photo with meta overlay
    ══════════════════════════════════════════════ */
    .cs-hero {
      background: var(--e-global-color-bg);
      padding: 130px 0 0;
    }
    .cs-hero__wrap { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }

    .cs-hero__crumbs {
      display: flex; align-items: center; gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
      color: var(--e-global-color-text-mute);
      margin: 0 0 18px;
    }
    .cs-hero__crumbs a {
      color: var(--e-global-color-text-mute); text-decoration: none;
      transition: color .15s ease;
    }
    .cs-hero__crumbs a:hover { color: var(--e-global-color-text); }
    .cs-hero__crumbs span { color: var(--e-global-color-text); }
    .cs-hero__crumb-sep { color: var(--e-global-color-text-mute); opacity: 0.5; }

    .cs-hero__title { margin: 0 0 28px; }
    .cs-hero__logo { height: clamp(40px, 4.5vw, 58px); width: auto; display: block; }
    .cs-hero__title--text {
      font-family: 'JetBrains Mono', monospace; font-weight: 700;
      font-size: clamp(30px, 3.4vw, 48px); line-height: 1.12;
      letter-spacing: -0.02em; color: var(--e-global-color-text);
      max-width: 26ch;
    }

    .cs-hero__media {
      position: relative;
      width: 100%;
      height: 400px;
      border-radius: 0;
      overflow: hidden;
      background: var(--e-global-color-bg-soft);
      display: flex;
      align-items: flex-end;
    }
    .cs-hero__media img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }
    .cs-hero__scrim {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,16,28,0.94) 0%, rgba(10,16,28,0.60) 40%, rgba(10,16,28,0.16) 75%, rgba(10,16,28,0.08) 100%);
    }

    .cs-hero__overlay {
      position: relative; z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 24px 64px;
      align-items: end;
      padding: 40px 44px;
    }
    .cs-hero__meta {
      display: flex; flex-direction: column; gap: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 14px; line-height: 1.45;
    }
    /* Industry-meta vervangt "Project type" alleen op telefoon */
    .cs-hero__meta-row--industry { display: none; }
    .cs-hero__meta-row { display: flex; align-items: center; gap: 12px; }
    .cs-hero__meta-row dt {
      width: 110px; flex-shrink: 0; margin: 0;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.62);
    }
    .cs-hero__meta-row dd { margin: 0; font-weight: 600; color: #fff; }
    .cs-hero__meta-row--year dt { color: rgba(238, 198, 17, 0.65); }
    .cs-hero__meta-row--client dt { color: rgba(91, 150, 245, 0.65); }
    .cs-hero__meta-row--type dt { color: rgba(254, 91, 91, 0.65); }
    .cs-hero__meta-row--industry dt { color: rgba(238, 198, 17, 0.65); }
    .cs-hero__excerpt {
      font-family: 'Inter', sans-serif;
      font-size: 15.5px; line-height: 1.65;
      color: rgba(255,255,255,0.85);
      margin: 0;
      max-width: 560px;
      justify-self: end;
    }
    .cs-hero__excerpt strong { color: #fff; font-weight: 600; }

    /* ══════════════════════════════════════════════
       SECTION 2, BODY, 2-col main + sticky aside
    ══════════════════════════════════════════════ */
    .cs-body {
      background: var(--e-global-color-bg);
      padding: var(--section-pad-y) 0;
    }
    .cs-body__inner {
      max-width: var(--content-max); margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: clamp(40px, 5vw, 64px);
    }
    .cs-content { min-width: 0; max-width: 740px; position: relative; padding-left: 56px; }
    .cs-content::before {
      content: ''; position: absolute; left: 0;
      top: var(--line-top, 8px); height: var(--line-len, calc(100% - 16px));
      width: 2px; border-radius: 2px;
      background: var(--e-global-color-border);
    }
    .cs-progress {
      position: absolute; left: 0; top: var(--line-top, 8px);
      width: 2px; height: 0; border-radius: 2px;
      background: var(--e-global-color-primary);
      max-height: var(--line-len, calc(100% - 16px));
    }

    .cs-section { padding: 20px 0; position: relative; }
    .cs-section + .cs-section { margin-top: clamp(56px, 6vw, 80px); }
    .cs-section__num {
      position: absolute; left: -73px; top: 22px;
      width: 36px; height: 36px; margin: 0;
      display: flex; align-items: center; justify-content: center;
      background: #fff;
      border: 1px solid var(--e-global-color-border);
      border-radius: 10px;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 600; font-size: 12px; letter-spacing: 0.04em;
      color: var(--e-global-color-text-mute);
      transition: background .35s ease, border-color .35s ease, color .35s ease;
      z-index: 2;
    }
    .cs-section__num.is-active {
      background: var(--e-global-color-primary);
      border-color: var(--e-global-color-primary);
      color: #fff;
    }
    .cs-section h2 {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--e-global-color-text);
      margin: 0 0 24px;
    }
    .cs-section p {
      font-family: 'Inter', sans-serif;
      font-size: 16px; line-height: 1.78;
      color: var(--e-global-color-text-dim);
      margin: 0 0 20px;
    }
    .cs-section p:last-child { margin-bottom: 0; }
    .cs-section p strong { color: var(--e-global-color-text); font-weight: 600; }

    .cs-section__list {
      list-style: none; padding: 0; margin: 18px 0 0;
      display: flex; flex-direction: column; gap: 10px;
    }
    .cs-section__list li {
      position: relative;
      padding-left: 22px;
      font-family: 'Inter', sans-serif;
      font-size: 15.5px; line-height: 1.6;
      color: var(--e-global-color-text);
    }
    .cs-section__list li::before {
      content: ''; position: absolute;
      left: 0; top: 0.55em;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--e-global-color-primary);
      opacity: 0.85;
    }

    /* Pull-quote */


    .cs-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      width: 100%;
      margin: 28px 0 0;
    }
    .cs-stat { padding: 0; }
    .cs-stat strong {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: 28px; line-height: 1;
      color: var(--e-global-color-text);
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .cs-stat span {
      font-family: 'Inter', sans-serif;
      font-size: 13px; line-height: 1.4;
      color: var(--e-global-color-text-dim);
    }



    /* ══ IN THIS CASE (sticky inhoudsopgave) ══ */
    .cs-toc { position: sticky; top: 120px; align-self: start; }
    .cs-toc__label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--e-global-color-text-mute);
      margin: 0 0 16px;
    }
    .cs-toc__list { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--e-global-color-border); }
    .cs-toc__list a {
      display: flex; align-items: baseline; gap: 10px;
      padding: 9px 0 9px 16px; margin-left: -1px;
      border-left: 2px solid transparent;
      font-family: 'Inter', sans-serif; font-size: 14.5px;
      color: var(--e-global-color-text-dim); text-decoration: none;
      transition: color .2s ease, border-color .2s ease;
    }
    .cs-toc__list a .num {
      font-family: 'JetBrains Mono', monospace; font-size: 11px;
      color: var(--e-global-color-text-mute);
      transition: color .2s ease;
    }
    .cs-toc__list a:hover { color: var(--e-global-color-primary); }
    .cs-toc__list a.is-active {
      color: var(--e-global-color-text); font-weight: 600;
      border-left-color: var(--e-global-color-primary);
    }
    .cs-toc__list a.is-active .num { color: var(--e-global-color-primary); }
    .cs-section, .cs-testi { scroll-margin-top: 120px; }
    @media (max-width: 1024px) {
      .cs-body__inner { grid-template-columns: 1fr; }
      .cs-toc { position: static; display: none; }
      /* hero-foto met content laten meegroeien i.p.v. vast 400px (tekst niet gedrongen) */
      .cs-hero__media { height: auto; min-height: 360px; }
    }

    /* ══ TESTIMONIAL + STATS (eigen sectie) ══ */
    .cs-testi { background: var(--e-global-color-bg); padding: 0 0 var(--section-pad-y); }
    .cs-testi__inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
    .cs-testi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 24px); align-items: stretch; }
    .cs-testi__card {
      background: var(--e-global-color-bg-soft);
      border: 1px solid var(--e-global-color-border);
      border-radius: 18px;
      padding: 36px;
      display: flex; flex-direction: column;
    }
    .cs-testi__brand-logo { height: 30px; width: auto; align-self: flex-start; flex-shrink: 0; display: block; margin: 0 0 28px; }
    .cs-testi__quote {
      font-family: 'Inter', sans-serif;
      font-size: 17px; line-height: 1.65;
      color: var(--e-global-color-text);
      margin: 0 0 18px;
    }
    .cs-testi__name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--e-global-color-text); margin: 0; }
    .cs-testi__role { font-family: 'Inter', sans-serif; font-size: 12.5px; color: var(--e-global-color-text-mute); margin: 2px 0 0; }
    .cs-testi__divider { border: none; border-top: 1px solid var(--e-global-color-border); margin: 26px 0; }
    .cs-testi__card .cs-stats { margin: 0 0 6px; }
    .cs-testi__media { border-radius: 0; overflow: hidden; min-height: 380px; }
    .cs-testi__media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; display: block; }
    @media (max-width: 1024px) {
      .cs-testi__grid { grid-template-columns: 1fr; }
      .cs-testi__media { min-height: 280px; }
    }

    /* ══ ANDERE CASES (bento-kaartjes 1:1 van cases.html) ══ */
    .cs-more { background: var(--e-global-color-bg); padding: 0 0 calc(var(--section-pad-y) + 180px); }
    .cs-more__inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
    .cs-more__heading {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.2; letter-spacing: -0.02em;
      color: var(--e-global-color-text);
      margin: 0 0 36px;
    }
    .cs-more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 18px); }
    .pj-bento__item {
      position: relative;
      border-radius: 0; overflow: hidden;
      background: var(--e-global-color-bg);
      box-shadow: 0 8px 24px -10px rgba(15,26,46,0.12);
      transition: opacity .4s ease, transform .4s ease;
      display: block; height: 378px;
    }
    .pj-bento__item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .55s cubic-bezier(0.4,0,0.2,1);
    }
    .pj-bento__item:hover img { transform: scale(1.05); }
    /* Casenaam altijd in beeld; meta/intro/knop schuiven smooth in bij hover.
       Gradient donkert mee via ::after (gradients zelf animeren niet). */
    .pj-bento__overlay {
      position: absolute; inset: 0;
      padding: 30px 32px;
      display: flex; flex-direction: column; justify-content: flex-end; gap: 14px;
      color: #fff;
    }
    .pj-bento__overlay::before,
    .pj-bento__overlay::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
    .pj-bento__overlay::before {
      background: linear-gradient(to top, rgba(10,15,25,0.78) 0%, rgba(10,15,25,0.24) 45%, rgba(10,15,25,0) 72%);
    }
    .pj-bento__overlay::after {
      background: linear-gradient(to top, rgba(10,15,25,0.93) 0%, rgba(10,15,25,0.68) 55%, rgba(10,15,25,0.42) 100%);
      opacity: 0; transition: opacity .35s ease;
    }
    .pj-bento__overlay > * { position: relative; z-index: 1; }
    .pj-bento__item:hover .pj-bento__overlay::after,
    .pj-bento__item:focus-within .pj-bento__overlay::after { opacity: 1; }
    .pj-bento__more {
      display: grid; grid-template-rows: 0fr; opacity: 0;
      transition: grid-template-rows .4s ease, opacity .3s ease;
    }
    .pj-bento__more-inner {
      overflow: hidden; min-height: 0;
      display: flex; flex-direction: column; gap: 14px;
    }
    .pj-bento__item:hover .pj-bento__more,
    .pj-bento__item:focus-within .pj-bento__more { grid-template-rows: 1fr; opacity: 1; }
    .pj-banner__title {
      font-family: 'JetBrains Mono', monospace; font-weight: 700;
      font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.02em;
      color: #ffffff; margin: 0;
    }
    .pj-banner__meta { display: flex; flex-wrap: wrap; gap: 8px 30px; margin: 0; }
    .pj-banner__meta div { display: flex; flex-direction: column; gap: 2px; }
    .pj-banner__meta dt {
      font-family: 'JetBrains Mono', monospace; font-size: 10px;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .pj-banner__meta dd {
      font-family: 'Inter', sans-serif; font-size: 13.5px;
      color: #ffffff; margin: 0;
    }
    .pj-banner__btn {
      align-self: flex-start;
      display: inline-flex; align-items: center; gap: 0;
      height: 44px; padding: 0 11px; margin-top: 4px;
      background: var(--e-global-color-primary);
      color: #fff; border: 0; border-radius: 12px;
      cursor: pointer; text-decoration: none; overflow: hidden;
      box-shadow: 0 6px 14px -6px rgba(56,196,234,0.55);
      transition: gap .25s ease, padding .25s ease, background .2s ease,
                  transform .2s ease, box-shadow .2s ease;
    }
    .pj-banner__btn-label {
      font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
      color: #fff; white-space: nowrap;
      max-width: 0; overflow: hidden;
      transition: max-width .45s steps(9, end);
    }
    .pj-banner__btn:hover {
      gap: 8px; padding-right: 16px;
      background: #28aed0;
      box-shadow: 0 10px 20px -8px rgba(56,196,234,0.65);
    }
    .pj-banner__btn:hover .pj-banner__btn-label {
      max-width: 120px; transition: max-width .5s steps(9, end) .1s;
    }
    .pj-banner__btn-arrow {
      width: 22px; height: 22px; color: #fff;
      display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .pj-banner__btn svg { width: 16px; height: 16px; }
    @media (max-width: 1024px) { .cs-more__grid { grid-template-columns: repeat(2, 1fr); } .pj-bento__item { height: 320px; } }

    /* ══ CONTACT FORM (1:1 van contact.html, kaart steekt uit de sectie) ══ */
    .ct-section-2 {
      padding: var(--section-pad-y) 0;
      background: var(--e-global-color-bg-soft, #F7F8FB);
      position: relative;
      z-index: 2;
    }
    .ct-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 64px);
      align-items: start;
      max-width: var(--content-max);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    .ct-label--white {
      color: var(--e-global-color-text-mute, #8A92A3);
    }
    .ct-form-heading {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: clamp(36px, 4vw, 54px);
      line-height: 1.1;
      color: var(--e-global-color-text, #0F1A2E);
      margin: 0 0 20px;
      letter-spacing: -0.02em;
    }
    .ct-form-lead {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: var(--e-global-color-text-dim, #4A5568);
      margin: 0;
    }

    /* Form card */
    .ct-card {
      background: #fff;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      margin-top: -180px;
      position: relative;
      z-index: 3;
    }
    .ct-card-title {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: 22px;
      color: var(--e-global-color-text, #0F1A2E);
      margin: 0 0 8px;
    }
    .ct-card-sub {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--e-global-color-text-mute, #8A92A3);
      margin: 0 0 28px;
    }
    .ct-field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .ct-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }
    .ct-field label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--e-global-color-text, #0F1A2E);
    }
    .req {
      color: var(--e-global-color-primary, #38C4EA);
    }
    .ct-field input,
    .ct-field textarea,
    .ct-field select {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      padding: 12px 16px;
      border-radius: 10px;
      border: 1.5px solid var(--e-global-color-border, #E2E8F0);
      background: transparent;
      color: var(--e-global-color-text, #0F1A2E);
      outline: none;
      transition: border-color .2s, background .2s;
      width: 100%;
      box-sizing: border-box;
    }
    .ct-field input:focus,
    .ct-field textarea:focus,
    .ct-field select:focus {
      border-color: var(--e-global-color-primary, #38C4EA);
      background: #fff;
    }
    .ct-field textarea {
      resize: vertical;
    }
    .ct-submit {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 10px;
      background: var(--e-global-color-primary, #38C4EA);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: background .2s;
      margin-top: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .ct-submit:hover {
      background: #28aed0;
    }




    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .ct-grid-2 { grid-template-columns: 1fr; gap: 40px; }
      /* Stacked contact: drop the desktop side-by-side overlap + offsets */
      .ct-grid-2 > div:first-child { padding-right: 0 !important; margin-top: 0 !important; }
      .ct-card { margin-top: 0; }
      /* Once stacked, neutralise the bento's overlap buffer */
      .cs-more { padding: 0 0 var(--section-pad-y); }
      .cs-hero__overlay { grid-template-columns: 1fr; gap: 22px; }
      .cs-hero__excerpt { justify-self: start; }
      /* Reading-line article: keep section numbers inside the column */
      .cs-content { max-width: none; }
      .cs-section__list { gap: 12px; }
    }

    /* ── PHONE ── */
    @media (max-width: 640px) {
      .cs-hero__meta-row--type { display: none; }
      .cs-hero__meta-row--industry { display: flex; }
      /* Hero */
      .cs-hero { padding: 100px 0 0; }
      .cs-hero__logo { height: clamp(34px, 9vw, 48px); }
      .cs-hero__title--text { font-size: 26px; }
      .cs-hero__media { height: auto; min-height: 300px; }
      .cs-hero__overlay { grid-template-columns: 1fr; gap: 20px; padding: 24px 18px; }
      /* Intro-tekst in de hero weg op telefoon; alleen de 3 detail-items, onderin de foto */
      .cs-hero__excerpt { display: none; }
      .cs-hero__meta { margin: 0; }
      .cs-hero__meta-row dt { width: 92px; }

      /* Body / reading line */
      .cs-body__inner { gap: 40px; }
      .cs-content { padding-left: 40px; max-width: 100%; }
      /* Lijn + nummers uitgelijnd op de linker gutter (20px van de rand, zelfde afstand als de rest);
         lijn door het midden van de 30px brede nummers */
      .cs-content::before, .cs-progress { left: 14px; }
      .cs-section { padding: 12px 0; }
      .cs-section__num { left: -40px; top: 16px; width: 30px; height: 30px; }
      .cs-section h2 { font-size: clamp(24px, 7vw, 32px); }
      .cs-section p { font-size: 15.5px; }
      .cs-stats { grid-template-columns: 1fr 1fr; gap: 14px; }

      /* Testimonial */
      .cs-testi__grid { grid-template-columns: 1fr; gap: 18px; }
      .cs-testi__card { padding: 28px 22px; }
      /* Review-foto verbergen op telefoon */
      .cs-testi__media { display: none; }

      /* Other cases bento → 1-col; overlap neutralised, so drop the +180px */
      .cs-more { padding: 0 0 var(--section-pad-y); }
      .cs-more__grid { grid-template-columns: 1fr; gap: 16px; }
      .pj-bento__item { height: 280px; }
      /* Touch: show overlay (no hover on phone) */
      .pj-bento__overlay { padding: 22px 20px; }
      .pj-bento__overlay::after { opacity: 1; }
      .pj-bento__more { grid-template-rows: 1fr; opacity: 1; }
      .pj-banner__btn { padding: 0 16px; gap: 8px; }
      .pj-banner__btn-label { max-width: 120px; }

      /* Contact form: neutralise the desktop negative-margin overlap */
      .ct-grid-2 { grid-template-columns: 1fr; gap: 28px; }
      .ct-grid-2 > div:first-child { padding-right: 0 !important; margin-top: 0 !important; }
      .ct-form-heading { font-size: clamp(30px, 9vw, 40px); }
      .ct-form-heading br { display: none; }
      .ct-card { margin-top: 0; padding: 28px 20px; }
    }

    @media (max-width: 420px) {
      .cs-section h2 { font-size: 22px; }
      .ct-form-heading { font-size: 28px; }
    }
