
    /* ─── TOKENS ─── */
    :root {
      /* — base palette — */
      --dark-900: #060D18;
      --dark-800: #0E1F30;
      --dark-700: #1C2B3A;
      --dark-600: #3D5268;
      --accent:   #007FDA;
      --accent-2: #0880B8;
      --light-100: #F4F6F8;
      --light-200: #E0E6EC;
      --light-300: #EBF0F5;
      --white:    #FFFFFF;

      /* — text — */
      --text-w:   #FFFFFF;
      --text-w-m: rgba(255,255,255,0.5);
      --text-w-s: rgba(255,255,255,0.2);
      --text-w-xs:  rgba(255,255,255,0.3);
      --text-w-30:  rgba(255,255,255,0.3);
      --text-w-40:  rgba(255,255,255,0.4);
      --text-w-45:  rgba(255,255,255,0.45);
      --text-w-60:  rgba(255,255,255,0.6);
      --text-w-75:  rgba(255,255,255,0.75);
      --text-w-80:  rgba(255,255,255,0.8);
      --text-w-85:  rgba(255,255,255,0.85);
      --text-w-95:  rgba(255,255,255,0.95);
      --text-d:   #060D18;
      --text-d-m: #3D5268;
      --text-d-s: rgba(6,13,24,0.5);
      --text-muted: rgba(6,13,24,0.5);
      --text-d-38:  rgba(6,13,24,0.38);
      --text-d-45:  rgba(6,13,24,0.45);
      --text-d-55:  rgba(6,13,24,0.55);
      --text-d-60:  rgba(6,13,24,0.6);

      /* — borders — */
      --border-on-dark-xs: rgba(255,255,255,0.04);
      --border-on-dark-sm: rgba(255,255,255,0.06);
      --border-on-dark:    rgba(255,255,255,0.08);
      --border-on-dark-md: rgba(255,255,255,0.12);
      --border-on-dark-18: rgba(255,255,255,0.18);
      --border-on-dark-25: rgba(255,255,255,0.25);
      --border-on-dark-35: rgba(255,255,255,0.35);
      --border-on-dark-lg: rgba(255,255,255,0.2);
      --border-on-light:   rgba(6,13,24,0.08);
      --border-on-light-md: rgba(6,13,24,0.1);

      /* — accent opacity — */
      --accent-bg:      rgba(8,128,184,0.15);
      --accent-bg-xs:   rgba(8,128,184,0.07);
      --accent-bg-50:   rgba(8,128,184,0.5);
      --accent-dim:     rgba(0,127,218,0.12);
      --accent-focus:   rgba(0,127,218,0.15);
      --accent-border:  rgba(0,127,218,0.3);

      /* — overlays — */
      --overlay-dark-30: rgba(6,13,24,0.3);
      --overlay-dark-72: rgba(6,13,24,0.72);
      --overlay-dark-80: rgba(6,13,24,0.8);

      /* — misc — */
      --shadow-text: rgba(0,0,0,0.35);
      --surface-dark-xs: rgba(255,255,255,0.03);

      /* — typography — */
      --display: 'Saira Condensed', sans-serif;
      --body:    'Instrument Sans', sans-serif;

      /* — layout — */
      --max-w:  1440px;
      --gutter: clamp(24px, 6.25vw, 96px);
      --page-gutter: clamp(24px, 12.5vw, 240px);
      --r-sm:   4px;
      --r-md:   8px;

      /* — motion — */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

      /* — shape — */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 16px;
      --clip-size: 40px;
      --clip-corner: polygon(var(--clip-size) 0, 100% 0, 100% calc(100% - var(--clip-size)), calc(100% - var(--clip-size)) 100%, 0 100%, 0 var(--clip-size));

      /* Clip-path tokens dla mniejszych elementów (przyciski, badge'y, małe karty) */
      --clip-sm: 8px;     /* badge, mała karta */
      --clip-btn: 12px;   /* przycisk standardowy */
      --clip-md: 16px;    /* średnia karta (testimonial) */
      --clip-lg: 20px;    /* większa karta (blog) */
      --clip-xl: 24px;    /* duża karta (cert) */

      --clip-corner-sm:  polygon(var(--clip-sm)  0, 100% 0, 100% calc(100% - var(--clip-sm)),  calc(100% - var(--clip-sm))  100%, 0 100%, 0 var(--clip-sm));
      --clip-corner-btn: polygon(var(--clip-btn) 0, 100% 0, 100% calc(100% - var(--clip-btn)), calc(100% - var(--clip-btn)) 100%, 0 100%, 0 var(--clip-btn));
      --clip-corner-md:  polygon(var(--clip-md)  0, 100% 0, 100% calc(100% - var(--clip-md)),  calc(100% - var(--clip-md))  100%, 0 100%, 0 var(--clip-md));
      --clip-corner-lg:  polygon(var(--clip-lg)  0, 100% 0, 100% calc(100% - var(--clip-lg)),  calc(100% - var(--clip-lg))  100%, 0 100%, 0 var(--clip-lg));
      --clip-corner-xl:  polygon(var(--clip-xl)  0, 100% 0, 100% calc(100% - var(--clip-xl)),  calc(100% - var(--clip-xl))  100%, 0 100%, 0 var(--clip-xl));
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ─── CUSTOM PAGE SCROLLBAR — DISABLED 2026-05-21 ─── */
    .page-scrollbar { display: none !important; }
    .page-scrollbar-legacy {
      position: fixed;
      right: 14px;
      top: 96px;
      bottom: 28px;
      width: 3px;
      z-index: 500;
      pointer-events: none;
    }
    .page-scrollbar-track {
      position: relative;
      width: 3px;
      height: 100%;
      background: var(--border-on-dark);
      border-radius: 2px;
    }
    .page-scrollbar-fill {
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 0%;
      min-height: 36px;
      background: var(--accent);
      border-radius: 2px;
    }
    .page-scrollbar-truck {
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%) rotate(180deg);
      width: 19px;
      height: auto;
      pointer-events: none;
    }
    @media (max-width: 900px) {
      .page-scrollbar { display: none; }
    }

    /* ─── CUSTOM SCROLLBARS (non-page overflow elements) ─── */
    :not(html):not(body)::-webkit-scrollbar { width: 4px; height: 4px; }
    :not(html):not(body)::-webkit-scrollbar-track { background: var(--dark-800); border-radius: 2px; }
    :not(html):not(body)::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
    body {
      font-family: var(--body);
      font-size: 16px;
      color: var(--text-d);
      background: var(--dark-900);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }

    /* ─── LAYOUT ─── */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding-inline: var(--gutter);
      width: 100%;
    }

    /* ─── EYEBROW ─── */
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: var(--body);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    /* ─── BUTTONS ─── moved to style.css (globalna konwencja brand).
       Tutaj zostawiamy tylko homepage-specific warianty. */
    .btn-secondary-hero { opacity: 0.65; font-size: 13px; padding: 14px 32px; }

    /* nav → components/nav.js */

    /* ─── S1: HERO ─── */
    .s-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 160px clamp(24px,3vw,48px) 80px;
      background: var(--white);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: url('/wp-content/themes/natanek-theme/assets/hero-natanek.webp') 72% 65%/cover no-repeat;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, var(--text-d-55) 0%, var(--text-d-38) 45%, var(--overlay-dark-72) 100%);
    }
    .hero-bg video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1246px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 48px;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      max-width: 920px;
    }

    .hero-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(48px, 5.5vw, 80px);
      line-height: 1.05;
      text-align: left;
      color: var(--white);
      text-shadow: 0 2px 24px var(--shadow-text);
    }
    .hero-heading span { color: var(--accent); }

    .hero-sub {
      font-size: clamp(15px, 1.05vw, 18px);
      line-height: 1.6;
      text-align: left;
      color: var(--text-w-95);
      max-width: 640px;
      padding: 18px 32px;
      background: var(--dark-800);
      border: 1px solid rgba(255,255,255,0.08);
      clip-path: var(--clip-corner);
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-industries-wrap {
      width: 100%;
      max-width: 1100px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
    .hero-industries-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
      font-family: var(--body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: var(--white);
      text-decoration: none;
      padding: 6px 0;
      border-bottom: 1px solid var(--text-w-30);
      transition: border-color 0.2s, color 0.2s;
    }
    .hero-industries-cta:hover {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }
    .hero-industries-eyebrow {
      font-family: var(--body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-w-75);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-industries-eyebrow::before,
    .hero-industries-eyebrow::after {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--text-w-30);
    }
    .hero-industries {
      width: 100%;
      background: var(--text-d-60);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border-on-dark);
      clip-path: var(--clip-corner);
      display: grid;
      grid-template-columns: repeat(6, 1fr);
    }
    .industry-cell {
      padding: 18px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
      border-right: 1px solid var(--border-on-dark-sm);
      text-decoration: none;
      transition: background 0.3s;
      position: relative;
    }
    .industry-cell:last-child { border-right: none; }
    .industry-cell:hover { background: var(--accent-dim); }
    .industry-cell::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: var(--accent);
      transition: width 0.3s var(--ease-out);
    }
    .industry-cell:hover::after { width: 100%; }
    /* .icon base class moved to style.css (global) — działa na wszystkich stronach */

    .industry-icon {
      width: 26px;
      height: 26px;
      color: var(--accent);
      transition: transform 0.3s var(--ease-out);
    }
    .industry-cell:hover .industry-icon { transform: translateY(-2px); }
    .industry-num {
      font-family: var(--body);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 2px;
      color: var(--text-w-40);
    }
    .industry-name {
      font-family: var(--body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.3;
    }

    @media (max-width: 900px) {
      .hero-industries { grid-template-columns: repeat(2, 1fr); }
      .industry-cell { border-right: none; border-bottom: 1px solid var(--border-on-dark-sm); }
      .industry-cell:nth-child(odd) { border-right: 1px solid var(--border-on-dark-sm); }
      /* Span pełnej szerokości tylko gdy lista ma nieparzystą liczbę elementów. */
      .industry-cell:last-child:nth-child(odd) { grid-column: 1 / -1; }
    }
    .logo-text-item {
      opacity: 0.5;
      font-family: 'Inter', 'Instrument Sans', sans-serif;
      font-weight: 700;
      font-size: 28px;
      color: var(--dark-900);
      line-height: 1;
      display: flex;
      align-items: center;
    }

    /* ─── S2: STATS ─── */
    .s-stats {
      background: var(--dark-900);
      padding: 80px clamp(24px,12.5vw,240px);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .stats-grid {
      max-width: 1246px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--light-200);
      clip-path: var(--clip-corner-xl);
    }

    .stat-card {
      background: var(--white);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 40px 32px;
    }

    .stat-number {
      font-family: var(--display);
      font-weight: 700;
      font-size: 48px;
      line-height: 1;
      color: var(--dark-900);
      text-align: center;
    }
    .stat-number .accent { color: var(--accent); }

    .stat-desc {
      font-size: 14px;
      line-height: 1.35;
      color: var(--dark-600);
      text-align: center;
      max-width: 180px;
    }

    /* ─── S3: SPECJALIZACJE ─── */
    .s-specs {
      background: var(--white);
      padding: 120px clamp(24px,12.5vw,240px);
    }

    .specs-inner {
      max-width: 1246px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 64px;
    }

    .specs-header { max-width: 700px; }

    .specs-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(40px, 3.75vw, 72px);
      line-height: 1.1;
      color: var(--dark-900);
      margin-top: 20px;
    }

    /* Tile grid */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .spec-card {
      background: var(--light-100);
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      clip-path: var(--clip-corner);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    }
    .spec-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px var(--border-on-light);
    }

    .spec-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .spec-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s var(--ease-out);
    }
    .spec-card:hover .spec-card-img img { transform: scale(1.04); }

    .spec-card-body {
      padding: 28px 32px 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .spec-card-num {
      font-family: var(--body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
    }

    .spec-card-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: 28px;
      line-height: 1.1;
      color: var(--dark-900);
    }

    .spec-card-desc {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-d-m);
      flex: 1;
    }

    .spec-card-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--accent);
      margin-top: 8px;
    }

    /* ─── S4: JAK PRACUJEMY — hero foto + 2-col content ─── */
    .s-jak-pracujemy {
      background: var(--white);
    }

    /* — hero foto full width — */
    .jp-hero {
      position: relative;
      width: 100%;
      height: clamp(360px, 60vh, 640px);
      overflow: hidden;
    }
    .jp-hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .jp-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--overlay-dark-80) 0%, var(--overlay-dark-30) 50%, var(--border-on-light-md) 100%);
    }
    .jp-hero-text {
      position: absolute;
      bottom: clamp(32px, 5vw, 64px);
      left: clamp(24px, 12.5vw, 240px);
      right: clamp(24px, 12.5vw, 240px);
    }
    .jp-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-w-80);
      margin-bottom: 12px;
    }
    .jp-hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: var(--text-w-80);
    }
    .jp-hero-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(36px, 4.5vw, 72px);
      line-height: 1.1;
      color: var(--white);
      letter-spacing: -1px;
      max-width: 14ch;
    }

    /* — content 2 cols — */
    .jp-content {
      padding: clamp(56px, 7vw, 100px) clamp(24px, 12.5vw, 240px);
    }
    .jp-grid {
      max-width: 1246px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(48px, 6vw, 100px);
      align-items: start;
    }
    @media (max-width: 860px) {
      .jp-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    /* left col — opis */
    .jp-desc-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .jp-desc-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(22px, 2vw, 32px);
      line-height: 1.25;
      color: var(--dark-900);
      margin-bottom: 20px;
    }
    .jp-desc p {
      font-size: clamp(14px, 1vw, 16px);
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .jp-desc p:last-child { margin-bottom: 0; }
    .jp-desc strong {
      color: var(--dark-900);
      font-weight: 700;
      background: var(--accent-bg-xs);
      padding: 1px 5px;
      border-radius: 3px;
    }
    .jp-desc-divider {
      width: 40px;
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
      margin: 20px 0 20px;
    }

    /* right col — ikonki */
    .jp-services {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .jp-service-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: var(--light-100);
      clip-path: var(--clip-corner-md);
      transition: background 0.2s ease;
    }
    .jp-service-item:hover {
      background: var(--light-300);
    }
    .jp-service-icon {
      width: 44px;
      height: 44px;
      background: var(--accent);
    }
    .jp-service-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--white);
    }
    .jp-service-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(18px, 1.4vw, 22px);
      color: var(--dark-900);
      margin-bottom: 6px;
      line-height: 1.25;
    }
    .jp-service-desc {
      font-size: clamp(13px, 0.95vw, 15px);
      color: var(--text-muted);
      line-height: 1.55;
    }
    /* ─── S4: JAK PRACUJEMY (stare — zachowane w CSS) ─── */
    .s-process {
      background: var(--white);
      padding: 120px clamp(24px,12.5vw,240px);
    }

    .process-inner {
      max-width: 1246px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 64px;
    }

    .process-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(48px, 3.75vw, 72px);
      line-height: 1.25;
      color: var(--dark-900);
      margin-top: 20px;
    }

    .process-steps {
      position: relative;
      padding-left: 80px;
    }

    .process-line {
      position: absolute;
      left: 32px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--light-200);
      z-index: 0;
    }
    .process-line-active {
      position: absolute;
      left: 32px;
      top: 0;
      width: 2px;
      background: var(--accent);
      z-index: 1;
      transition: height 0.5s var(--ease-out);
      height: 0;
    }
    .process-truck {
      position: absolute;
      left: 32px;
      top: 0;
      transform: translateX(-50%) rotate(180deg);
      width: 19px;
      height: auto;
      pointer-events: none;
      z-index: 3;
      transition: top 0.4s var(--ease-out);
    }

    .process-step {
      display: flex;
      align-items: center;
      gap: 48px;
      padding: 80px 0;
      border-bottom: 1px solid var(--light-200);
      position: relative;
    }
    .process-step:first-child { border-top: 1px solid var(--light-200); }

    .step-dot {
      position: absolute;
      left: -54px;
      top: 50%;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid var(--light-200);
      background: var(--white);
      z-index: 2;
      transition: background 0.3s, border-color 0.3s;
    }
    .process-step.active .step-dot {
      background: var(--accent);
    }

    .step-num {
      font-family: var(--display);
      font-weight: 700;
      font-size: 184px;
      line-height: 128px;
      color: var(--light-200);
      flex-shrink: 0;
      transition: color 0.3s;
      min-width: 180px;
    }
    .process-step.active .step-num { color: var(--accent); }

    .step-body {
      flex: 1;
      max-width: 560px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .step-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: 48px;
      line-height: 1;
      color: var(--light-200);
      transition: color 0.3s;
    }
    .process-step.active .step-title { color: var(--dark-900); }

    .step-desc {
      font-size: 18px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    .step-image {
      flex: 1;
      min-width: 0;
      opacity: 0;
      transition: opacity 0.4s var(--ease-out);
    }
    .process-step.active .step-image { opacity: 1; }
    .step-image img {
      width: 100%;
      object-fit: cover;
      height: 280px;
    }

    /* ─── S5: DLACZEGO MY ─── */
    .s-why {
      background: var(--dark-900);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 48px;
      padding-top: clamp(80px, 10vw, 160px);
    }

    .why-header {
      display: flex;
      flex-direction: column;
      padding-inline: var(--page-gutter);
    }

    .why-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(48px, 3.75vw, 72px);
      line-height: 1.2;
      text-align: center;
      color: var(--white);
      letter-spacing: -1.08px;
      margin-top: 12px;
    }

    .why-cards {
      padding-inline: clamp(24px,12.5vw,240px);
      display: flex;
      gap: 80px;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: clamp(24px,12.5vw,240px);
    }
    .why-cards::-webkit-scrollbar { display: none; }

    .why-card {
      flex-shrink: 0;
      width: min(900px, 85vw);
      height: min(531px, calc(100vh - 340px));
      min-height: 320px;
      overflow: hidden;
      display: flex;
      scroll-snap-align: start;
      background: var(--white);
    }

    .why-card-body {
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: clamp(12px, 2vh, 24px);
      padding: clamp(24px, 3vh, 40px);
    }

    .why-card-num {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(40px, 5vw, 74px);
      line-height: 1;
      color: var(--accent);
    }

    .why-card-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(24px, 2.5vw, 40px);
      line-height: 1.25;
      color: var(--dark-900);
    }

    .why-card-desc {
      font-size: clamp(15px, 1.2vw, 18px);
      line-height: 1.6;
      color: var(--text-muted);
    }

    .why-card-visual {
      width: 50%;
      overflow: hidden;
      position: relative;
    }
    .why-card-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .why-scroll-nav {
      display: flex;
      align-items: center;
      padding-inline: clamp(24px,12.5vw,240px);
    }
    .why-scroll-track {
      width: 100%;
      height: 2px;
      background: var(--border-on-dark);
      position: relative;
    }
    .why-scroll-thumb {
      position: absolute;
      left: 0;
      top: 0;
      height: 2px;
      width: 25%;
      background: var(--accent);
      transition: left 0.2s var(--ease-out);
    }

    /* ─── S6: OPINIE ─── */
    .s-testimonials {
      background: var(--dark-900);
      padding: 120px clamp(24px,12.5vw,240px);
      position: relative;
      overflow: hidden;
    }

    .testimonials-inner {
      max-width: 1246px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 64px;
    }

    .testimonials-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(48px, 3.75vw, 72px);
      line-height: 1;
      text-align: center;
      color: var(--white);
      letter-spacing: -1.08px;
      margin-top: 8px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      width: 100%;
    }

    .testimonial-card {
      background: var(--dark-800);
      border: 1px solid var(--border-on-dark-sm);
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      min-height: 300px;
    }

    .testimonial-quote-mark {
      font-family: Georgia, serif;
      font-size: 64px;
      line-height: 1;
      color: var(--accent);
      margin-bottom: 8px;
      display: block;
      height: 40px;
    }

    .testimonial-quote {
      font-size: 16px;
      line-height: 1.65;
      color: var(--text-w-75);
    }

    .testimonial-footer {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
    }

    .testimonial-author { display: flex; flex-direction: column; gap: 4px; }
    .testimonial-name { font-weight: 600; font-size: 14px; color: var(--white); }
    .testimonial-role { font-size: 13px; color: var(--text-w-40); }

    .testimonial-badge {
      background: var(--border-on-dark);
      border: 1px solid var(--border-on-dark-md);
      border-radius: var(--radius-sm);
      padding: 6px 12px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-w-30);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .testimonials-cta {
      margin-top: 16px;
    }

    /* Blue circle bg element */
    .s-testimonials::before {
      content: '';
      position: absolute;
      left: -200px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ─── S7: CERTYFIKATY ─── */
    /* ── S-QUALITY ── */
    .s-quality {
      background: var(--white);
      padding: 120px clamp(24px,12.5vw,240px);
    }

    .quality-inner {
      max-width: 1246px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 64px;
    }

    .quality-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 700px;
    }

    .quality-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(40px, 3.75vw, 68px);
      line-height: 1.1;
      color: var(--dark-900);
      margin-top: 12px;
    }

    .quality-body-text {
      max-width: 640px;
    }

    .quality-body-text p {
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-d-60);
    }

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

    .quality-card {
      background: var(--dark-900);
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      clip-path: var(--clip-corner);
    }

    .quality-card-badge {
      display: inline-flex;
      align-items: center;
      font-family: var(--display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-bg);
      padding: 6px 14px;
      align-self: flex-start;
      clip-path: var(--clip-corner-sm);
    }

    /* .quality-card-logo styling — single source w style.css → .cert-logo--lg
       Tutaj tylko homepage-specific spacing. */
    .quality-card-logo { margin-bottom: 16px; }

    .quality-card-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(20px, 1.6vw, 26px);
      line-height: 1.25;
      color: var(--white);
    }

    .quality-card-desc {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-w-m);
      flex: 1;
    }

    .quality-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--display);
      font-weight: 600;
      font-size: 14px;
      color: var(--accent);
      text-decoration: none;
      margin-top: auto;
      padding-top: 8px;
      border-top: 1px solid var(--border-on-dark);
      transition: gap 0.2s ease;
    }

    .quality-card-link:hover { gap: 12px; }

    @media (max-width: 900px) {
      .quality-grid { grid-template-columns: 1fr; }
    }

    /* ── S-CERTS ── */
    .s-certs {
      background: var(--dark-900);
      padding: 120px clamp(24px,12.5vw,240px);
    }

    .certs-inner {
      max-width: 1246px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .certs-left {
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding-top: 8px;
    }

    .certs-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(40px, 3.5vw, 64px);
      line-height: 1.1;
      color: var(--white);
      margin-top: 16px;
    }

    .certs-body {
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-w-m);
      max-width: 440px;
    }

    .certs-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cert-card {
      background: var(--dark-800);
      border: 1px solid var(--border-on-dark-sm);
      padding: 28px 32px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
    }

    .cert-card-left { display: flex; flex-direction: column; gap: 8px; }

    .cert-card-name {
      font-family: var(--display);
      font-weight: 700;
      font-size: 28px;
      color: var(--white);
      line-height: 1;
    }

    .cert-card-desc {
      font-size: 15px;
      line-height: 1.5;
      color: var(--text-w-45);
    }

    /* .cert-card-icon styling — single source w style.css → .cert-logo--md */
    .cert-card-icon { margin-top: 4px; }

    /* ─── S8: FLOTA I INFRASTRUKTURA ─── */
    .s-flota {
      background: var(--white);
      padding: 120px clamp(24px,12.5vw,240px);
      position: relative;
      overflow: hidden;
    }

    .flota-inner {
      max-width: 1246px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 500px 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 1;
    }
    .flota-left { grid-column: 2; }

    .flota-image {
      position: absolute;
      left: 0;
      top: 10%;
      height: 80%;
      width: 55%;
      pointer-events: none;
    }
    .flota-image img {
      width: 140%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      position: absolute;
      left: 0;
      top: 0;
    }
    .flota-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to left,   var(--white) 0%, var(--text-w-30) 50%, transparent 100%),
        linear-gradient(to bottom, var(--white) 0%, var(--text-w-30) 10%, transparent 25%),
        linear-gradient(to top,    var(--white) 0%, var(--text-w-30) 10%, transparent 25%);
      z-index: 1;
    }

    .flota-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(48px, 3.75vw, 72px);
      line-height: 1;
      color: var(--dark-900);
      letter-spacing: -1.08px;
      margin-top: 16px;
      margin-bottom: 40px;
    }

    .flota-features { display: flex; flex-direction: column; }

    .flota-feature {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 24px 0;
      border-top: 1px solid var(--light-200);
    }
    .flota-feature:last-child { border-bottom: 1px solid var(--light-200); }

    .flota-feature-icon {
      width: 40px;
      height: 40px;
      background: var(--accent);
      margin-top: 4px;
    }
    .flota-feature-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--white);
    }

    .flota-feature-body { display: flex; flex-direction: column; gap: 6px; }

    .flota-feature-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: 22px;
      line-height: 1.2;
      color: var(--dark-900);
    }

    .flota-feature-desc {
      font-size: 15px;
      line-height: 1.55;
      color: var(--text-muted);
    }

    /* ─── CTA BOTTOM ─── */
    .s-cta {
      background: var(--dark-900);
      padding: 100px clamp(24px,12.5vw,240px);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cta-box {
      max-width: 800px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      text-align: center;
    }

    .cta-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(48px, 3.75vw, 72px);
      line-height: 1.1;
      color: var(--white);
    }
    .cta-heading span { color: var(--accent); }

    .cta-sub {
      font-size: 18px;
      line-height: 1.6;
      color: var(--text-w-60);
    }

    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ─── BLOG ─── */
    .s-blog {
      background: var(--light-100);
      padding-block: clamp(64px, 7.5vw, 100px);
    }
    .blog-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }
    .blog-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(36px, 3vw, 56px);
      line-height: 1.1;
      color: var(--dark-900);
      margin-top: 16px;
    }
    .blog-link {
      font-family: var(--body);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 4px;
      border-bottom: 1px solid var(--accent);
      transition: opacity 0.2s;
    }
    .blog-link:hover { opacity: 0.75; }
    .blog-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .blog-featured { grid-row: 1 / 3; }
    .blog-card {
      border: 1px solid var(--light-200);
      clip-path: var(--clip-corner);
      overflow: hidden;
      background: var(--white);
      transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      box-shadow: 0 12px 40px var(--border-on-light-md);
      transform: translateY(-4px);
    }
    .blog-card-image {
      aspect-ratio: 16/9;
      overflow: hidden;
      flex-shrink: 0;
    }
    .blog-featured .blog-card-image { aspect-ratio: 3/2; }
    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
      display: block;
    }
    .blog-card:hover .blog-card-image img { transform: scale(1.04); }
    .blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
    .blog-card-meta {
      font-family: var(--body);
      font-size: 11px;
      font-weight: 600;
      color: var(--text-d-m);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .blog-card-title {
      font-family: var(--display);
      font-size: 1.375rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--dark-900);
    }
    .blog-featured .blog-card-title { font-size: clamp(1.5rem, 2vw, 2.25rem); }
    .blog-card-excerpt {
      font-size: 0.9375rem;
      color: var(--text-d-m);
      line-height: 1.6;
    }

    /* ─── QUICK CONTACT ─── */
    .s-quick-contact {
      background-color: var(--dark-900);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding-block: clamp(140px, 16vw, 220px);
      position: relative;
      overflow: hidden;
    }
    .s-quick-contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, var(--dark-900) 0%, transparent 18%, transparent 82%, var(--dark-900) 100%),
        rgba(6, 13, 24, 0.55);
      pointer-events: none;
      z-index: 0;
    }
    .s-quick-contact > * { position: relative; z-index: 1; }
    .quick-contact-inner {
      max-width: var(--max-w);
      margin-inline: auto;
      padding-inline: var(--gutter);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    .quick-contact-label {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.25rem, 2vw, 1.75rem);
      color: var(--white);
      text-align: center;
      letter-spacing: -0.01em;
    }
    .quick-contact-cards {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      max-width: 760px;
    }
    .quick-contact-card {
      flex: 1 1 280px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: rgba(6, 13, 24, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 28px 32px;
      clip-path: var(--clip-corner);
      transition: background 0.2s var(--ease-out);
    }
    .quick-contact-card:hover {
      background: rgba(6, 13, 24, 0.75);
    }
    .quick-contact-icon {
      width: 44px;
      height: 44px;
      background: var(--accent-bg);
      color: var(--accent-2);
    }
    .quick-contact-body {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .quick-contact-dept {
      font-family: var(--body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-w-m);
    }
    .quick-contact-email {
      font-family: var(--body);
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s var(--ease-out);
      word-break: break-all;
    }
    .quick-contact-email:hover { color: var(--accent-2); }

    /* ─── CONTACT ─── */
    .s-contact {
      background: var(--dark-900);
      color: var(--white);
      padding-block: clamp(80px, 10vw, 160px);
      position: relative;
      overflow: hidden;
    }
    .s-contact::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 50%; height: 60%;
      background: radial-gradient(ellipse at bottom left, var(--accent-bg-xs) 0%, transparent 70%);
      pointer-events: none;
    }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(48px, 6vw, 96px);
      align-items: start;
      position: relative;
    }
    .contact-heading {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(2.5rem, 3.5vw, 4.5rem);
      line-height: 1.05;
      color: var(--white);
      margin-top: 16px;
      margin-bottom: 20px;
    }
    .contact-sub {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--text-w-m);
      margin-bottom: 48px;
    }
    .contact-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .contact-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid var(--border-on-dark-sm);
    }
    .contact-step:first-child { padding-top: 0; }
    .contact-step-num {
      font-family: var(--display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent);
      min-width: 32px;
      line-height: 1.5;
    }
    .contact-step-text {
      font-size: 0.9375rem;
      color: var(--text-w-m);
      line-height: 1.6;
      padding-top: 2px;
    }
    /* Form styling extracted → assets/css/forms.css (loaded globally) */
    .form-submit-btn {
      width: 100%;
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 18px 32px;
      background: var(--accent);
      color: var(--white);
      font-family: var(--body);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      clip-path: var(--clip-corner-lg);
      transition: opacity 0.2s;
    }
    .form-submit-btn:hover { opacity: 0.85; }
    .form-submit-btn:disabled { opacity: 0.5; cursor: default; }
    .form-trust {
      text-align: center;
      font-size: 0.75rem;
      color: var(--border-on-dark-25);
      margin-top: 16px;
      line-height: 1.5;
    }
    .form-rodo {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 20px;
    }
    .form-rodo input[type="checkbox"] {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      accent-color: var(--accent);
      cursor: pointer;
    }
    .form-rodo-text {
      font-size: 0.8125rem;
      line-height: 1.55;
      color: var(--text-w-45);
    }
    .form-rodo-text a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .form-success {
      display: none;
      padding: 16px 20px;
      background: var(--accent-dim);
      border: 1px solid var(--accent-border);
      color: var(--text-w-85);
      font-size: 0.9375rem;
      line-height: 1.5;
      margin-top: 8px;
    }

    @media (max-width: 900px) {
      .blog-grid { grid-template-columns: 1fr; }
      .blog-featured { grid-row: auto; }
      .contact-layout { grid-template-columns: 1fr; }
    }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--dark-900);
      border-top: 1px solid var(--border-on-dark-sm);
      padding: 64px clamp(24px,12.5vw,240px);
    }

    .footer-inner {
      max-width: 1246px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 48px;
      flex-wrap: wrap;
    }

    .footer-brand { display: flex; flex-direction: column; gap: 16px; }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-tagline { font-size: 14px; color: var(--text-w-40); max-width: 240px; line-height: 1.5; }
    .footer-social { display: flex; gap: 12px; margin-top: 4px; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 34px; height: 34px;
      border: 1px solid var(--border-on-dark-lg);
      border-radius: 4px;
      color: var(--text-w-45);
      transition: color 0.2s, border-color 0.2s;
    }
    .footer-social a:hover { color: var(--white); border-color: var(--text-w-30); }

    .footer-links { display: flex; gap: 64px; }
    .footer-col { display: flex; flex-direction: column; gap: 16px; }
    .footer-col-title { font-weight: 600; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-w-40); }
    .footer-col a { font-size: 14px; color: var(--text-w-60); transition: color 0.2s; }
    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid var(--border-on-dark-sm);
      padding-top: 32px;
      margin-top: 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-w-30);
      max-width: 1246px;
      margin-inline: auto;
    }

    /* ─── FILM GRAIN ─── */
    .noise {
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.03;
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.35; transform: translateY(0); }
      50% { opacity: 1; transform: translateY(4px); }
    }

    /* ─── CLIPPED CORNERS — utility class + per-element overrides ─── */
    /* Use .clipped on any image, card or panel. Never use border-radius on clipped elements. */
    .clipped,
    .step-image,
    .why-card,
    .testimonial-card {
      border-radius: 0;
      clip-path: var(--clip-corner);
    }
    .step-image { overflow: hidden; }
    .step-image img { border-radius: 0; }
    /* Smaller cut for compact cards */
    .clipped-sm,
    .cert-card {
      border-radius: 0;
      clip-path: var(--clip-corner-xl);
    }

    /* ─── WHY — scroll-driven horizontal ─── */
    .why-wrap {
      position: relative;
      height: 625vh;
    }
    .why-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 48px;
    }
    .why-track {
      display: flex;
      gap: 40px;
      padding-inline: var(--page-gutter);
      will-change: transform;
    }
    .why-progress {
      padding-inline: var(--page-gutter);
      padding-block: 16px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .why-progress-bar {
      flex: 1;
      height: 2px;
      background: var(--border-on-dark);
      position: relative;
    }
    .why-progress-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 2px;
      width: 0;
      background: var(--accent);
      transition: width 0.1s linear;
    }
    .why-truck {
      position: absolute;
      right: -9px;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      width: 19px;
      height: auto;
      pointer-events: none;
    }
    .why-counter-label {
      font-size: 13px;
      color: var(--text-w-40);
      letter-spacing: 2px;
    }

    /* ═══════════════════════════════════════
       MOBILE — stack vertically on small screens (≤768px)
       ═══════════════════════════════════════ */
    @media (max-width: 768px) {
      /* Stats — 4-col grid → 1 column */
      .stats-grid { grid-template-columns: 1fr; }
      .stat-card  { padding: 32px 24px; }

      /* Specs — 3-col grid → 1 column */
      .specs-grid { grid-template-columns: 1fr; gap: 20px; }

      /* Why — horizontal scroll → vertical stack (text top, image bottom) */
      .why-wrap   { height: auto; }
      .why-sticky { position: relative; top: auto; height: auto; overflow: visible; }
      .why-track  { flex-direction: column; transform: none !important; gap: 24px; padding-inline: var(--gutter); }
      .why-card   { flex-direction: column; width: 100%; height: auto; min-height: auto; }
      .why-card-body   { width: 100%; padding: 28px 24px; }
      .why-card-visual { width: 100%; aspect-ratio: 16 / 9; height: auto; }
      .why-card-visual img { position: relative; }
      .why-progress, .why-scroll-nav, .why-counter-label { display: none; }

      /* Certs — 2-col grid → 1 column */
      .certs-inner { grid-template-columns: 1fr; gap: 40px; }

      /* Flota — image full-width on top + content below (single column).
         Desktop grid "500px 1fr" with .flota-left in column 2 pushed content
         off-screen on mobile — reset to single column. */
      .s-flota { padding: 0 0 80px 0; overflow: visible; }
      .flota-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 var(--gutter);
      }
      .flota-left { grid-column: auto; }

      .flota-image {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        margin-bottom: 24px;
      }
      .flota-image::before {
        /* delikatne fade tylko dół (smooth transition do białej sekcji pod) */
        background: linear-gradient(to bottom, transparent 0%, transparent 75%, var(--white) 100%);
      }
      .flota-image img {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        height: 100%;
        object-position: center;
      }

      .flota-heading      { font-size: clamp(32px, 8vw, 48px); margin-bottom: 16px; }
      .flota-feature-title { font-size: 20px; }
      .flota-feature      { padding: 20px 0; }
    }

