
    /* ======================================================================
       1. DESIGN TOKENS (zmienne CSS) — kolory, typografia, odstępy, cienie
       ====================================================================== */
    :root {
      /* Kolory bazowe z briefu */
      --navy:        #2D3646;   /* ciemny granat — tekst i ciemne sekcje */
      --navy-900:    #1d2530;   /* głębszy granat (cienie / gradienty) */
      --navy-700:    #3a4456;
      --gold:        #AF9F77;   /* złoty akcent */
      --gold-600:    #9b8a62;
      --gold-200:    #e3dccb;
      --white:       #ffffff;
      --paper:       #f7f6f2;   /* złamana biel — tło sekcji */
      --paper-2:     #f1efe8;

      /* Tekst */
      --ink:         #2D3646;
      --ink-soft:    #586172;   /* tekst drugorzędny */
      --ink-faint:   #8b93a1;   /* podpisy / metadane */
      --on-dark:     #eef0f3;   /* tekst na granacie */
      --on-dark-soft:#aab2c0;

      /* Linie / obramowania */
      --line:        rgba(45, 54, 70, 0.12);
      --line-soft:   rgba(45, 54, 70, 0.07);
      --line-dark:   rgba(255, 255, 255, 0.12);

      /* Cienie (bardzo subtelne) */
      --shadow-sm:   0 1px 2px rgba(29,37,48,.04), 0 2px 8px rgba(29,37,48,.04);
      --shadow-md:   0 4px 12px rgba(29,37,48,.06), 0 12px 32px rgba(29,37,48,.07);
      --shadow-lg:   0 18px 50px rgba(29,37,48,.13);

      /* Typografia */
      --font-display: 'Exo 2', 'Segoe UI', Arial, sans-serif;
      --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

      /* Layout */
      --container:   1200px;
      --container-narrow: 820px;
      --radius:      16px;
      --radius-sm:   10px;
      --radius-lg:   24px;

      /* Animacja */
      --ease:        cubic-bezier(.22, .61, .36, 1);
      --ease-out:    cubic-bezier(.16, 1, .3, 1);
      --header-h:    132px;
    }

    /* ======================================================================
       2. RESET / BAZA
       ====================================================================== */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--white);
      line-height: 1.65;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul { margin: 0; padding: 0; list-style: none; }
    h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
    p { margin: 0; }
    ::selection { background: var(--gold); color: var(--navy-900); }

    /* ======================================================================
       3. TYPOGRAFIA — skala + klasy pomocnicze
       ====================================================================== */
    .display {
      font-family: var(--font-display);
      font-weight: 400;
      letter-spacing: -.02em;
      line-height: 1.04;
    }
    .h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); }
    .h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
    .h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
    .lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; }
    .muted { color: var(--ink-soft); }
    .gold-text { color: var(--gold-600); }

    /* Eyebrow — mała etykieta sekcji ze złotą kreską (styl McKinsey/BCG) */
    .eyebrow {
      display: inline-flex; align-items: center; gap: .7rem;
      font-size: calc(.76rem + 3px); font-weight: 600; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold-600);
      margin-bottom: 1.3rem;
    }
    .eyebrow::before {
      content: ""; width: 28px; height: 1px; background: var(--gold);
      display: inline-block;
    }
    .section--dark .eyebrow { color: var(--gold); }
    .eyebrow--center { justify-content: center; }

    /* ======================================================================
       4. LAYOUT — kontener i sekcje
       ====================================================================== */
    .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
    .container--narrow { max-width: var(--container-narrow); }

    .section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
    .section--tight { padding: clamp(48px, 6vw, 80px) 0; }
    .section--paper { background: var(--paper); }
    .section--dark {
      background: var(--navy);
      color: var(--on-dark);
      background-image:
        radial-gradient(900px 500px at 85% -10%, rgba(175,159,119,.10), transparent 60%),
        radial-gradient(700px 600px at 0% 110%, rgba(175,159,119,.06), transparent 55%);
    }
    .section--dark p { color: var(--on-dark-soft); }
    .section--dark .h1, .section--dark .h2, .section--dark .h3 { color: #fff; }

    .section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
    .section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-head .section-sub { margin-top: 1.1rem; }

    .grid { display: grid; gap: 28px; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    /* Cienka linia-dzielnik z akcentem */
    .rule { height: 1px; background: var(--line); border: 0; margin: 0; }

    /* ======================================================================
       5. PRZYCISKI
       ====================================================================== */
    .btn {
      display: inline-flex; align-items: center; gap: .6rem;
      padding: .95rem 1.6rem; border-radius: 999px;
      font-size: .98rem; font-weight: 600; letter-spacing: .01em;
      transition: transform .35s var(--ease-out), background .3s var(--ease), color .3s, box-shadow .35s var(--ease-out), border-color .3s;
      will-change: transform; white-space: nowrap;
    }
    .btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease-out); }
    .btn:hover svg { transform: translateX(4px); }

    /* Primary — złoty (główne CTA: Aplikuj o Diagnozę) */
    .btn--gold { background: var(--gold); color: var(--navy-900); box-shadow: 0 8px 22px rgba(175,159,119,.32); }
    .btn--gold:hover { transform: translateY(-2px); background: var(--gold-600); box-shadow: 0 14px 30px rgba(175,159,119,.4); }

    /* Navy — ciemny */
    .btn--navy { background: var(--navy); color: #fff; }
    .btn--navy:hover { transform: translateY(-2px); background: var(--navy-900); box-shadow: var(--shadow-md); }

    /* Ghost / outline */
    .btn--ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
    .btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
    .section--dark .btn--ghost { color: #fff; border-color: var(--line-dark); }
    .section--dark .btn--ghost:hover { border-color: var(--gold); background: rgba(255,255,255,.04); }

    /* Link-arrow — tekst ze strzałką i złotym podkreśleniem */
    .link-arrow {
      display: inline-flex; align-items: center; gap: .5rem;
      font-weight: 600; color: var(--navy); position: relative; padding-bottom: 2px;
    }
    .link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
    .link-arrow::after {
      content: ""; position: absolute; left: 0; bottom: -1px; height: 1.5px; width: 100%;
      background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
    }
    .link-arrow:hover::after { transform: scaleX(1); }
    .link-arrow:hover svg { transform: translateX(4px); }
    .section--dark .link-arrow { color: #fff; }
    .case-metric .m-arrow { color: var(--gold-600); }

    .btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

    /* ======================================================================
       6. HEADER / NAWIGACJA
       ====================================================================== */
    .topbar {
      background: var(--navy-900); color: var(--on-dark-soft);
      font-size: clamp(.6rem, 2.5vw, .82rem); letter-spacing: .01em;
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 46px; padding-top: 9px; padding-bottom: 9px; }
    .topbar a { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; transition: color .25s; }
    .topbar a:hover { color: var(--gold); }
    .topbar .topbar-left { display: flex; gap: clamp(.7rem, 3vw, 1.8rem); flex-wrap: nowrap; min-width: 0; }
    .topbar .topbar-right { display: flex; gap: .4rem; align-items: center; color: var(--on-dark-soft); }
    .lang-switch { display: inline-flex; align-items: center; gap: .55rem; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 4px 12px; }
    .lang-switch .lang-opt { background: none; border: 0; cursor: pointer; font: inherit; font-size: .95rem; font-weight: 600; letter-spacing: .05em; color: #fff; opacity: .72; padding: 1px 2px; transition: color .2s, opacity .2s; }
    .lang-switch .lang-opt:hover { opacity: 1; }
    .lang-switch .lang-opt.is-active { color: var(--gold); opacity: 1; }
    .lang-switch .lang-sep { color: rgba(255,255,255,.4); }
    /* === WERSJA UPROSZCZONA (tymczasowa) — cofnąć wg index.DOCELOWA.backup.html === */
    #langSwitch { display: none !important; }
    .article-card.is-magnet { display: none !important; }
    a[href="#/kalkulator"] { display: none !important; }
    a[href="#/blog"], a[href="#/artykul"] { display: none !important; }
    .topbar svg { width: 14px; height: 14px; opacity: .85; }

    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,.82);
      backdrop-filter: saturate(160%) blur(14px);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s, box-shadow .3s, background .3s;
    }
    .site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(29,37,48,.05); }
    /* Większy header + odstęp od granatowej belki kontaktowej (padding-top) */
    .nav { display: flex; align-items: center; justify-content: space-between; min-height: 0; gap: 1rem; padding: 26px 0 18px; }

    /* Logo — geometryczny znak (zbieżne linie = "perspektywa") + nazwa */
    .logo { display: inline-flex; align-items: center; gap: .65rem; flex: none; width: max-content; font-family: var(--font-display); font-size: 1.32rem; letter-spacing: -.01em; color: var(--navy); -webkit-user-select: none; user-select: none; }
    .logo .logo-mark { width: 30px; height: 30px; flex: none; }
    .logo .logo-img { height: 60px; width: auto; display: block; -webkit-user-drag: none; user-select: none; pointer-events: none; }
    @media (max-width: 760px) { .logo .logo-img { height: 46px; } }
    .logo b { font-weight: 600; }
    .logo .logo-dot { color: var(--gold); }

    .nav-menu { display: flex; align-items: center; gap: .35rem; }
    .nav-cta-item { display: none; }
    .nav-link {
      position: relative; padding: .6rem .9rem; border-radius: 8px;
      font-size: .96rem; font-weight: 500; color: var(--navy);
      transition: color .25s, background .25s;
    }
    .nav-link:hover { color: var(--gold-600); }
    .nav-link.active { color: var(--gold-600); }
    .nav-link.active::after {
      content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 2px;
      background: var(--gold); border-radius: 2px;
    }

    /* Dropdown Usługi */
    .nav-item { position: relative; }
    .nav-trigger { display: inline-flex; align-items: center; gap: .35rem; }
    .nav-trigger svg { width: 13px; height: 13px; transition: transform .3s; }
    .nav-item:hover .nav-trigger svg, .nav-item:focus-within .nav-trigger svg { transform: rotate(180deg); }
    .dropdown {
      position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
      min-width: 320px; background: #fff; border: 1px solid var(--line);
      border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px;
      opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease);
    }
    .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
    .dropdown-link { display: flex; gap: .85rem; padding: .8rem .85rem; border-radius: 10px; transition: background .25s; }
    .dropdown-link:hover { background: var(--paper); }
    .dropdown-link .di { width: 38px; height: 38px; flex: none; border-radius: 9px; background: var(--paper-2); display: grid; place-items: center; color: var(--gold-600); }
    .dropdown-link .di svg { width: 19px; height: 19px; }
    .dropdown-link b { display: block; font-size: .98rem; font-weight: 600; color: var(--navy); }
    .dropdown-link span { font-size: .85rem; color: var(--ink-soft); }

    .nav-cta { display: flex; align-items: center; gap: .5rem; }
    .nav-actions { display: flex; align-items: center; gap: .8rem; }

    /* Hamburger (mobile) */
    .nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
    .nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: background .2s; }
    .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease); }
    .nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
    body.menu-open .nav-toggle span { background: transparent; }
    body.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
    body.menu-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

    /* ======================================================================
       7. HERO
       ====================================================================== */
    .hero { position: relative; padding: clamp(56px, 8vw, 108px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
    .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .6rem; padding: .45rem .9rem;
      border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 500;
      color: var(--ink-soft); background: #fff; margin-bottom: 1.6rem;
    }
    .hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); position: relative; }
    .hero-badge .pulse::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:1px solid var(--gold); animation: ping 2.4s var(--ease) infinite; }
    @keyframes ping { 0%{transform:scale(.7);opacity:.8} 100%{transform:scale(1.8);opacity:0} }
    .hero h1 { margin-bottom: 1.5rem; }
    .hero .lead { max-width: 540px; margin-bottom: 2.2rem; }
    .hero .btn-row { margin-bottom: 1.6rem; }
    .hero-note { font-size: .88rem; color: var(--ink-faint); display: flex; align-items: center; gap: .5rem; }
    .hero-note svg { width: 16px; height: 16px; color: var(--gold-600); }

    /* Wizualizacja hero — geometria "perspektywy" (SVG) */
    .hero-art { position: relative; aspect-ratio: 1 / 1; }
    .hero-art svg { width: 100%; height: 100%; overflow: visible; }
    .spin-slow { transform-origin: center; animation: spin 60s linear infinite; }
    .spin-rev { transform-origin: center; animation: spin 90s linear infinite reverse; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .draw { stroke-dasharray: 1; stroke-dashoffset: 1; pathLength: 1; animation: draw 3s var(--ease-out) forwards; }
    @keyframes draw { to { stroke-dashoffset: 0; } }
    .float-shape { animation: floaty 8s ease-in-out infinite; transform-origin: center; }
    @keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px);} }

    /* ======================================================================
       8. SERVICE BOX (3 linie usługowe)
       ====================================================================== */
    .svc-card {
      position: relative; background: #fff; border: 1px solid var(--line);
      border-radius: var(--radius); padding: 2.2rem 2rem 2rem; overflow: hidden;
      transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
      display: flex; flex-direction: column; min-height: 100%;
    }
    .svc-card::before {
      content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-200));
      transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
    }
    .svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-num { font-family: var(--font-display); font-size: .95rem; color: var(--gold-600); margin-bottom: 1.2rem; }
    .svc-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--paper); color: var(--navy); display: grid; place-items: center; margin-bottom: 1.4rem; transition: background .35s, color .35s; }
    .svc-icon svg { width: 28px; height: 28px; }
    .svc-card:hover .svc-icon { background: var(--navy); color: var(--gold); }
    .svc-card h3 { margin-bottom: .7rem; }
    .svc-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.6rem; flex: 1; }

    /* ======================================================================
       9. STATY (liczby mocy) — z count-up
       ====================================================================== */
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border-radius: var(--radius); overflow: hidden; }
    .stat { background: transparent; padding: 2.2rem 1.6rem; text-align: left; }
    .stat .stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: #fff; letter-spacing: -.02em; }
    .stat .stat-num .suf { color: var(--gold); }
    .stat .stat-label { margin-top: .7rem; font-size: .92rem; color: var(--on-dark-soft); }

    /* ======================================================================
       10. CASE CARDS (wyróżnione realizacje / listing)
       ====================================================================== */
    .case-card {
      position: relative; display: flex; flex-direction: column; background: #fff;
      border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; overflow: hidden;
      transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
      min-height: 100%;
    }
    .case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .case-tag { display: inline-flex; align-self: flex-start; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-600); padding: .35rem .7rem; border: 1px solid var(--gold-200); border-radius: 999px; margin-bottom: 1.4rem; }
    .case-metric { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1; color: var(--navy); letter-spacing: -.02em; }
    .case-metric .suf { color: var(--gold-600); }
    .case-desc { margin: .8rem 0 1.6rem; color: var(--ink-soft); font-size: .98rem; flex: 1; }
    .case-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }
    .case-branch { font-size: .88rem; color: var(--ink-faint); }
    /* Case study — szczegóły: lista problemów + siatka wyników */
    .cs-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .7rem; }
    .cs-list li { display: flex; gap: .7rem; color: var(--ink-soft); font-size: .98rem; }
    .cs-list li::before { content: "—"; color: var(--gold-600); flex: none; }
    .cs-metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 1.2rem; }
    @media (max-width: 820px) { .cs-metrics-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .cs-metrics-grid { grid-template-columns: 1fr; } }
    .cs-metric-box { background: #fff; padding: 1.6rem 1.5rem; }
    .cs-mv { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.15; color: var(--navy); letter-spacing: -.01em; }
    .cs-mv .hl { color: var(--gold-600); }
    .cs-ml { margin-top: .55rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }
    .cs-metric-box--wide { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: .2rem .7rem; text-align: center; }
    .cs-wide-text { color: var(--ink-soft); font-size: 1rem; line-height: 1.5; max-width: 62ch; }
    .cs-wide-num { display: flex; align-items: baseline; gap: .5rem; flex: none; }
    .cs-wide-val { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--gold-600); letter-spacing: -.02em; }
    .cs-wide-suf { font-size: .95rem; color: var(--ink-soft); }
    .cs-metric-box--span2 { grid-column: span 2; }
    @media (max-width: 520px) { .cs-metric-box--span2 { grid-column: auto; } }

    /* ======================================================================
       11. TIMELINE (proces współpracy) — z animacją
       ====================================================================== */
    .timeline { position: relative; }
    /* Pionowa linia postępu, która "wypełnia się" na złoto przy scrollu */
    .timeline-track { position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: var(--line); border-radius: 2px; }
    .section--dark .timeline-track { background: var(--line-dark); }
    .timeline-fill { position: absolute; left: 0; top: 0; width: 100%; height: var(--progress, 0%); background: linear-gradient(var(--gold), var(--gold-600)); border-radius: 2px; transition: height .1s linear; }
    .tl-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.6rem; padding: 0 0 2.6rem 0; }
    .tl-step:last-child { padding-bottom: 0; }
    .tl-node { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink-faint); z-index: 2; transition: transform .5s var(--ease-out), border-color .4s, color .4s, background .4s, box-shadow .4s; }
    .section--dark .tl-node { background: var(--navy); }
    .tl-step.is-active .tl-node { border-color: var(--gold); color: var(--navy); background: var(--gold); transform: scale(1.06); box-shadow: 0 0 0 6px rgba(175,159,119,.18); }
    .tl-body { padding-top: .4rem; }
    .tl-step .tl-phase { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); }
    .tl-step h3 { margin: .35rem 0 .5rem; font-size: 1.3rem; }
    .tl-step p { color: var(--ink-soft); font-size: .98rem; max-width: 620px; }
    .section--dark .tl-step p { color: var(--on-dark-soft); }
    /* wejście kroku */
    .tl-step { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
    .tl-step.in { opacity: 1; transform: none; }

    /* Wariant poziomy (np. strona "Jak pracujemy") */
    .timeline-h { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; position: relative; }
    .timeline-h .th-line { position: absolute; left: calc(50% / var(--th-n, 1)); right: calc(50% / var(--th-n, 1)); top: 27px; height: 2px; background: var(--line); }
    .timeline-h .th-fill { position: absolute; left: calc(50% / var(--th-n, 1)); top: 27px; height: 2px; width: var(--progress,0%); background: linear-gradient(90deg,var(--gold),var(--gold-600)); transition: width .15s linear; }
    .th-step { padding: 0 1rem; text-align: center; position: relative; opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
    .th-step.in { opacity: 1; transform: none; }
    .th-node { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.2rem; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink-faint); position: relative; z-index: 2; transition: all .45s var(--ease-out); }
    .th-step.is-active .th-node { border-color: var(--gold); background: var(--gold); color: var(--navy); transform: scale(1.08); box-shadow: 0 0 0 6px rgba(175,159,119,.18); }
    .th-step h4 { font-size: 1.05rem; margin-bottom: .5rem; }
    .th-step p { font-size: .9rem; color: var(--ink-soft); }

    /* ======================================================================
       12. FAQ — odpowiedź odkrywana po najechaniu (hover) + klik na mobile
       ====================================================================== */
    .faq { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
      width: 100%; text-align: left; padding: 1.5rem 0; font-size: clamp(1.05rem, 1.7vw, 1.3rem);
      font-weight: 500; color: var(--navy); transition: color .3s;
    }
    .faq-q .faq-ic { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all .4s var(--ease); color: var(--ink-soft); }
    .faq-q .faq-ic svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
    .faq-a {
      display: grid; grid-template-rows: 0fr; overflow: hidden;
      transition: grid-template-rows .5s var(--ease-out);
    }
    .faq-a > div { min-height: 0; }
    .faq-a p { padding: 0 0 1.6rem 0; max-width: 760px; color: var(--ink-soft); }
    /* Hover (desktop) lub focus-within (klawiatura) lub .open (klik na mobile) */
    .faq-item:hover, .faq-item:focus-within { }
    .faq-item:hover .faq-q, .faq-item:focus-within .faq-q, .faq-item.open .faq-q { color: var(--gold-600); }
    .faq-item:hover .faq-ic, .faq-item:focus-within .faq-ic, .faq-item.open .faq-ic { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
    .faq-item:hover .faq-ic svg, .faq-item:focus-within .faq-ic svg, .faq-item.open .faq-ic svg { transform: rotate(135deg); }
    .faq-item:hover .faq-a, .faq-item:focus-within .faq-a, .faq-item.open .faq-a { grid-template-rows: 1fr; }

    /* ======================================================================
       13. KARUZELA OPINII
       ====================================================================== */
    .carousel { position: relative; overflow: hidden; }
    .carousel-track { display: flex; transition: transform .6s var(--ease-out); }
    .quote-card { flex: 0 0 100%; padding: .4rem; }
    .quote-inner { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem); position: relative; }
    .section--dark .quote-inner { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
    .quote-mark { font-family: var(--font-display); font-size: 5rem; line-height: .6; color: var(--gold); opacity: .5; height: 2.2rem; }
    .quote-text { font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--navy); margin: 1rem 0 1.8rem; }
    .section--dark .quote-text { color: #fff; }
    .quote-meta { display: flex; align-items: center; gap: 1rem; }
    .quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; flex: none; }
    .quote-who b { display: block; color: var(--navy); font-weight: 600; }
    .section--dark .quote-who b { color: #fff; }
    .quote-who span { font-size: .88rem; color: var(--ink-faint); }
    .carousel-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.8rem; }
    .carousel-dots { display: flex; gap: .5rem; }
    .carousel-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all .3s; }
    .carousel-dots button.active { background: var(--gold); width: 26px; border-radius: 9px; }
    .carousel-arrows { display: flex; gap: .6rem; }
    .carousel-arrows button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); transition: all .3s; }
    .carousel-arrows button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
    .section--dark .carousel-arrows button { color: #fff; border-color: var(--line-dark); }
    .section--dark .carousel-arrows button:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }

    /* ======================================================================
       14. KALKULATOR — moduł/teaser
       ====================================================================== */
    .calc-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy); color: #fff; padding: clamp(2.4rem, 5vw, 4rem); }
    .calc-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; text-align: center; position: relative; z-index: 1; }
    .calc-grid p { margin-left: auto; margin-right: auto; }
    .calc-steps { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; margin: 1.4rem 0 2rem; }
    .calc-steps .cs { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--on-dark-soft); }
    .calc-steps .cs b { width: 30px; height: 30px; border-radius: 50%; background: rgba(175,159,119,.18); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); }
    .calc-visual { display: grid; place-items: center; }
    .calc-gauge { font-family: var(--font-display); text-align: center; }
    .calc-gauge .cg-num { font-size: clamp(2.4rem,5vw,3.4rem); color: var(--gold); line-height: 1; }
    .calc-gauge .cg-label { font-size: .85rem; color: var(--on-dark-soft); margin-top: .4rem; font-family: var(--font-body); }

    /* ======================================================================
       15. CTA SEKCJA (dolna)
       ====================================================================== */
    .cta-final { position: relative; overflow: hidden; text-align: center; }
    .cta-final .container { position: relative; z-index: 1; }
    .cta-final h2 { max-width: 18ch; margin: 0 auto 1.2rem; }
    .cta-final p { max-width: 56ch; margin: 0 auto 2rem; }
    .cta-final .badge-limit { display: inline-flex; align-items: center; gap: .55rem; font-size: .86rem; color: var(--gold); border: 1px solid rgba(175,159,119,.4); padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.6rem; }
    .cta-final .badge-limit::before { content:""; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }

    /* ======================================================================
       16. FOOTER
       ====================================================================== */
    .site-footer { background: var(--navy-900); color: var(--on-dark-soft); padding: clamp(56px, 7vw, 88px) 0 32px; }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
    .footer-brand p { font-size: .92rem; max-width: 34ch; margin-bottom: 1.4rem; }
    .footer-contact { font-size: .92rem; display: grid; gap: .5rem; }
    .footer-contact a:hover { color: var(--gold); }
    .footer-col h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; font-family: var(--font-body); }
    .footer-col ul { display: grid; gap: .7rem; }
    .footer-col a { font-size: .94rem; transition: color .25s, padding .25s; }
    .footer-col a:hover { color: var(--gold); padding-left: 4px; }
    .footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: .84rem; color: var(--ink-faint); }
    .footer-bottom .fb-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
    .footer-bottom a:hover { color: var(--gold); }
    .footer-social { display: flex; gap: .6rem; }
    .footer-social a { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: all .3s; }
    .footer-social a:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
    .footer-social svg { width: 30px; height: 30px; }

    /* Baner zgody na cookies (Wariant A — dolny pasek) */
    .cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000; background: var(--navy-900); color: #fff; border-top: 2px solid var(--gold); transform: translateY(110%); transition: transform .45s var(--ease-out); }
    .cookie-bar.show { transform: none; }
    .cookie-bar-inner { display: flex; align-items: center; gap: 1.2rem; padding: 1.1rem 0; }
    .cookie-bar .ck-ic { color: var(--gold); flex: none; }
    .cookie-text { flex: 1; min-width: 220px; font-size: .9rem; line-height: 1.55; color: var(--on-dark-soft); margin: 0; }
    .cookie-text a { color: var(--gold); text-decoration: underline; }
    .cookie-actions { display: flex; align-items: center; gap: .6rem; flex: none; flex-wrap: wrap; }
    .ck-btn { font-family: var(--font-body); font-size: .86rem; font-weight: 600; border-radius: 8px; padding: .6rem 1.1rem; cursor: pointer; border: 1px solid transparent; transition: background .25s, color .25s, border-color .25s; white-space: nowrap; }
    .ck-gold { background: var(--gold); color: var(--navy-900); }
    .ck-gold:hover { background: var(--gold-600); }
    .ck-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
    .ck-ghost:hover { border-color: var(--gold); }
    .ck-link { background: transparent; color: var(--on-dark-soft); border: 0; padding: .6rem .5rem; }
    .ck-link:hover { color: #fff; }
    .ck-navy { background: var(--navy); color: #fff; }
    .ck-navy:hover { background: var(--navy-700); }
    /* Panel szczegółowych ustawień */
    .cookie-panel { display: none; position: fixed; inset: 0; z-index: 9100; background: rgba(32,39,47,.55); align-items: center; justify-content: center; padding: 1.2rem; }
    .cookie-panel.show { display: flex; }
    .cookie-panel-card { position: relative; width: 460px; max-width: 100%; background: #fff; border-radius: var(--radius); padding: 1.8rem; max-height: 90vh; overflow: auto; }
    .cookie-panel-card h3 { color: var(--navy); margin-bottom: .5rem; }
    .ck-desc { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
    .ck-close { position: absolute; top: .9rem; right: 1rem; background: transparent; border: 0; font-size: 1.6rem; line-height: 1; color: var(--ink-faint); cursor: pointer; }
    .ck-close:hover { color: var(--navy); }
    .ck-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
    .ck-row > div { display: flex; flex-direction: column; gap: .2rem; }
    .ck-row b { font-size: .92rem; color: var(--navy); }
    .ck-row span { font-size: .8rem; color: var(--ink-faint); }
    .ck-panel-actions { display: flex; justify-content: flex-end; margin-top: 1.3rem; }
    .ck-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex: none; }
    .ck-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
    .ck-track { position: absolute; inset: 0; background: #D8D5CC; border-radius: 999px; transition: background .25s; }
    .ck-track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .25s; }
    .ck-switch input:checked + .ck-track { background: var(--gold); }
    .ck-switch input:checked + .ck-track::before { transform: translateX(20px); }
    .ck-switch.is-locked .ck-track { opacity: .55; }
    @media (max-width: 760px) {
      .cookie-bar-inner { flex-direction: column; align-items: flex-start; gap: .9rem; }
      .cookie-actions { width: 100%; }
      .cookie-actions .ck-btn { flex: 1; text-align: center; }
    }

    /* ======================================================================
       17. ELEMENTY POMOCNICZE / DEKORACJE
       ====================================================================== */
    /* Subtelna siatka w tle (geometria) */
    .bg-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%); mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%); pointer-events: none; }
    .section--dark .bg-grid { background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); }

    .pill-list { display: flex; flex-wrap: wrap; gap: .6rem; }
    .pill { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 999px; font-size: .86rem; color: var(--ink-soft); background: #fff; }
    .pill svg { width: 15px; height: 15px; color: var(--gold-600); }

    /* Lead magnet box */
    .magnet {
      display: grid; grid-template-columns: 1fr auto; gap: 1.8rem; align-items: center;
      background: linear-gradient(135deg, var(--paper), #fff); border: 1px solid var(--line);
      border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 2rem 2.2rem;
    }
    .magnet .mg-tag { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); margin-bottom: .7rem; display: inline-flex; align-items: center; gap: .5rem; }
    .magnet h3 { font-size: 1.3rem; margin-bottom: .5rem; }
    .magnet p { color: var(--ink-soft); font-size: .96rem; max-width: 54ch; }
    .magnet-icon { width: 64px; height: 64px; border-radius: 14px; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex: none; }
    .magnet-icon svg { width: 30px; height: 30px; }

    /* Feature list (z fajką) */
    .check-list { display: grid; gap: 1rem; }
    .check-list li { display: flex; gap: .9rem; align-items: flex-start; }
    .check-list .ci { width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(175,159,119,.16); color: var(--gold-600); display: grid; place-items: center; margin-top: 2px; }
    .check-list .ci svg { width: 14px; height: 14px; }
    .check-list b { color: var(--navy); }
    .section--dark .check-list b { color: #fff; }
    .section--dark .check-list span { color: var(--on-dark-soft); }

    /* Split layout (tekst + wizual) */
    .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

    /* Karty „dowody metody" */
    .proof-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; transition: transform .4s var(--ease-out), box-shadow .4s; }
    .proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .proof-card .pc-ic { width: 46px; height: 46px; border-radius: 11px; background: var(--paper); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 1rem; }
    .proof-card h4 { font-size: 1.08rem; margin-bottom: .5rem; color: var(--navy); }
    .proof-card p { font-size: .93rem; color: var(--ink-soft); }
    .proof-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem; font-size: .93rem; font-weight: 600; color: var(--gold); transition: color .3s; }
    .proof-link svg { width: 16px; height: 16px; transition: transform .3s; }
    .proof-link:hover { color: var(--gold-600); }
    .proof-link:hover svg { transform: translateX(4px); }

    /* ======================================================================
       18. ANIMACJE PRZY SCROLLU (.reveal -> .is-visible)
       ====================================================================== */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
    .reveal.is-visible { opacity: 1; transform: none; }
    .reveal[data-delay="1"] { transition-delay: .08s; }
    .reveal[data-delay="2"] { transition-delay: .16s; }
    .reveal[data-delay="3"] { transition-delay: .24s; }
    .reveal[data-delay="4"] { transition-delay: .32s; }
    .reveal[data-delay="5"] { transition-delay: .4s; }
    .reveal-x { opacity: 0; transform: translateX(-30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
    .reveal-x.is-visible { opacity: 1; transform: none; }

    /* ======================================================================
       18b. KOMPONENTY PODSTRON: filtry, blog, artykuł, formularz, case study, TY
       ====================================================================== */
    /* --- Filtry (chipy) --- */
    .filterbar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.8rem; }
    .filter-row { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
    .filter-row .fr-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; min-width: 56px; }
    .chip-group { display: flex; gap: .5rem; flex-wrap: wrap; }
    .chip { padding: .55rem 1.05rem; border: 1px solid var(--line); border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); background: #fff; transition: all .25s; }
    .chip:hover { border-color: var(--navy); color: var(--navy); }
    .chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

    /* --- Blog / siatka artykułów --- */
    .article-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s; min-height: 100%; }
    .article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .article-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--navy); }
    .article-thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
    .article-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
    .article-cat { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); margin-bottom: .8rem; }
    .article-card h3 { font-size: 1.2rem; margin-bottom: .6rem; line-height: 1.25; }
    .article-card p { font-size: .94rem; color: var(--ink-soft); flex: 1; margin-bottom: 1.2rem; }
    .article-meta { display: flex; align-items: center; gap: .7rem; font-size: .84rem; color: var(--ink-faint); padding-top: 1rem; border-top: 1px solid var(--line-soft); }
    /* Lead magnet wpięty w listing */
    .article-card.is-magnet { background: linear-gradient(160deg, var(--navy), var(--navy-900)); color: #fff; border: none; }
    .article-card.is-magnet h3 { color: #fff; }
    .article-card.is-magnet p { color: var(--on-dark-soft); }
    .article-card.is-magnet .article-cat { color: var(--gold); }

    /* --- Prose (pojedynczy artykuł) --- */
    .article-wrap { display: grid; grid-template-columns: 1fr 260px; gap: 3.5rem; align-items: start; }
    .article-aside { position: sticky; top: 130px; display: grid; gap: 1.4rem; }
    .prose { max-width: 720px; }
    .prose > * + * { margin-top: 1.4rem; }
    .prose h2 { font-family: var(--font-display); font-size: 1.7rem; margin-top: 2.6rem; color: var(--navy); }
    .prose h3 { font-family: var(--font-display); font-size: 1.3rem; margin-top: 2rem; color: var(--navy); }
    .prose p, .prose li { color: var(--ink-soft); }
    .prose a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 2px; }
    .prose a:hover { color: var(--navy); }
    .prose ul { display: grid; gap: .6rem; padding-left: 0; }
    .prose ul li { position: relative; padding-left: 1.6rem; list-style: none; }
    .prose ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; background: var(--gold); border-radius: 2px; }
    .prose blockquote { border-left: 3px solid var(--gold); padding: .4rem 0 .4rem 1.4rem; margin: 2rem 0; font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
    .author { display: flex; gap: 1.2rem; align-items: center; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
    .author .av { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; flex: none; }
    .author b { display: block; color: var(--navy); }
    .author span { font-size: .9rem; color: var(--ink-soft); }
    .aside-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
    .aside-card h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 1rem; }
    .aside-card a:not(.btn), .aside-card .toc-item { display: block; font-size: .92rem; padding: .5rem 0; color: var(--navy); border-bottom: 1px solid var(--line-soft); transition: padding .25s, color .25s; }
    .aside-card a:not(.btn):last-child, .aside-card .toc-item:last-child { border-bottom: 0; }
    .aside-card a:not(.btn):hover { color: var(--gold-600); padding-left: 4px; }

    /* --- Formularze --- */
    .form { display: grid; gap: 1.4rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .field { display: grid; gap: .5rem; }
    .field label { font-size: .88rem; font-weight: 600; color: var(--navy); }
    .field input, .field select, .field textarea { width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .25s, box-shadow .25s; }
    .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(175,159,119,.15); }
    .field textarea { resize: vertical; min-height: 120px; }
    .choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .7rem; }
    .choice { position: relative; }
    .choice input { position: absolute; opacity: 0; pointer-events: none; }
    .choice label { display: block; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; font-weight: 500; font-size: .95rem; transition: all .25s; text-align: center; }
    .choice input:checked + label { border-color: var(--gold); background: rgba(175,159,119,.1); color: var(--navy); box-shadow: 0 0 0 1px var(--gold); }
    .choice input:focus-visible + label { box-shadow: 0 0 0 3px rgba(175,159,119,.3); }
    .form-note { font-size: .85rem; color: var(--ink-faint); }
    .form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-md); }

    /* --- Case study (pojedynczy) --- */
    .cs-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
    .cs-profile { display: grid; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .4rem 1.5rem; }
    .cs-profile .row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
    .cs-profile .row:last-child { border-bottom: 0; }
    .cs-profile .row b { color: var(--navy); } .cs-profile .row span { color: var(--ink-soft); text-align: right; }
    .beforeafter { display: grid; gap: 1.6rem; }
    .ba-item .ba-head { display: flex; justify-content: space-between; font-size: .92rem; color: var(--navy); font-weight: 600; margin-bottom: .6rem; }
    .ba-bars { display: grid; gap: .5rem; }
    .ba-bar { height: 40px; border-radius: 8px; display: flex; align-items: center; padding: 0 1rem; font-weight: 600; font-size: .9rem; color: #fff; white-space: nowrap; transition: width 1s var(--ease-out); }
    .ba-bar.before { background: var(--ink-faint); }
    .ba-bar.after { background: linear-gradient(90deg, var(--gold), var(--gold-600)); color: var(--navy-900); }
    .roi-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
    .roi-cell { background: #fff; padding: 2rem 1.4rem; text-align: center; }
    .roi-cell .rn { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); line-height: 1; }
    .roi-cell .rn .suf { color: var(--gold-600); }
    .roi-cell .rl { font-size: .88rem; color: var(--ink-soft); margin-top: .5rem; }
    .bigquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.35; color: #fff; }

    /* --- Thank You: wideo + Zencal + przygotowanie --- */
    .video-frame { aspect-ratio: 16/9; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--navy-900)); position: relative; overflow: hidden; display: grid; place-items: center; border: 1px solid var(--line-dark); }
    .video-frame .bg-grid { opacity: .5; }
    .play-btn { width: 84px; height: 84px; border-radius: 50%; background: var(--gold); color: var(--navy-900); display: grid; place-items: center; box-shadow: 0 10px 40px rgba(175,159,119,.4); transition: transform .3s; z-index: 1; }
    .play-btn:hover { transform: scale(1.08); }
    .play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
    .video-cap { position: absolute; bottom: 1.2rem; left: 1.4rem; color: var(--on-dark-soft); font-size: .86rem; z-index: 1; }
    .zencal-embed { border: 1px solid var(--line); border-radius: var(--radius); min-height: 520px; background: var(--paper); overflow: hidden; }
    .zencal-embed iframe { width: 100%; min-height: 520px; border: 0; display: block; }
    .zencal-fallback { padding: 2.6rem; text-align: center; display: grid; place-items: center; gap: 1rem; min-height: 520px; }
    .zencal-fallback .zc-ic { width: 64px; height: 64px; border-radius: 16px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-600); }
    .prep-list { display: grid; gap: 1rem; }
    .prep-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.4rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
    .prep-item .pn { width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); }
    .prep-item b { color: var(--navy); } .prep-item p { font-size: .92rem; color: var(--ink-soft); margin-top: .2rem; }

    /* --- Mały nagłówek podstrony (np. listing) --- */
    .page-head { padding: clamp(48px, 7vw, 90px) 0 clamp(28px, 4vw, 48px); }

    /* Hero „O nas" — granatowa sekcja z perspektywą (punkt zbiegu) */
    .about-hero { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 132px) 0; }
    .about-hero .ah-lines { position: absolute; inset: 0; pointer-events: none; }
    .about-hero .ah-lines svg { width: 100%; height: 100%; display: block; }
    .about-hero .container { position: relative; z-index: 1; }
    .about-hero h1 { max-width: 16ch; }
    .about-hero .ah-vp { opacity: 1; transform-origin: center; }
    @keyframes ahPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

    /* Hero strony głównej — krzywa „chaos → spokój" jako tło w dolnej części */
    .hero-curve { position: relative; overflow: hidden; text-align: center; padding: clamp(40px, 6vw, 84px) 0 clamp(116px, 13vw, 184px); }
    .hero-curve .hc-bg { position: absolute; left: 0; right: 0; bottom: 0; height: 440px; overflow: hidden; pointer-events: none; }
    .hero-curve .hc-bg svg { position: absolute; left: 0; bottom: 0; width: 4000px; height: 440px; display: block; }
    .hero-curve .container { position: relative; z-index: 1; }
    .hero-curve .eyebrow { justify-content: center; }
    .hero-curve .lead { margin-left: auto; margin-right: auto; }
    .hero-curve .btn-row { justify-content: center; }
    .hero-curve .hero-note { justify-content: center; }

    /* Hero strony głównej — czysty (inspiracja: Linear / Notion + BCG / McKinsey) */
    .hero-home { position: relative; overflow: hidden; text-align: center; padding: clamp(76px,11vw,148px) 0 clamp(64px,9vw,116px); }
    .hero-home .hh-glow { position: absolute; left: 50%; top: -60px; transform: translateX(-50%); width: min(780px, 92%); height: 540px; background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(175,159,119,.11), transparent 72%); pointer-events: none; }
    .hero-home .bg-grid { inset: auto; left: 50%; top: 44%; transform: translate(-50%,-50%); width: min(720px, 92%); height: 430px; background-image: linear-gradient(rgba(45,54,70,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(45,54,70,.14) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%); mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%); }
    .hero-home .container { position: relative; z-index: 1; }
    .hero-home .eyebrow { justify-content: center; }
    .hero-home .lead { margin-left: auto; margin-right: auto; max-width: 560px; }
    .hero-home .btn-row { justify-content: center; }
    .hero-home .hero-note { justify-content: center; }

    /* Zespół (O nas) — siatka 4 osób */
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); max-width: 1040px; margin: clamp(32px, 4vw, 52px) auto 0; }
    .team-card { display: block; }
    .team-photo { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s; }
    .team-card:hover .team-photo { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
    .team-photo .mono { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold-600); letter-spacing: .02em; }
    .team-photo .team-img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; transition: filter .4s var(--ease-out); }
    .team-card:hover .team-photo .team-img { filter: brightness(1.12); }
    .team-photo .team-hover { position: absolute; right: 12px; bottom: 12px; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; opacity: 0; transform: translateY(6px); transition: opacity .35s var(--ease-out), transform .35s var(--ease-out); }
    .team-photo .team-hover svg { width: 15px; height: 15px; }
    .team-card:hover .team-photo .team-hover { opacity: 1; transform: none; }
    .team-info { margin-top: .9rem; }
    .team-info b { display: block; font-family: var(--font-display); font-size: calc(1.06rem + 2px); color: var(--navy); margin-left: .7rem; }
    .team-info span { font-size: .9rem; color: var(--ink-soft); }
    @media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

    /* Strona osoby */
    .person-head { display: flex; align-items: flex-start; gap: clamp(24px, 3.5vw, 44px); }
    .person-side { flex: none; width: clamp(160px, 19vw, 220px); display: flex; flex-direction: column; }
    .person-photo { width: 100%; aspect-ratio: 1; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
    .person-photo .mono { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold-600); }
    .person-photo .person-img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
    .person-name { padding-top: .3rem; }
    .person-hero { padding: clamp(40px, 6vw, 80px) 0; }
    .person-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--on-dark-soft); font-size: .92rem; margin-bottom: 1.6rem; }
    .person-back:hover { color: var(--gold); }
    .person-back svg { width: 16px; height: 16px; }
    .person-hero .person-name h1 { color: #cebf95; }
    .person-hero .person-photo { background: rgba(255,255,255,.06); border-color: var(--line-dark); }
    .person-intro { color: #fff; font-size: 1.05rem; line-height: 1.7; max-width: 62ch; margin-top: calc(.6rem + 8px); }
    .person-hero + .section { padding-top: clamp(24px, 3.5vw, 44px); }
    .person-bio h2::after { content: ""; display: block; width: 224px; height: 3px; margin-top: .55rem; background: var(--gold); border-radius: 2px; }
    .person-contact { display: flex; flex-flow: row wrap; gap: .6rem 1.8rem; margin-top: clamp(18px, 2.4vw, 26px); }
    .person-contact a { display: inline-flex; align-items: center; gap: .4rem; font-size: 1.12rem; color: #fff; }
    .person-contact a:hover { color: var(--gold); }
    .person-contact svg { width: 27px; height: 27px; color: var(--gold); flex: none; }
    @media (max-width: 560px) { .person-head { flex-direction: column; align-items: flex-start; } .person-side { width: min(220px, 62%); } }

    /* [TEST] Cztery koncepty hero — jeden pod drugim */
    .hx { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
    .hx1 { border-top: 0; }
    .hx-tag { text-align: center; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); padding-top: 20px; }
    .hx3 .hx-tag { color: var(--gold); }
    /* 1 — Stripe / Linear */
    .hx1 { text-align: center; padding: clamp(36px,5vw,72px) 0 clamp(56px,8vw,96px); }
    .hx1 .eyebrow, .hx1 .btn-row { justify-content: center; }
    .hx1 .lead { margin: 1.3rem auto 0; }
    .hx1-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; max-width: 760px; margin: clamp(34px,5vw,54px) auto 0; }
    .hx1-metric .n { font-family: var(--font-display); font-size: clamp(2rem,3.6vw,2.9rem); line-height: 1; color: var(--navy); letter-spacing: -.02em; }
    .hx1-metric .n .suf { color: var(--gold-600); }
    .hx1-metric .l { font-size: .84rem; color: var(--ink-soft); margin-top: .5rem; line-height: 1.45; }
    /* 2 — McKinsey / BCG */
    .hx2 { padding: clamp(60px,9vw,124px) 0; }
    .hx2 .thesis { font-family: var(--font-display); font-size: clamp(1.9rem,4.4vw,3.2rem); line-height: 1.16; color: var(--navy); letter-spacing: -.02em; max-width: 18ch; margin: 1rem 0 1.8rem; }
    .hx2 .tlink { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--gold-600); }
    .hx2 .tlink svg { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
    .hx2 .tlink:hover svg { transform: translateX(4px); }
    /* 3 — Enterprise / Palantir (dark) */
    .hx3 { text-align: center; padding: clamp(72px,10vw,140px) 0; }
    .hx3 .eyebrow { justify-content: center; }
    .hx3 .statement { font-family: var(--font-display); font-size: clamp(1.9rem,4.4vw,3.1rem); line-height: 1.18; color: #fff; letter-spacing: -.02em; max-width: 20ch; margin: 1rem auto 2rem; }
    /* 4 — Results-first split */
    .hx4 { padding: clamp(44px,6vw,88px) 0; }
    .hx4 .split2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
    .hx4 .proof { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,36px); background: var(--paper); }
    .hx4 .proof .n { font-family: var(--font-display); font-size: clamp(3rem,6vw,4.4rem); line-height: 1; color: var(--navy); letter-spacing: -.02em; }
    .hx4 .proof .n .suf { color: var(--gold-600); }
    .hx4 .proof .txt { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; margin-top: 1rem; }
    @media (max-width: 760px) { .hx4 .split2 { grid-template-columns: 1fr; } }

    /* [TEST] 5 hero z animacją „porządkowania" (wspólny tekst + 2 CTA) */
    .oh { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: clamp(48px,7vw,96px) 0; }
    .oh1 { border-top: 0; }
    .oh-tag { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 20px; }
    .oh-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
    .oh .lead { max-width: 470px; }
    .oh-vis { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1 / 1; margin: 0 auto; }
    @media (max-width: 820px) { .oh-grid { grid-template-columns: 1fr; } .oh-vis { max-width: 300px; } }
    /* 1 — sieć decyzji */
    .net { position: absolute; inset: 0; }
    .net svg { width: 100%; height: 100%; display: block; }
    .net .nl { stroke: var(--gold); stroke-width: .6; opacity: 0; animation: netLine .8s var(--ease-out) forwards !important; }
    .net .nd { opacity: .4; animation: netPulse 3.4s var(--ease) infinite !important; }
    @keyframes netLine { to { opacity: .45; } }
    @keyframes netPulse { 0%,100% { opacity: .3; } 50% { opacity: .9; } }
    /* 2 — punkt nawigacji (North Star) */
    .star { position: absolute; inset: 0; display: grid; place-items: center; }
    .star .core { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 22px 5px rgba(175,159,119,.55); animation: starDrift 9s var(--ease) infinite !important; }
    .star .ring { position: absolute; width: 24px; height: 24px; border: 1px solid var(--gold); border-radius: 50%; opacity: 0; animation: starRing 4.2s var(--ease-out) infinite !important; }
    @keyframes starDrift { 0%,100% { transform: translate(0,0); } 25% { transform: translate(16px,-12px); } 50% { transform: translate(-10px,14px); } 75% { transform: translate(12px,10px); } }
    @keyframes starRing { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(7); opacity: 0; } }
    /* 3 — żywy wykres */
    .lchart { position: absolute; inset: 10%; }
    .lchart svg { width: 100%; height: 100%; display: block; }
    .lchart .base { stroke: var(--line); }
    .lchart .ln { fill: none; stroke: var(--gold); stroke-width: 2.5; vector-effect: non-scaling-stroke; stroke-linejoin: round; stroke-linecap: round; }
    /* 4 — DNA organizacji */
    .dna { position: absolute; inset: 6%; display: grid; place-items: center; }
    .dna svg { height: 100%; width: auto; }
    .dna .strand { fill: none; stroke-width: 2.5; vector-effect: non-scaling-stroke; }
    .dna .s1 { stroke: var(--gold); }
    .dna .s2 { stroke: var(--navy); }
    .dna .rung { stroke: var(--gold); stroke-width: 1.4; opacity: .45; }
    .dna .helix { transform-box: fill-box; transform-origin: center; animation: dnaDensity 6s var(--ease) infinite !important; }
    @keyframes dnaDensity { 0%,100% { transform: scaleX(1); } 50% { transform: scaleX(.4); } }

    /* ======================================================================
       19. RESPONSYWNOŚĆ
       ====================================================================== */
    @media (max-width: 900px) {
      .article-wrap { grid-template-columns: 1fr; }
      .article-aside { position: static; }
      .cs-hero { grid-template-columns: 1fr; }
      .roi-band { grid-template-columns: 1fr; }
    }
    @media (max-width: 1024px) {
      .toc-card { display: none; }

      /* Nawigacja pod hamburgerem (mobile + tablet, każda orientacja).
         Na tablecie header pozostaje przyklejony do góry (sticky, jak na desktopie). */
      /* WAŻNE: bez backdrop-filter, bo tworzy containing block dla position:fixed
         i menu nie pokrywałoby całego ekranu. */
      .site-header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
      .nav-menu {
        position: fixed; inset: 0; background: #fff; flex-direction: column;
        align-items: stretch; gap: .8rem; padding: calc(var(--header-h) + 48px) 1.6rem 2.4rem; overflow-y: auto;
        transform: translateX(100%); transition: transform .4s var(--ease); z-index: 95;
      }
      body.menu-open .nav-menu { transform: translateX(0); }
      body.menu-open { overflow: hidden; }
      /* Po otwarciu menu cały header (pasek + nawigacja z X) pozostaje na wierzchu i nie jest zasłaniany */
      body.menu-open .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
      .nav-link { padding: 1.25rem .2rem; border-radius: 0; font-size: clamp(1.4rem, 5.5vw, 2.4rem); }
      .nav-link.active::after { display: none; }
      .nav-item { width: 100%; }
      .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; min-width: 0; padding: .3rem 0 .8rem; }
      .dropdown-link { padding-top: .5rem; padding-bottom: .5rem; }
      .nav-item:hover .dropdown { transform: none; }
      .nav-toggle { display: flex; position: relative; z-index: 110; }
      .nav-actions .btn--gold { display: none; }
      /* Logo, X i górny pasek zawsze nad wysuwanym menu */
      .logo { position: relative; z-index: 110; }
      .site-header .topbar { position: relative; z-index: 110; }
      /* CTA jako ostatnia pozycja — dosunięta do dołu, menu wypełnia cały ekran */
      .nav-cta-item { display: block; margin-top: auto; padding-top: 1.6rem; }
      .nav-cta-item .btn { width: 100%; justify-content: center; padding-top: 1rem; padding-bottom: 1rem; }

      .hero-grid { grid-template-columns: 1fr; gap: 36px; }
      .hero-art { max-width: 440px; margin: 0 auto; }
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .calc-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
    }
    @media (max-width: 760px) {
      :root { --header-h: 118px; }
      .nav { padding: 16px 0 14px; }
      /* O nas: imię i nazwisko pod sobą (przesunięcie w prawo dziedziczone z reguły bazowej) */
      .team-info b { width: min-content; }
      /* Tylko telefon: mniejszy granatowy pasek + mniejsza przerwa tel/e-mail */
      .topbar .container { min-height: 36px; padding-top: 5px; padding-bottom: 5px; }
      /* Tylko telefon: granatowy pasek przewija się ze stroną, a biała nawigacja (logo + menu)
         przykleja się do góry i jedzie z nami. display:contents sprawia, że sticky działa
         względem całej strony, a nie tylko krótkiego headera. */
      .site-header { display: contents; }
      .site-header > .container { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line-soft); }
      body { font-size: 16px; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .split { grid-template-columns: 1fr; }
      .stats { grid-template-columns: 1fr 1fr; }
      .timeline-h { grid-auto-flow: row; }
      .timeline-h .th-line, .timeline-h .th-fill { display: none; }
      .th-step { text-align: left; display: grid; grid-template-columns: 56px 1fr; column-gap: 1.2rem; row-gap: .3rem; align-items: start; padding: 0 0 1.8rem; }
      .th-node { margin: 0; grid-column: 1; grid-row: 1 / span 2; }
      .th-step h4, .th-step p { grid-column: 2; }
      /* „Jak to robimy": tekst lekko wyżej względem numeru */
      .tl-body { padding-top: 0; }
      /* „Proces współpracy": wyśrodkowanie sekcji */
      .timeline-h { max-width: 360px; margin-left: auto; margin-right: auto; }

      /* Skalowanie — proces współpracy, krok 5 lekko wyżej */
      [data-route="#/skalowanie"] .timeline-h .th-step:nth-child(7) h4 { margin-top: .2rem; }
      /* Skalowanie + O nas — „Jak to robimy" / „Metoda": numery minimalnie niżej */
      [data-route="#/skalowanie"] .tl-node,
      [data-route="#/o-nas"] .tl-node { margin-top: .35rem; }

      /* Fuzje i przejęcia — „Jak to robimy": tekst wyśrodkowany względem numeru */
      [data-route="#/mna"] .tl-step { align-items: center; }
      /* Fuzje i przejęcia — proces współpracy: kroki 4 i 5 niżej (na środku) */
      [data-route="#/mna"] .timeline-h .th-step:nth-child(6) h4,
      [data-route="#/mna"] .timeline-h .th-step:nth-child(7) h4 { margin-top: .5rem; }

      /* Sukcesja — obie osie: numery niżej, tekst na środku punktu */
      [data-route="#/sukcesja"] .tl-step { align-items: center; }
      [data-route="#/sukcesja"] .timeline-h .th-step { align-items: center; }
      .magnet { grid-template-columns: 1fr; }
      /* Krótsza stopka: opis na całą szerokość, linki w 2 kolumnach (Linie usługowe obok Zasobów) */
      .footer-top { grid-template-columns: 1fr 1fr; gap: 1.8rem 1.4rem; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .related-articles { display: none; }
      .hero-grid { text-align: left; }
      /* Animacja „O nas": pas o proporcjach viewBoxa (2.5:1), mocno powiększony i przesunięty w lewo */
      .about-hero .ah-lines { top: 50%; bottom: auto; height: 40vw; transform: translate(-45%, -69%) scale(2.3); }
      .calc-grid .calc-visual { display: none; }
      .carousel-nav { flex-direction: column-reverse; gap: 1.2rem; align-items: flex-start; }
    }

    /* Tablet: zdjęcia zespołu w jednej linii obok siebie, imię i nazwisko pod sobą */
    @media (min-width: 761px) and (max-width: 1024px) {
      .team-grid { grid-template-columns: repeat(4, 1fr); }
      .team-info b { width: min-content; }
    }

    /* Szanuj preferencje ograniczonego ruchu */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
      .reveal, .reveal-x, .tl-step, .th-step { opacity: 1 !important; transform: none !important; }
    }

    /* Pasek postępu czytania (na górze) */
    .read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-600)); z-index: 200; transition: width .1s linear; }

    /* Formularz — status wysyłki + Turnstile */
    .form-status { font-size: .9rem; margin-top: .9rem; min-height: 1.2em; }
    .form-status.is-error { color: #b3261e; }
    .form-status.is-ok { color: var(--gold-600); }
    .cf-turnstile-holder { margin-top: .4rem; }
    .form button[type="submit"][disabled] { opacity: .6; cursor: progress; }
  