        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 8px;
            scroll-behavior: smooth;
            overflow-x: clip;
        }

        :root {
            --bg: #05080e;
            /* bg-elevated: gradient + border na dole sekcji */
            --bg-elevated-gradient: linear-gradient(to bottom, var(--bg) 0%, rgba(19, 25, 34, 0.6) 60%, rgba(6 35 73 0.56) 100%);
            --bg-elevated-border: 1px solid rgba(10, 212, 248, 0.139);

            /* Section separator — globalny komponent do rozdzielania sekcji */
            --section-separator-gradient: linear-gradient(to bottom, var(--bg) 0%, rgba(0, 44, 109, 0.1) 100%);
            --section-separator-border: var(--bg-elevated-border);
            --bg-card: rgba(9, 44, 92, 0.85);
            --bg-card-dlaczego: #152632;
            --border-card: #152332;
            --border-vivid: linear-gradient(135deg, rgba(2, 93, 246, 0.4) 0%, rgba(10, 211, 248, 0.4) 100%);
            --text: #fafafa;
            --text-muted: #c0cad9;
            --not-active: #415c7a;
            --accent: #025DF6;
            --accent-hover: #024dd4;
            /* Karty powiązanych wpisów — ramka z akcentu (zmiana --accent = aktualizacja ramki) */
            --border-blog-related: color-mix(in srgb, var(--accent) 48%, transparent);
            --border: rgba(255, 255, 255, 0.08);
            --border-blue: #181279;
            --font: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-heading: 'Zalando Sans Expanded', var(--font);
            --radius: 1rem;
            --radius-small: 0.5rem;
            --section-pad: 20rem 0;
            --section-pad-horizontal: 5%;
            --container: min(1440px, 100%);
            --section-header-mb: 15rem;
            --section-title-gap: 3rem;
            --stat-accent: #0A8EE8;
            /* Filter chips / category buttons (global component tokens) */
            --chip-filter-border: rgba(65, 80, 122, 0.8);
            --chip-filter-bg: rgba(6, 17, 44, 0.35);
            --chip-filter-hover-border: rgba(167, 232, 255, 0.3);
            --chip-filter-hover-bg: rgba(21, 33, 50, 0.6);
            --chip-filter-active-bg: rgba(2, 93, 246, 0.12);
            --chip-filter-active-border: rgba(2, 93, 246, 0.5);
            --chip-filter-active-border-strong: rgba(2, 93, 246, 0.75);
            --chip-filter-active-ring: rgba(2, 93, 246, 0.22);
            --chip-filter-check-border: rgba(65, 88, 122, 0.85);
            --chip-filter-check-bg: rgba(7, 9, 21, 0.7);
            --chip-filter-check-active-border: rgba(250, 250, 250, 0.85);
            --chip-filter-check-active-bg: #fafafa;
            --chip-filter-check-active-fg: #070915;

            /* Box glass (globalny komponent) */
            --box-glass-blur: 4px;
            --box-glass-bg: linear-gradient(135deg, rgba(2, 93, 246) 0%, rgba(10, 211, 248, 0.9) 100%);
            --box-glass-shadow: 0 1rem 2rem -0.5rem rgba(0, 0, 0, 0.25), 0 0.5rem 1rem -0.25rem rgba(0, 0, 0, 0.25), 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 86, 247, 0.24);

            /* Typographic library (golden ratio ≈ 1.618, 1rem = 8px) */
            --typo-h1: 10rem;
            --typo-h2: 6rem;   /* 10/φ ≈ 6.18 */
            --typo-h3: 3rem;   /* 6.18/φ ≈ 3.82 */
            --typo-h4: 2.5rem; /* 3.82/φ ≈ 2.36 → <24px i div/4 → ułamek rem, 20px */
            --typo-h5: 1.5rem; /* 2.36/φ ≈ 1.46 → 12px */
            --typo-h6: 1rem;   /* 0.9 → 8px */
            --typo-body: 2rem;
            --typo-body-big: 2.3rem;
            --typo-btn: 2rem;
            --typo-bento-bottom: 2.5rem; /* 20px przy 1rem = 8px */

            /* Wpis blogowy (jasna karta na ciemnym tle) — kolory z Figmy, reszta z istniejących tokenów */
            --article-surface: #fafafa;
            --article-ink: #070915;
            --article-title: #05080e;
            --article-border-subtle: rgb(0 0 0 / 0.15);
            --radius-article: 2.5rem;
            --radius-article-inner: 1.25rem;
        }

        /* ========== Typographic component library (global use later) ========== */
        .typo-h1, .typo-h2, .typo-h3, .typo-h4, .typo-h5, .typo-h6,
        .section-title, .section-label, .card-title, .step-title, .card-value,
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
        }
        .typo-h1 { font-size: var(--typo-h1); font-weight: 400; }
        .typo-h2 { font-size: var(--typo-h2); font-weight: 400; }
        .typo-h3 { font-size: var(--typo-h3); font-weight: 400; line-height: 1.2; color: var(--text); }
        /* Tylko z .typo-h3 — dolny rząd bento outsourcing (20px / semibold) */
        .typo-h3.typo-bento-bottom {
            font-size: var(--typo-bento-bottom);
            font-weight: 400;
            line-height: 1.25;
        }
        .typo-h4 { font-size: var(--typo-h4); font-weight: 400; }
        .typo-h5 { font-size: var(--typo-h5); font-weight: 400; }
        .typo-h6 { font-size: var(--typo-h6); font-weight: 400; }
        .typo-body { font-size: var(--typo-body); font-weight: 400; }
        .typo-body-big { font-size: var(--typo-body-big); font-weight: 400; }
        .typo-btn  { font-size: var(--typo-btn);  font-weight: 400; }

        body {
            font-family: 'Google Sans Flex', var(--font);
            font-size: 2rem;
            line-height: 1.5;
            color: var(--text);
            background: var(--bg);
            overflow-x: clip;
        }

        p {
            font-weight: 300;
            font-size: 2rem;
            color: var(--text);
            letter-spacing: 0.02em;
            line-height: 1.7;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: var(--container);
            margin: 0 auto;
            padding: 0 var(--section-pad-horizontal);
        }

        .hero-container {
            width: var(--container);
            margin: 0 auto;
            padding: 0;
        }

        /* Section headers (design system: --section-header-mb) */
        .section-header {
            margin-bottom: var(--section-header-mb);
        }

        /* Section title block — globalny komponent (nagłówek + tekst body) */
        .section-title-block .section-title,
        .section-header .section-title {
            font-size: clamp(3rem, 4.5vw, 5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: var(--section-title-gap);
        }

        .section-title-block .section-desc,
        .section-header .section-desc {
            font-size: var(--typo-body);
            font-weight: 400;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 60ch;
        }

        #technologie-section-obsluga .section-title-block {
            max-width: 60ch;
        }

        #technologie-section-obsluga .section-title,
        #technologie-section-obsluga .section-desc {
            display: block;
            width: 100%;
            max-width: none;
        }

        /* Box glass — globalny komponent (design system) */
        .box-glass {
            -webkit-backdrop-filter: blur(var(--box-glass-blur));
            backdrop-filter: blur(var(--box-glass-blur));
            background: var(--box-glass-bg);
            box-shadow: var(--box-glass-shadow);
        }

        /* Scroll reveal — animacja pojawiania się z blur (wzór: xmethod.de) */
        .reveal {
            opacity: 0;
            filter: blur(8px);
            transform: translateY(24px);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal.reveal-visible {
            opacity: 1;
            filter: blur(0);
            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; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* Component: Stagger Blur Reveal */
        .stagger-reveal-item {
            opacity: 0;
            filter: blur(var(--stagger-blur, 10px));
            pointer-events: none;
            transition: opacity var(--stagger-duration, 0.52s) ease,
                        filter var(--stagger-duration, 0.52s) ease;
        }

        .stagger-reveal-item.stagger-reveal-visible {
            opacity: 1;
            filter: blur(0);
            pointer-events: auto;
            transition-delay: var(--stagger-delay, 0ms);
        }

        /* Header — slide in przy scrollu w górę, slide out przy scrollu w dół */
        .header {
            position: fixed;
            top: 3rem;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100%;
            overflow-x: clip;
            z-index: 100;
            padding: 0;
            background: transparent;
            display: flex;
            justify-content: center;
            box-sizing: border-box;
            transition: transform 0.35s ease;
        }

        .header.header-hidden {
            transform: translateY(calc(-100% - 3rem));
        }

        .header-inner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 3rem;
            padding: 1.5rem 1.5rem;
            background-color: var(--bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            min-width: 0;
            max-width: 100%;
            box-sizing: border-box;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            line-height: 0;
        }

        .logo-img {
            height: 4rem;
            width: auto;
            max-width: min(48rem, 55vw);
            display: block;
            object-fit: contain;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .nav a {
            font-size: 2rem;
            transition: color 0.2s;
        }

        .nav a:not(.btn-cta):not(.nav-link-contact) {
            font-weight: 300;
            color: var(--text-muted);
        }

        .nav a:not(.btn-cta):not(.nav-link-contact):hover {
            color: var(--text);
        }

        .nav-services {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .nav-services-trigger {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }

        .nav .nav-services-back {
            display: none;
        }

        .nav-services-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(0.8rem) scale(0.985);
            transform-origin: top center;
            width: min(112rem, calc(100vw - 6rem));
            max-width: 112rem;
            padding-top: 4rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s ease;
            z-index: 120;
        }

        .nav-services:hover .nav-services-dropdown,
        .nav-services:focus-within .nav-services-dropdown {
            opacity: 1;
            transform: translateX(-50%) translateY(0) scale(1);
            visibility: visible;
            pointer-events: auto;
        }

        .services-mega {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 0.8rem;
            padding: 1rem;
            background: rgba(17, 26, 45, 0.6);
            border: 0.5px solid rgba(2, 93, 246, 0.4);
            border-radius: 1.5rem;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(4px);
        }

        .services-mega-col {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            flex: 1 1 0;
            min-width: 0;
        }

        .service-card {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3.2rem;
            width: 100%;
            min-height: 16.2rem;
            padding: 1.6rem 2.4rem 2.4rem 1.6rem;
            background: #05080e;
            border: 0.5px solid rgba(2, 93, 246, 0.4);
            border-radius: 0.8rem;
            opacity: 0;
            transform: translateY(0.8rem);
            transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .nav-services:hover .service-card,
        .nav-services:focus-within .service-card {
            opacity: 1;
            transform: translateY(0);
        }

        .services-mega-col:nth-child(1) .service-card:nth-child(1) {
            transition-delay: 40ms;
        }

        .services-mega-col:nth-child(1) .service-card:nth-child(2) {
            transition-delay: 80ms;
        }

        .services-mega-col:nth-child(2) .service-card:nth-child(1) {
            transition-delay: 90ms;
        }

        .services-mega-col:nth-child(2) .service-card:nth-child(2) {
            transition-delay: 130ms;
        }

        @media (prefers-reduced-motion: reduce) {
            .nav-services-dropdown,
            .service-card {
                transition: none;
                transform: none;
            }
        }

        .nav .services-mega a.service-card-header {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 1.2rem;
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
            border-radius: 0.8rem;
            transition: color 0.2s ease;
            overflow: visible;
        }

        .nav .services-mega a.service-card-header::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: -0.8rem;
            border-radius: 0.8rem;
            background: transparent;
            transition: background-color 0.2s ease;
            pointer-events: none;
            z-index: 0;
        }

        .nav .services-mega a.service-card-header > * {
            position: relative;
            z-index: 1;
        }

        .service-card-header-main {
            display: inline-flex;
            align-items: center;
            gap: 1.2rem;
            min-width: 0;
        }

        .service-card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.8rem;
            border: 0.5px solid rgba(2, 93, 246, 0.9);
            background: radial-gradient(100% 100% at 50% 100%, rgba(2, 93, 246, 0.7) 0%, rgba(1, 54, 144, 0) 100%), rgba(0, 15, 87, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-card-icon svg {
            width: 2rem;
            height: 2rem;
        }

        .service-card-title {
            margin: 0;
            font-family: var(--font);
            font-size: 2.25rem;
            line-height: 1.3;
            font-weight: 500;
            color: #fafafa;
            white-space: nowrap;
        }

        .service-arrow {
            width: 1.6rem;
            height: 1.6rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: rgba(2, 93, 246, 0.8);
        }

        .service-arrow svg {
            width: 0.8rem;
            height: 1.2rem;
            display: block;
        }

        .nav .services-mega a.service-card-header:hover::before,
        .nav .services-mega a.service-card-header:focus-visible::before {
            background: rgba(2, 93, 246, 0.2);
        }

        .service-card-list {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            padding-left: 1.6rem;
        }

        .nav .services-mega a.service-card-link {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.2rem;
            padding: 1.5rem;
            min-height: 3.4rem;
            border-radius: 0.8rem;
            color: #b1bbc9;
            font-family: var(--font);
            font-size: 1.875rem;
            line-height: 1.2;
            font-weight: 400;
            transition: color 0.2s ease, background-color 0.2s ease;
        }

        .nav .services-mega a.service-card-link:hover {
            color: #fafafa;
            background: rgba(2, 93, 246, 0.57);
        }

        .nav .services-mega a.service-card-link:hover .service-arrow {
            color: currentColor;
        }

        .nav .services-mega a.service-card-link .service-arrow {
            color: rgba(2, 93, 246, 0.8);
        }

        .nav a.nav-link-contact {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 0.6rem 1rem 0.6rem 1.5rem;
            border-radius: var(--radius-small);
            background: #fafafa;
            color: #18181b;
            position: relative;
            overflow: hidden;
            transition: color 0.35s ease;
        }

        .nav a.nav-link-contact::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -20%;
            width: 300%;
            height: 140%;
            background: radial-gradient(circle at 100% 50%, #025DF6 0%, rgba(0, 24, 109, 1) 100%);
            opacity: 0;
            transform: translateX(10%);
            transition: opacity 0.35s ease, transform 0.35s ease;
            z-index: 0;
        }

        .nav a.nav-link-contact span {
            position: relative;
            z-index: 1;
        }

        .nav a.nav-link-contact:hover {
            color: #fafafa;
        }

        .nav a.nav-link-contact:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        .nav a.nav-link-contact:hover .nav-link-contact-icon path {
            stroke: #fafafa !important;
        }

        .nav-link-contact-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .nav-link-contact-icon svg {
            width: 1rem;
            height: 1rem;
            display: block;
        }

        .nav .nav-cta {
            display: none;
        }

        .nav-toggle {
            margin-left: auto;
            display: none;
            width: 4rem;
            height: 4rem;
            border-radius: 999px;
            border: none;
            background: transparent;
            color: var(--text);
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }

        .nav-toggle-line {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 3rem;
            height: 0.2rem;
            border-radius: 999px;
            background: currentColor;
            transform-origin: center;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        .nav-toggle-line:nth-child(1) {
            transform: translate(-50%, -0.7rem);
        }

        .nav-toggle-line:nth-child(2) {
            transform: translate(-50%, 0);
        }

        .nav-toggle-line:nth-child(3) {
            transform: translate(-50%, 0.7rem);
        }

        .nav-toggle.is-open .nav-toggle-line:nth-child(1) {
            transform: translate(-50%, 0) rotate(45deg);
        }

        .nav-toggle.is-open .nav-toggle-line:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.is-open .nav-toggle-line:nth-child(3) {
            transform: translate(-50%, 0) rotate(-45deg);
        }

        .nav-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(10, 10, 11, 0.4);
            z-index: 90;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

        .nav-backdrop.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            font-family: var(--font);
            font-size: 2rem;
            font-weight: 600;
            border-radius: var(--radius);
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-cta {
            display: inline-flex;
            flex-direction: row;
            align-items: center;
            padding: 0.5rem 0.5rem 0.5rem 1.5rem;
            gap: 1.5rem;
            position: relative;
            height: 6rem;
            background: #fafafa;
            border-radius: 6px;
            color: #18181b;
            font-weight: 500;
            font-size: 2rem;
            overflow: hidden;
            transition: color 0.35s ease;
        }

        .btn-cta-icon {
            height: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 6px;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fafafa;
            flex-shrink: 0;
            backdrop-filter: blur(0px);
            transition: background 0.35s ease, backdrop-filter 0.35s ease;
        }

        .btn-cta svg {
            width: 1rem;
            height: 1rem;
            display: block;
        }

        .btn-cta::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -20%;
            width: 300%;
            height: 140%;
            background: radial-gradient(circle at 100% 50%, #025DF6 0%, rgba(0, 24, 109, 1) 100%);
            opacity: 0;
            transform: translateX(10%);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .btn-cta span {
            position: relative;
            z-index: 1;
        }

        .btn-cta:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        .btn-cta:hover {
            color: #fafafa;
        }

        .btn-cta:hover .btn-cta-icon {
            background: rgba(24, 24, 27, 0.5);
        }

        /* CTA na niebieskim tle — hover: płaski linear (bez elipsy / efektu „kuli”) */
        .btn-cta--on-blue:hover::after {
            background: linear-gradient(
                118deg,
                #2a62c4 0%,
                #0B1960 52%,
                #01030d 100%

            );
        }

        .btn-cta--on-blue:hover .btn-cta-icon {
            background: var(--accent-hover);
        }

        .btn-read-more {
            background: transparent;
            border: none;
            padding: 0;
            font-weight: 500;
            text-transform: none;
            gap: 1rem;
            color: var(--text);
            /* .btn nadpisuje transition tylko częściowo — bez color tekst i currentColor w SVG skaczą przy hover */
            transition: background 0.2s, transform 0.15s, color 0.2s ease;
        }
        .btn-read-more:hover {
            background: transparent;
        }
        .btn-read-more-icon {
            display: inline-flex;
            align-items: center;
        }
        .btn-read-more-icon .arrow-line {
            stroke-dasharray: 9.25;
            stroke-dashoffset: 9.25;
            transition: stroke-dashoffset 0.2s;
        }
        .btn-read-more:hover .btn-read-more-icon .arrow-line {
            stroke-dashoffset: 0;
        }
        .btn-read-more svg {
            width: 2.2rem;
            height: 2.2rem;
            flex-shrink: 0;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14rem var(--section-pad-horizontal) 8rem;
            margin-top: calc(-1 * (6rem + env(safe-area-inset-top, 0px)));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-video-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            opacity: 0;
            filter: blur(12px);
            mix-blend-mode: luminosity;
        }
        .hero-video-wrap.hero-video-ready {
            animation: heroVideoReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        @keyframes heroVideoReveal {
            0% { opacity: 0; filter: blur(12px); }
            100% { opacity: 1; filter: blur(0); }
        }
        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
            opacity: 0.15;
            pointer-events: none;
            transition: opacity 1s linear;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(2, 93, 246, 0.15), transparent),
                        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(2, 93, 246, 0.08), transparent);
            pointer-events: none;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            line-height: 1;
            margin-bottom: 2rem;
            max-width: 28ch;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-highlight {
            color: var(--accent);
        }

        .hero-heading-line2 {
            white-space: nowrap;
            background: linear-gradient(135deg, #025DF6 0%, #0AD3F8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Hero — animacja wejścia (staggered, nietypowe efekty) */
        .hero-line {
            display: inline-block;
            opacity: 0;
            animation: heroReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        .hero-line-1 {
            animation-name: heroRevealClipLeft;
            clip-path: inset(0 100% 0 0);
            transform: translateX(-24px);
            animation-delay: 0.5s;
        }
        .hero-line-2 {
            animation-name: heroRevealClipUp;
            clip-path: inset(100% 0 0 0);
            transform: translateY(32px);
            animation-delay: 0.85s;
        }
        .hero-line-3 {
            display: block;
            width: 100%;
            animation-name: heroRevealBlur;
            filter: blur(12px);
            transform: translateY(24px);
            animation-delay: 0.85s;
        }
        .hero-line-4 {
            display: inline-flex;
            animation-name: heroRevealBlur;
            filter: blur(8px);
            transform: translateY(20px);
            animation-delay: 1.2s;
        }
        @keyframes heroRevealClipLeft {
            to {
                opacity: 1;
                clip-path: inset(0 0 0 0);
                transform: translateX(0);
            }
        }
        @keyframes heroRevealClipUp {
            to {
                opacity: 1;
                clip-path: inset(0 0 0 0);
                transform: translateY(0);
            }
        }
        @keyframes heroRevealBlur {
            to {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0);
            }
        }
        @keyframes heroRevealPop {
            0% { opacity: 0; transform: scale(0.85) translateY(20px); }
            70% { opacity: 1; transform: scale(1.03) translateY(-4px); }
            100% { opacity: 1; transform: scale(1) translateY(0); }
        }

        .hero h4 {
            font-family: var(--font);
            max-width: 52ch;
            margin: 0 auto 8rem;
        }

        /* Section titles */
        .section-label {
            font-size: 2rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-title.typo-h2 {
            font-weight: 400;
        }

        /* Dlaczego my */
        .dlaczego {
            padding: var(--section-pad);
        }

        .dlaczego-header {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            align-items: start;
        }

        .dlaczego-header .section-desc {
            max-width: none;
        }

        @media (max-width: 768px) {
            .dlaczego-header {
                grid-template-columns: 1fr;
            }
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
        }

        .cards-grid > *:nth-child(-n+3) {
            grid-column: span 2;
        }

        .cards-grid > *:nth-child(n+4) {
            grid-column: span 2;
        }

        .cards-grid .card.card-accent {
            grid-column: span 4;
        }

        .cards-grid .card:not(.card-accent) {
            border: 1px solid transparent;
            background: linear-gradient(var(--bg), var(--bg)) padding-box,
                        var(--border-vivid) border-box;
        }

        .cards-grid .card p {
            font-size: var(--typo-body-big);
            color: var(--text);
        }

        .cards-grid .card-accent {
            border: none;
        }

        .cards-grid .card.box-glass {
            background: var(--box-glass-bg);
        }

        .cards-grid .card-accent:hover {
            transform: none;
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }
            .cards-grid > *:nth-child(-n+3),
            .cards-grid > *:nth-child(n+4) {
                grid-column: span 1;
            }
        }

        .card {
            background: transparent;
            border: 1px solid var(--border-card);
            border-radius: var(--radius);
            padding: 6rem 4rem;
            transition: border-color 0.2s, transform 0.2s;
        }

        .card:hover {
            border-color: rgba(2, 93, 246, 0.3);
        }

        .card-accent {
            border: none;
        }

        .card-accent:hover {
            border-color: transparent;
            transform: translateY(-2px);
        }

        .card-value {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .card-title {
            margin-bottom: 2.5rem;
    
        }

        .cards-grid .card-icon {
            width: 12rem;
            height: 12rem;
            margin-bottom: 2rem;
            display: block;
        }

        .cards-grid .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .card p {
            font-size: 2.3rem;
            color: var(--text);
            line-height: 1.5;
        }

        .card-accent .card-title,
        .card-accent p {
            color: var(--text);
        }

        .card-accent p {
            margin-bottom: 5rem;
        }

        .btn-upper {
            text-transform: uppercase;
        }

        /* CTA Banner — kanoniczny markup i treści: panel projektowy → Komponenty → „Banner CTA (kontakt)” */
        .cta-banner {
            padding: 10rem var(--section-pad-horizontal);
            background: var(--bg) url("../images/bg kopia.webp") center / cover no-repeat;
            text-align: center;
        }

        .cta-banner-icon {
            width: 20rem;
            height: 20rem;
            margin: 0 auto 6rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-banner-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transform: translate3d(0, 0, 0);
            will-change: transform;
            animation: ctaIconFloat 5.8s ease-in-out infinite;
        }

        @keyframes ctaIconFloat {
            0% { transform: translate3d(0, -0.9rem, 0); }
            50% { transform: translate3d(0, 0.9rem, 0); }
            100% { transform: translate3d(0, -0.9rem, 0); }
        }

        @media (prefers-reduced-motion: reduce) {
            .cta-banner-icon img {
                animation: none;
                transform: none;
            }
        }

        .cta-banner .section-title {
            font-size: var(--typo-h1);
            font-weight: 400;
            line-height: 1;
            margin-bottom: 6rem;
            max-width: 28ch;
            margin-left: auto;
            margin-right: auto;
            color: var(--text);
        }

        .cta-banner p {
            font-size: var(--typo-body-big);
            color: var(--text);
            margin-bottom: 6rem;
            max-width: 50ch;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-banner .section-desc {
            color: var(--text);
        }

        /* Usługi */
        .uslugi {
            padding: var(--section-pad);
        }

        .uslugi-header {
            text-align: center;
        }

        .uslugi-header .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .tabs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 6rem;
            min-height: 4.5rem;
        }

        .tab {
            font-size: 2.3rem;
            font-weight: 400;
            font-family: var(--font);
            color: var(--not-active);
            padding: 1.2rem 2.4rem;
            border: 1px solid var(--border-card);
            border-radius: 0.5rem;
            background: rgba(7, 15, 46, 0.4);
            cursor: pointer;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .tab::before {
            content: '[';
            margin-right: 0.5rem;
        }

        .tab::after {
            content: ']';
            margin-left: 0.5rem;
        }

        .tab:hover:not(.active) {
            color: var(--text-muted);
            border-color: rgba(190, 167, 255, 0.3);
            background: rgba(7, 15, 46, 0.6);
        }

        .tab.active {
            color: var(--text);
            background: var(--chip-filter-active-bg);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 0 6px 1px rgb(from var(--accent) r g b / .15), 0 0 4px 1px rgb(from var(--accent) r g b / .18), 0 0 12px 2px rgb(from var(--accent) r g b / .12), 0 0 6px 1px rgb(from var(--accent) r g b / .08), 0 0 18px 4px rgb(from var(--accent) r g b / .04), 0 1px 2px rgba(0, 0, 0, 0.08);
        }

        .tab-panels {
            display: grid;
            min-height: 28rem;
        }

        .tab-panel {
            grid-area: 1 / 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
            opacity: 0;
            pointer-events: none;
            transform: translateY(12px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .tab-panel.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .tab-panel.active {
                grid-template-columns: 1fr;
            }
        }

        .tab-panel-block {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            padding: 3%;
        }

        .tab-panel .card {
            padding: 3rem;
            background: transparent;
            border: none;
        }

        .tab-panel .card p {
            font-family: 'Zalando Sans Expanded', var(--font-heading);
        }

        /* Stat kafelka (bez ramki i tła) */
        .stat-kafelka {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        .stat-kafelka-icon {
            flex-shrink: 0;
            width: 18rem;
            height: 18rem;
        }
        .stat-kafelka-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .stat-kafelka-value {
            font-family: var(--font-heading);
            font-size: 8rem;
            font-weight: 300;
            line-height: 1;
            color: var(--stat-accent);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .stat-kafelka-label {
            font-family: var(--font);
            font-size: 3rem;
            font-weight: 300;
            line-height: 1;
            color: var(--text);
            letter-spacing: 0.02em;
        }

        .tab-panel .card ul {
            list-style: none;
        }

        .tab-panel .card li {
            font-size: 2rem;
            color: var(--text);
            padding: 2rem 0;
            padding-left: 3.5rem;
            position: relative;
            border-top: 1px solid var(--border-card);
            border-bottom: 1px solid var(--border-card);
        }

        .tab-panel .card li + li {
            border-top: none;
        }

        .tab-panel .card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 2rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .tab-panel-actions {
            margin-top: 2rem;
            text-align: center;
            grid-column: 1 / -1;
        }

        /* Proces — header po lewej, po prawej: etykiety | linia | zawartość (Evervault) */
        .proces {
            padding: var(--section-pad);
            background: var(--section-separator-gradient);
            border-bottom: var(--section-separator-border);
        }

        .proces-inner {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 8rem;
            align-items: start;
        }

        .proces-header {
            position: sticky;
            top: 12rem;
            margin-bottom: 0;
        }

        .proces-header .section-title {
            font-size: clamp(3rem, 5vw, 5rem);
        }

        .proces-body {
            display: grid;
            grid-template-columns: auto 2px 1fr;
            gap: 0 3rem;
            align-items: start;
        }

        .proces-sidebar {
            position: sticky;
            top: 12rem;
        }

        .proces-labels {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .proces-label {
            font-size: 1.7rem;
            font-weight: 400;
            font-family: var(--font);
            color: var(--not-active);
            padding: 0.6rem 1.2rem;
            border: 1px solid var(--border-card);
            border-radius: 0.5rem;
            background: rgb(7 15 46 / 30%);
            transition: color 0.2s, border-color 0.2s, background 0.2s;
        }

        .proces-label:hover {
            color: var(--text-muted);
            border-color: var(--chip-filter-hover-border);
            background: var(--chip-filter-hover-bg);
        }

        .proces-label.active {
            color: var(--text);
            border-color: var(--chip-filter-active-border);
            background: var(--chip-filter-active-bg);
        }

        .proces-line-track {
            position: relative;
            width: 2px;
            min-height: 100%;
            background: var(--border-card);
            overflow: hidden;
            align-self: stretch;
            padding-top: 10rem; /* poniżej fixed nav, żeby linia nie była zasłaniana */
        }

        .proces-line-fill {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 0%;
            background: var(--accent);
            transition: height 0.15s ease-out;
        }

        .proces-content {
            display: flex;
            flex-direction: column;
            gap: 6rem;
        }

        .proces-step {
            opacity: 0.4;
            transform: translateY(0);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .proces-step.active {
            opacity: 1;
        }

        .proces-step-title {
            font-size: 2.5rem;
            font-weight: 500;
            font-family: var(--font-heading);
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .proces-step p {
            font-size: var(--typo-body);
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 3rem;
        }

        .proces-step-visual {
            border: none;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 16/8;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgb(7 15 46 / 30%);
            box-shadow: var(--box-glass-shadow);
        }

        .proces-step-visual img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .proces-step-placeholder {
            width: 100%;
            height: 100%;
            border-radius: calc(var(--radius) - 0.4rem);
            border: 1px solid var(--border-card);
            background: linear-gradient(140deg, rgba(120, 136, 156, 0.25) 0%, rgba(15, 20, 39, 0.15) 100%);
        }

        @media (max-width: 992px) {
            .proces-inner {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .proces-header {
                position: static;
            }

            .proces-body {
                grid-template-columns: 1fr;
            }

            .proces-sidebar {
                position: static;
                margin-bottom: 4rem;
                padding-bottom: 3rem;
                border-bottom: 1px solid var(--border-card);
            }

            .proces-labels {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 1rem;
            }

            .proces-line-track {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .proces-labels {
                flex-wrap: wrap;
            }

            .proces-content {
                gap: 4rem;
            }

            .proces-step-title {
                font-size: 2rem;
            }
        }

        /* Realizacje */
        .realizacje {
            padding: var(--section-pad);
            padding-bottom: 0;
        }

        .realizacje-header {
            text-align: center;
        }

        .realizacje-header .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* Section separator — globalny komponent (gradient + border na dole) */
        .section-separator {
            height: 8rem;
            margin-top: 5rem;
            background: var(--section-separator-gradient);
            border-bottom: var(--section-separator-border);
        }

        .realizacje-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 900px) {
            .realizacje-grid {
                grid-template-columns: 1fr;
            }
        }

        .realizacja-card {
            background: var(--box-glass-bg);
            border: 1px solid var(--border-card);
            border-radius: var(--radius);
            padding: 3rem;
            transition: border-color 0.2s;
        }

        .realizacja-card:hover {
            border-color: rgba(2, 93, 246, 0.3);
        }

        .realizacja-icon {
            width: 5rem;
            height: 5rem;
            background: rgba(7, 63, 161, 0.5);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2rem;
        }

        .realizacja-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .realizacja-card p {
            font-size: 2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .realizacje-logos {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        @media (max-width: 600px) {
            .realizacje-logos {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .realizacje-logos .card {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: transparent;
        }

        .realizacje-logos .realizacja-icon {
            margin-bottom: 0;
        }

        /* Zaufali nam — karuzela marquee */
        .zaufali-section {
            margin-top: 15rem;
            text-align: center;
        }

        .zaufali-logos {
            overflow: hidden;
            width: 100%;
            background: white;
            border-radius: var(--radius);
            padding: 2.4rem 0;
            position: relative;
        }

        .zaufali-logos::before,
        .zaufali-logos::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 8rem;
            z-index: 2;
            pointer-events: none;
        }

        .zaufali-logos::before {
            left: 0;
            background: linear-gradient(to right, white 30%, transparent);
        }

        .zaufali-logos::after {
            right: 0;
            background: linear-gradient(to left, white 30%, transparent);
        }

        .zaufali-track {
            display: flex;
            align-items: center;
            width: max-content;
            animation: zaufali-scroll 28s linear infinite;
        }

        .zaufali-logos:hover .zaufali-track {
            animation-play-state: paused;
        }

        @keyframes zaufali-scroll {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        @media (prefers-reduced-motion: reduce) {
            .zaufali-track { animation: none; }
        }

        .zaufali-logos-item {
            flex: 0 0 auto;
            width: 18rem;
            height: 10rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2.4rem;
        }

        .zaufali-logos-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Technologie – siatka kafelków (bez poziomego scrollu) */
        .technologie {
            min-height: auto;
            padding: var(--section-pad);
            padding-top: 0;
        }

        #technologie-section {
            padding-top: var(--section-header-mb);
        }

        .technologie-sticky {
            position: static;
            min-height: auto;
            display: block;
        }

        .technologie-carousel {
            margin-top: 4rem;
            padding-top: 4rem;
            border-top: 1px solid var(--border);
            overflow: visible;
        }

        .technologie-carousel-track {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .technologie-item {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem 2.5rem;
            border: 1px solid var(--border-card);
            border-radius: var(--radius);
            background: rgba(21, 21, 50, 0.3);
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .technologie-item:hover {
            border-color: rgba(2, 93, 246, 0.3);
            background: rgba(2, 93, 246, 0.08);
        }

        .technologie-item-icon {
            flex-shrink: 0;
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .technologie-item-icon svg {
            width: 2.4rem;
            height: 2.4rem;
            stroke: url(#tech-icon-gradient);
        }

        .technologie-item-name {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 400;
            color: var(--text);
            white-space: nowrap;
        }

        /* Zespół / milestones – uproszczone */
        .zespol {
            padding: var(--section-pad);
            background: var(--bg-elevated-gradient);
            border-bottom: var(--bg-elevated-border);
        }

        .zespol-timeline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .zespol-dot {
            width: 1rem;
            height: 1rem;
            background: var(--accent);
            border-radius: 50%;
        }

        .zespol-line {
            width: 4rem;
            height: 2px;
            background: var(--border);
        }

        /* Opinie */
        .opinie {
            padding: var(--section-pad);
            padding-top: 0;
        }

        #zakres-obslugi-informatycznej,
        #faq-obsluga {
            padding-top: var(--section-header-mb);
        }

        #obsluga-pakiety {
            padding-top: var(--section-header-mb);
        }

        #technologie-section-onas {
            padding-top: var(--section-header-mb);
        }

        #zakres-obslugi-informatycznej .zakres-grid {
            margin-top: 6rem;
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        #zakres-obslugi-informatycznej {
            position: relative;
            overflow: hidden;
        }

        #zakres-obslugi-informatycznej::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            transition: opacity 0.25s ease;
            background: radial-gradient(
                46rem 46rem at var(--sx, 50%) var(--sy, 40%),
                rgba(2, 93, 246, 0.14) 0%,
                rgba(2, 93, 246, 0.07) 35%,
                rgba(2, 93, 246, 0) 70%
            );
        }

        #zakres-obslugi-informatycznej.is-spotlight::before {
            opacity: 1;
        }

        #zakres-obslugi-informatycznej > .container {
            position: relative;
            z-index: 1;
        }

        #zakres-obslugi-informatycznej .zakres-grid > :nth-child(-n+2) {
            grid-column: span 6;
        }

        #zakres-obslugi-informatycznej .zakres-grid > :nth-child(n+3):nth-child(-n+5) {
            grid-column: span 4;
        }

        #zakres-obslugi-informatycznej .zakres-grid > :nth-child(n+6):nth-child(-n+7) {
            grid-column: span 6;
        }

        #zakres-obslugi-informatycznej .zakres-card {
            min-height: 35rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            text-align: left;
            border-radius: var(--radius);
            border: 1px solid transparent;
            background: linear-gradient(var(--bg), var(--bg)) padding-box,
                        var(--border-vivid) border-box;
            padding: 5.2rem 4rem;
            overflow: hidden;
            position: relative;
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
        }

        #zakres-obslugi-informatycznej .zakres-card.stagger-reveal-item {
            --stagger-blur: 10px;
            --stagger-duration: 0.52s;
        }

        #zakres-obslugi-informatycznej .zakres-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle 40rem at var(--cx, 50%) var(--cy, 40%),
                rgba(2, 93, 246, 0.38) 0%,
                rgba(2, 93, 246, 0.18) 34%,
                rgba(2, 93, 246, 0) 72%
            );
            opacity: 0;
            transform: scale(1);
            transition: opacity 0.38s ease, transform 0.38s ease;
            pointer-events: none;
        }

        #zakres-obslugi-informatycznej .zakres-card-index {
            position: absolute;
            top: 1.4rem;
            right: 2rem;
            font-family: var(--font-heading);
            font-weight: 300;
            font-size: clamp(4.2rem, 6.5vw, 8.2rem);
            line-height: 1;
            letter-spacing: 0.01em;
            color: rgba(2, 93, 246, 0.22);
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 0.01em var(--accent);
            z-index: 2;
            opacity: 0.9;
            transition: transform 0.28s ease, opacity 0.28s ease, -webkit-text-stroke-color 0.28s ease;
        }

        #zakres-obslugi-informatycznej .zakres-card-title {
            margin: 0;
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: var(--typo-bento-bottom);
            line-height: 1.2;
            color: var(--text);
            transform: translateY(0);
            transition: transform 0.32s ease;
            max-width: 15ch;
            position: relative;
            z-index: 1;
        }

        #zakres-obslugi-informatycznej .zakres-card-desc {
            margin: 0;
            font-size: var(--typo-body);
            line-height: 1.5;
            color: var(--text);
            opacity: 0;
            transform: translateY(1.2rem);
            transition: opacity 0.32s ease, transform 0.32s ease;
            position: absolute;
            left: 4rem;
            right: 4rem;
            bottom: 2.2rem;
            padding: 1rem 0;
            border-radius: 0.8rem;
            background: transparent;
            z-index: 1;
        }

        #zakres-obslugi-informatycznej .zakres-card:hover .zakres-card-title,
        #zakres-obslugi-informatycznej .zakres-card:focus-within .zakres-card-title,
        #zakres-obslugi-informatycznej .zakres-card.is-active .zakres-card-title {
            transform: translateY(-11.2rem);
        }

        #zakres-obslugi-informatycznej .zakres-card:hover .zakres-card-desc,
        #zakres-obslugi-informatycznej .zakres-card:focus-within .zakres-card-desc,
        #zakres-obslugi-informatycznej .zakres-card.is-active .zakres-card-desc {
            opacity: 1;
            transform: translateY(0);
        }

        #zakres-obslugi-informatycznej .zakres-card:hover,
        #zakres-obslugi-informatycznej .zakres-card:focus-within,
        #zakres-obslugi-informatycznej .zakres-card.is-active {
            transform: translateY(-0.4rem);
            box-shadow: 0 1.2rem 3rem rgba(2, 93, 246, 0.2);
        }

        #zakres-obslugi-informatycznej .zakres-card.is-active::before {
            opacity: 0.55;
        }

        #zakres-obslugi-informatycznej .zakres-card:hover::before,
        #zakres-obslugi-informatycznej .zakres-card:focus-within::before {
            opacity: 0.8;
            transform: scale(1.04);
        }

        #zakres-obslugi-informatycznej .zakres-card:hover .zakres-card-index,
        #zakres-obslugi-informatycznej .zakres-card:focus-within .zakres-card-index,
        #zakres-obslugi-informatycznej .zakres-card.is-active .zakres-card-index {
            -webkit-text-stroke-color: rgba(10, 211, 248, 0.98);
            opacity: 1;
            transform: translateY(-0.2rem) scale(1.02);
        }

        #zakres-obslugi-informatycznej .zakres-cta {
            margin-top: 4.5rem;
            text-align: center;
        }

        @media (max-width: 1200px) {
            #zakres-obslugi-informatycznej .zakres-grid {
                grid-template-columns: repeat(6, minmax(0, 1fr));
            }

            #zakres-obslugi-informatycznej .zakres-grid > :nth-child(-n+2) {
                grid-column: span 3;
            }

            #zakres-obslugi-informatycznej .zakres-grid > :nth-child(n+3):nth-child(-n+5) {
                grid-column: span 2;
            }

            #zakres-obslugi-informatycznej .zakres-grid > :nth-child(n+6):nth-child(-n+7) {
                grid-column: span 3;
            }
        }

        @media (max-width: 900px) {
            #zakres-obslugi-informatycznej .zakres-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0;
                row-gap: 1rem;
            }

            #zakres-obslugi-informatycznej .zakres-grid > :nth-child(-n+4),
            #zakres-obslugi-informatycznej .zakres-grid > :nth-child(n+5) {
                grid-column: span 3;
            }

            #zakres-obslugi-informatycznej .zakres-card-title {
                transform: translateY(0);
                font-size: 2.4rem;
            }

            #zakres-obslugi-informatycznej .zakres-card:hover .zakres-card-title,
            #zakres-obslugi-informatycznej .zakres-card:focus-within .zakres-card-title,
            #zakres-obslugi-informatycznej .zakres-card.is-active .zakres-card-title {
                transform: none;
            }

            #zakres-obslugi-informatycznej .zakres-card-desc {
                opacity: 1;
                transform: translateY(0);
                position: static;
                margin-top: 1.8rem;
                padding: 0;
                border-radius: 0;
                background: transparent;
            }

            #zakres-obslugi-informatycznej .zakres-card-index {
                position: static;
                margin-bottom: 1.4rem;
                transform: none;
            }

            #zakres-obslugi-informatycznej::before {
                display: none;
            }
        }

        @media (max-width: 600px) {
            #zakres-obslugi-informatycznej .zakres-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            #zakres-obslugi-informatycznej .zakres-grid > * {
                grid-column: 1 / -1;
            }
        }

        .opinie-header {
            text-align: center;
        }

        .opinie-header .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-box {
            max-width: 75%;
            margin: 3rem auto 4rem;
            padding: 7rem 10rem;
            border-radius: 3rem;
        }

        .testimonial-panels {
            display: grid;
            min-height: 12rem;
        }

        .testimonial-panel {
            grid-area: 1 / 1;
            opacity: 0;
            pointer-events: none;
            text-align: center;
            transform: translateY(10px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .testimonial-panel.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .testimonial-panel h3 {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 6rem;
            font-family: var(--font-heading);
            color: var(--text);
        }

        .testimonial-panel blockquote {
            font-size: 3rem;
            line-height: 1.5;
            color: var(--text);
            margin-bottom: 6rem;
            font-weight: 300;
        }

        .testimonial-buttons {
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            width: 100%;
            display: flex;
            position: relative;
        }

        .testimonial-btn {
            cursor: pointer;
            -webkit-user-select: none;
            user-select: none;
            border: 1px solid var(--text);
            color: var(--text);
            border-radius: 2.5rem;
            align-items: center;
            gap: 1rem;
            height: 5rem;
            padding: 0 1.5rem;
            font-size: 1.8rem;
            font-family: var(--font);
            transition: border-color 0.3s, background 0.3s;
            display: inline-flex;
            background: transparent;
        }

        .testimonial-btn:hover {
            border-color: rgba(24, 65, 137, 0.925);
        }

        .testimonial-btn.active {
            border-color: var(--border);
            background: var(--bg-card);
        }

        .testimonial-btn span {
            color: var(--text);
            font-size: 1.6rem;
        }

        /* FAQ */
        .faq {
            padding: var(--section-pad);
            padding-top: 0;
            background: var(--bg-elevated-gradient);
        }

        .faq-header {
            text-align: center;
        }

        .faq-header .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .faq-list {
            max-width: 72rem;
            margin: 0 auto;
        }

        .faq-item {
            border-top: 1px solid var(--border-card);
            border-bottom: 1px solid var(--border-card);
            overflow: hidden;
        }

        .faq-item + .faq-item {
            border-top: none;
        }

        .faq-question {
            width: 100%;
            padding: 2rem 0;
            font-size: 2.3rem;
            font-weight: 400;
            color: var(--text);
            cursor: pointer;
            border: none;
            background: none;
            text-align: left;
            font-family: inherit;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .faq-question::after {
            content: '';
            display: inline-block;
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, #025DF6 0%, #0AD3F8 100%);
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 12h6m6 0h-6m0 0V6m0 6v6'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 12h6m6 0h-6m0 0V6m0 6v6'/%3E%3C/svg%3E");
            -webkit-mask-size: contain;
            mask-size: contain;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-position: center;
            mask-position: center;
            transition: transform 0.35s ease;
        }

        .faq-item.open .faq-question::after {
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 12h12'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 12h12'/%3E%3C/svg%3E");
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .faq-item.open .faq-answer {
            max-height: 25rem;
        }

        .faq-answer p {
            padding: 4rem 1rem;
            font-size: 2rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .form-wrap {
            max-width: 56rem;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: var(--text-muted);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 2rem 2rem;
            font-family: var(--font);
            font-size: 2rem;
            color: var(--text);
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            min-height: 16rem;
            resize: vertical;
        }

        /* Footer */
        .footer {
            padding: 8rem var(--section-pad-horizontal) 0;
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--section-pad-horizontal);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 4rem;
            align-items: start;
        }

        .footer-brand .logo {
            margin-bottom: 0;
        }

        .footer-brand .logo-img {
            height: 6rem;
            max-width: min(56rem, 100%);
        }

        .footer-col-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--not-active);
            margin-bottom: 2.5rem;
            letter-spacing: 0.05em;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a,
        .footer-col li {
            font-size: 1.7rem;
            color: var(--text-muted);
            line-height: 1.5;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--text);
        }

        .footer-bottom {
            margin-top: 8rem;
            margin-left: calc(-1 * var(--section-pad-horizontal));
            margin-right: calc(-1 * var(--section-pad-horizontal));
            width: calc(100% + 2 * var(--section-pad-horizontal));
            border-top: 1px solid var(--border);
        }

        .footer-bottom-inner {
            max-width: var(--container);
            margin: 0 auto;
            padding: 2rem var(--section-pad-horizontal) 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copy,
        .footer-status {
            font-size: 1.5rem;
            color: var(--text-muted);
            margin: 0;
        }

        .footer-status {
            font-size: 1.5rem;
        }

        @media (max-width: 900px) {
            .footer-inner {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .footer-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem 2rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom-inner {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
        }

        /* ========== Responsive 1536px i mniejsze (small desktop) ========== */
        @media (max-width: 1536px) {
            :root {
                --section-pad: 16rem 0;
                --section-header-mb: 12rem;
            }
        }

        /* ========== Responsive 1024px i mniejsze ========== */
        @media (max-width: 1024px) {
            :root {
                --section-pad: 14rem 0;
                --section-pad-horizontal: 6%;
                --section-header-mb: 10rem;
                --typo-h4: 2.2rem;
            }

            .hero {
                padding: 12rem var(--section-pad-horizontal) 6rem;
            }

            .hero h1 {
                font-size: clamp(3.5rem, 8vw, 8rem);
            }

            .hero h4 {
                margin-bottom: 5rem;
                font-size: 2.2rem;
            }

            .btn-cta {
                height: 5.5rem;
                font-size: 1.8rem;
                padding: 0.5rem 0.5rem 0.5rem 1.2rem;
                gap: 1.2rem;
            }

            .dlaczego-header {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cards-grid > *:nth-child(-n+3),
            .cards-grid > *:nth-child(n+4) {
                grid-column: span 1;
            }

            .cards-grid .card.card-accent {
                grid-column: span 2;
            }

            .cta-banner {
                padding: 8rem var(--section-pad-horizontal);
            }

            .cta-banner-icon {
                width: 16rem;
                height: 16rem;
                margin-bottom: 4rem;
            }

            .cta-banner .section-title {
                font-size: clamp(3rem, 6vw, 6rem);
                margin-bottom: 4rem;
            }

            .cta-banner p {
                margin-bottom: 4rem;
            }

            .tabs {
                gap: 1.5rem;
                margin-bottom: 4rem;
            }

            .tab {
                font-size: 2rem;
                padding: 1rem 2rem;
            }

            .tab-panel {
                grid-template-columns: 1fr;
            }

            .realizacje-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-inner {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonial-box {
                max-width: 90%;
                padding: 5rem 6rem;
            }

            .testimonial-panel h3 {
                font-size: 2.5rem;
            }

            .testimonial-panel blockquote {
                font-size: 2.5rem;
            }

            .technologie-sticky {
                padding: 12rem var(--section-pad-horizontal) 8rem;
            }
        }

        @media (min-width: 901px) and (max-width: 1024px) {
            #o-nas .dlaczego-header {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-areas:
                    "title ."
                    "copy-secondary copy-primary";
                align-items: stretch;
            }

            #o-nas .dlaczego-header .section-title {
                grid-area: title;
            }

            #o-nas .dlaczego-header .section-desc:nth-of-type(1) {
                grid-area: copy-primary;
                align-self: end;
            }

            #o-nas .dlaczego-header .section-desc:nth-of-type(2) {
                grid-area: copy-secondary;
                align-self: end;
            }

            #o-nas-page #onas-wyroznia .dlaczego-header {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-areas:
                    "title ."
                    "copy-secondary copy-primary";
                align-items: stretch;
            }

            #o-nas-page #onas-wyroznia .dlaczego-header .section-title {
                grid-area: title;
            }

            #o-nas-page #onas-wyroznia .dlaczego-header .section-desc:nth-of-type(1) {
                grid-area: copy-primary;
                align-self: end;
            }

            #o-nas-page #onas-wyroznia .dlaczego-header .section-desc:nth-of-type(2) {
                grid-area: copy-secondary;
                align-self: end;
            }

            #o-nas .cards-grid {
                grid-template-columns: repeat(6, minmax(0, 1fr));
                gap: 1.8rem;
            }

            #o-nas .cards-grid > *:nth-child(-n+3),
            #o-nas .cards-grid > *:nth-child(n+4) {
                grid-column: span 2;
            }

            #o-nas .cards-grid .card.card-accent {
                grid-column: span 4;
            }

            #o-nas .cards-grid .card {
                padding: 5.4rem 3.6rem;
            }

            #o-nas .cards-grid .card-icon {
                width: 10.8rem;
                height: 10.8rem;
                margin-bottom: 1.8rem;
            }

            #o-nas .cards-grid .card-title {
                margin-bottom: 2.2rem;
            }

            #o-nas .cards-grid .card p {
                font-size: 2.1rem;
            }

            #o-nas .cards-grid .card-accent p {
                margin-bottom: 4.5rem;
            }

            #o-nas .cards-grid .card-accent .btn-cta {
                height: 5rem;
                font-size: 1.65rem;
                padding: 0.45rem 0.45rem 0.45rem 1.1rem;
                gap: 1.1rem;
            }

            .realizacje-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 1.8rem;
            }

            .realizacja-card {
                padding: 2.7rem;
            }

            .realizacja-icon {
                width: 4.5rem;
                height: 4.5rem;
                margin-bottom: 1.8rem;
                font-size: 1.8rem;
            }

            .realizacja-card h3 {
                font-size: 1.8rem;
            }

            .realizacja-card p {
                font-size: 1.8rem;
                margin-bottom: 1.8rem;
            }
        }

        @media (min-width: 901px) and (max-width: 1024px) {
        }

        /* Nav mobile — 1024 i mniej (hamburger) */
        @media (max-width: 1024px) {
            /* nowrap + duży clamp na drugiej linii h1 rozpychał layout 600–1024px */
            .hero-heading-line2 {
                white-space: normal;
            }

            .nav-services {
                width: 100%;
            }

            .nav-services-dropdown {
                display: none;
            }

            .header {
                padding: 0 1.5rem;
            }

            .header-inner {
                width: 100%;
                max-width: none;
                background:
                    linear-gradient(180deg, rgba(9, 24, 52, 0.9) 0%, rgba(7, 18, 40, 0.84) 100%);
                backdrop-filter: blur(10px);
                transition: border-radius 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
            }

            .header-inner.nav-mobile-open {
                border-bottom: none;
                border-radius: var(--radius) var(--radius) 0 0;
                background-color: var(--bg);
                background-image: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }

            .nav-toggle {
                display: inline-flex;
                z-index: 3;
            }

            .nav {
                display: flex;
                position: absolute;
                top: calc(100% - 1px);
                left: 0;
                right: 0;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                margin-top: 0;
                margin-left: 0;
                margin-right: 0;
                padding: 16rem 4rem 0;
                min-height: 87.4rem;
                background-color: var(--bg);
                border-radius: 0 0 var(--radius) var(--radius);
                border: 1px solid var(--border);
                border-top: none;
                box-shadow: none;
                z-index: 2;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 2rem;
                opacity: 0;
                transform: translateY(-0.8rem) scaleY(0.96);
                transform-origin: top center;
                will-change: transform, opacity;
                pointer-events: none;
                visibility: hidden;
                transition: opacity 0.3s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease;
            }

            .nav > a,
            .nav > .nav-services {
                width: 100%;
                
            }

            .nav a:not(.btn-cta):not(.nav-link-contact):not(.service-card-link):not(.service-card-header) {
                width: 100%;
                min-height: 4.8rem;
                display: inline-flex;
                align-items: center;
                padding: 1.2rem 0;
                border-radius: 1rem;
                font-size: 3rem;
                line-height: 1.2;
                font-weight: 400;
                color: var(--text);
            }

            .nav-services-trigger {
                width: 100%;
                min-height: 4.8rem;
                padding: 1.2rem 1.2rem 1.2rem 0;
                justify-content: flex-start;
                gap: 3rem;
                border-radius: 1rem;
                font-size: 2.5rem;
                line-height: 1.2;
                font-weight: 400;
                color: #fbfdff !important;
            }

            .nav-services-trigger::after {
                content: '';
                width: 1.3rem;
                height: 1.7rem;
                background: url("data:image/svg+xml,%3Csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5L5.5 5.5L0.5 10.5' stroke='%23025DF6' stroke-opacity='0.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
                flex-shrink: 0;
                margin-right: 0.2rem;
            }

            .nav .nav-services-back {
                display: none;
            }

            .nav.is-services-open > a,
            .nav.is-services-open > .nav-link-contact,
            .nav.is-services-open > .nav-cta {
                display: none !important;
            }

            .nav.is-services-open > .nav-services {
                position: static;
                width: 100%;
                max-width: none;
                padding: 0;
                background: transparent;
                z-index: auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 5rem;
                overflow: visible;
                animation: mobileServicesScreenIn 0.26s cubic-bezier(0.22, 1, 0.36, 1);
            }

            .nav.is-services-open.nav-services-closing > .nav-services {
                animation: mobileServicesScreenOut 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            }

            .nav.is-services-open > .nav-services > a.nav-services-trigger {
                display: none !important;
            }

            .nav.is-services-open .nav-services-trigger {
                display: none !important;
            }

            .nav.is-services-open > .nav-services > .nav-services-back {
                display: inline-flex;
                align-items: center;
                gap: 1.2rem;
                width: fit-content;
                min-height: 4.8rem;
                padding: 0;
                border: none;
                background: transparent;
                color: #fbfdff;
                font-family: var(--font);
                font-size: 2.5rem;
                font-weight: 400;
                line-height: 1.2;
                cursor: pointer;
            }

            .nav.is-services-open > .nav-services > .nav-services-back::before {
                content: '';
                width: 1.3rem;
                height: 1.7rem;
                background: url("data:image/svg+xml,%3Csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 0.5L0.5 5.5L5.5 10.5' stroke='%23025DF6' stroke-opacity='0.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
                flex-shrink: 0;
                margin-right: 0.4rem;
            }

            .nav.is-services-open > .nav-services > .nav-services-dropdown {
                display: block;
                position: static;
                width: 100%;
                max-width: none;
                padding-top: 0;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
                transition: none;
                filter: none;
            }

            @keyframes mobileServicesScreenIn {
                from {
                    opacity: 0;
                    transform: translateX(2rem);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            @keyframes mobileServicesScreenOut {
                from {
                    opacity: 1;
                    transform: translateX(0);
                }
                to {
                    opacity: 0;
                    transform: translateX(1.4rem);
                }
            }

            .nav.is-services-open .services-mega {
                display: flex;
                flex-direction: column;
                gap: 1.2rem;
                padding: 0;
                background: transparent;
                border: none;
                border-radius: 0;
                -webkit-backdrop-filter: none;
                backdrop-filter: none;
            }

            .nav.is-services-open .services-mega-col {
                gap: 1.2rem;
                width: 100%;
            }

            .nav.is-services-open .service-card {
                opacity: 1;
                transform: none;
                min-height: 0;
                padding: 2rem;
                border-radius: 1rem;
                overflow: visible;
                gap: 0;
                transition: border-color 0.2s ease;
                
            }

            .nav.is-services-open a.service-card-header {
                padding: 0;
                min-height: 3rem;
                transition: none;
                background: transparent;
            }

            .nav.is-services-open a.service-card-header::before {
                display: none;
            }

            .nav.is-services-open .service-card-title {
                font-size: 2.5rem;
                line-height: 1.3;
            }

            .nav.is-services-open .service-card .service-arrow {
                transform: rotate(90deg);
                transition: transform 0.2s ease;
                margin-left: auto;
            }

            .nav.is-services-open .service-card.is-open .service-arrow {
                transform: rotate(-90deg);
            }

            .nav.is-services-open .service-card-list {
                width: 100%;
                padding: 0 0 0 1.6rem;
                gap: 2.4rem;
                margin-top: 0;
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                transform: translateY(-0.6rem);
                pointer-events: none;
                transition: max-height 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), margin-top 0.28s cubic-bezier(0.22, 1, 0.36, 1);
            }

            .nav.is-services-open .service-card.is-open .service-card-list {
                display: flex;
                max-height: 40rem;
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
                margin-top: 2.4rem;
            }

            .nav.is-services-open a.service-card-link {
                padding: 0;
                min-height: 0;
                background: transparent;
                color: #b1bbc9;
                border-radius: 0;
                font-size: 2rem;
                line-height: 1.2;
                padding: 0.7rem 0;
            }

            .nav.is-services-open a.service-card-link:hover {
                background: transparent;
                color: #fafafa;
            }

            .nav.is-services-open a.service-card-link .service-arrow {
                display: none;
            }

            .nav.is-open {
                opacity: 1;
                transform: translateY(0) scaleY(1);
                pointer-events: auto;
                visibility: visible;
            }

            .nav a.nav-link-contact {
                display: none !important;
            }

            .nav .nav-cta {
                display: inline-flex;
                justify-content: space-between;
                width: 100%;
                max-width: 55rem;
                margin-top: 6.4rem;
                padding: 1.7rem 1.5rem;
                background: #efefef;
                border-radius: 1rem;
                color: var(--bg);
                font-size: 2.5rem;
                font-weight: 500;
                line-height: 1.2;
                height: 100%;
            }

            .nav .nav-cta .btn-cta-icon {
                background: transparent;
                color: #025df6;
                width: 1.626rem;
                height: 1.626rem;
                border-radius: 0;
                aspect-ratio: auto;
            }

            .nav .nav-cta .btn-cta-icon svg {
                width: 100%;
                height: 100%;
                display: block;
            }

            .nav .nav-cta::after {
                display: none;
            }

            .nav .nav-cta .btn-cta-icon path {
                stroke: #025df6 !important;
                stroke-width: 1.5px !important;
            }
        }

        /* 768px — tablet portrait */
        @media (max-width: 768px) {
            .header {
                padding: 0 1.5rem;
            }

            .header-inner {
                border-radius: 1rem;
                border-bottom: var(--bg-elevated-border);
                padding: 1rem;
            }

            .nav {
                left: 0;
                right: 0;
                width: 100%;
                max-width: 100%;
            }

            .hero {
                padding: 10rem var(--section-pad-horizontal) 5rem;
            }

            .hero h1 {
                font-size: clamp(3rem, 10vw, 4.5rem);
            }

            .hero h4 {
                font-size: 2rem;
                margin-bottom: 4rem;
            }

            .dlaczego-header {
                grid-template-columns: 1fr;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .card {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }

            .cards-grid .card-icon {
                margin-bottom: 4rem;
            }

            .cards-grid .card.card-accent {
                grid-column: span 1;
            }

            .realizacje-grid {
                grid-template-columns: 1fr;
            }

            .footer-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-box {
                max-width: 95%;
                padding: 4rem 3rem;
            }

            .testimonial-panel h3 {
                font-size: 2.2rem;
            }

            .testimonial-panel blockquote {
                font-size: 2.2rem;
            }
        }

        /* 600px — małe tablety / duże telefony */
        @media (max-width: 600px) {
            :root {
                --section-pad: 10rem 0;
                --section-pad-horizontal: 5%;
                --section-header-mb: 8rem;
            }

            .hero {
                padding: 8rem var(--section-pad-horizontal) 4rem;
            }

            .hero h1 {
                font-size: clamp(2.8rem, 12vw, 4rem);
            }

            .hero-heading-line2 {
                white-space: normal;
            }

            .btn-cta {
                height: 5rem;
                font-size: 1.6rem;
                padding: 0.5rem 0.5rem 0.5rem 1rem;
                gap: 1rem;
            }

            .cta-banner {
                padding: 6rem var(--section-pad-horizontal);
            }

            .cta-banner-icon {
                width: 12rem;
                height: 12rem;
                margin-bottom: 3rem;
            }

            .cta-banner .section-title {
                font-size: clamp(2.8rem, 8vw, 4rem);
            }

            .tabs {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 3rem;
            }

            .tab {
                width: 100%;
                text-align: center;
                font-size: 1.8rem;
            }

            .card {
                padding: 4rem 3rem;
            }

            .footer-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem 2rem;
            }

            .testimonial-box {
                padding: 3rem 2rem;
            }

            .testimonial-panel blockquote {
                font-size: 2rem;
            }

            .faq-question {
                font-size: 2rem;
            }
        }

        /* 480px — telefony */
        @media (max-width: 480px) {
            html {
                font-size: 7px;
            }

            :root {
                --section-pad: 8rem 0;
                --section-pad-horizontal: 4%;
                --section-header-mb: 6rem;
            }

            .header {
                padding: 0 1rem;
                top: max(2rem, env(safe-area-inset-top));
            }

            .header.header-hidden {
                transform: translateY(calc(-100% - 2rem));
            }

            .header-inner {
                padding: 2rem 2.5rem;
                margin-top: 1rem;
            }

            .nav {
                padding: 10rem 4rem 3rem;
            }

            .logo-img {
                height: 5rem;
                max-width: min(80rem, 84vw);
            }


            .hero {
                padding: 7rem var(--section-pad-horizontal) 3rem;
            }

            .hero h1 {
                font-size: clamp(3.2rem, 14vw, 4.5rem);
            }

            .hero h4 {
                font-size: 2rem;
                margin-bottom: 3rem;
            }

            /* btn-cta globalnie większy na mobile */
            .btn-cta {
                height: 5.5rem;
                font-size: 2rem;
                padding: 0.5rem 0.5rem 0.5rem 1.2rem;
                gap: 1.2rem;
            }

            .section-title-block .section-title,
            .section-header .section-title {
                font-size: 3.8rem;
            }

            .card {
                padding: 3rem 2rem;
            }

            /* Taby usług — obok siebie, zawijanie, szerokość do tekstu */
            .tabs {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .tab {
                width: auto;
                font-size: 2rem;
                padding: 1rem 1.5rem;
            }

            /* Proces — sticky etykiety na górze, aktywacja przy scrollu */
            .proces-sidebar {
                position: sticky;
                top: max(6rem, calc(4rem + env(safe-area-inset-top)));
                z-index: 10;
                background: var(--bg);
                padding: 1rem 0 1.5rem;
                margin-bottom: 2rem;
                border-bottom: 1px solid var(--border-card);
            }

            .proces-labels {
                width: 100%;
                flex-direction: row;
                flex-wrap: nowrap;
                gap: 0.8rem;
                justify-content: stretch;
            }

            .proces-label {
                flex: 1 1 0;
                min-width: 0;
                text-align: center;
            }

            /* CTA „Skontaktuj się” — 2x padding góra/dół */
            .cta-banner {
                padding: 12rem var(--section-pad-horizontal);
            }

            .cta-banner-icon {
                width: 10rem;
                height: 10rem;
            }

            .zaufali-logos-item img {
                opacity: 0.85;
            }

            /* Technologie — na mobile kafelki w kolumnie, pełna szerokość */
            .technologie-carousel-track {
                flex-direction: column;
                align-items: stretch;
            }

            .technologie-item {
                width: 100%;
                box-sizing: border-box;
            }

            .technologie-item-name {
                white-space: normal;
            }

            /* Testimonial */
            .testimonial-box {
                padding: 5rem 1.5rem;
            }

            .testimonial-panel h3 {
                font-size: 2.85rem;
            }

            .testimonial-panel blockquote {
                font-size: 2.4rem;
                line-height: 1.6;
            }

            /* FAQ */
            .faq-list {
                max-width: 72rem;
                margin: 0 auto;
                padding: 0 4rem;
            }
        }

        /* ========== PANEL PROJEKTOWY ========== */
        .design-toolbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            background: #121214;
            border-bottom: 1px solid var(--border);
            padding: 1rem var(--section-pad-horizontal);
            padding-top: max(1rem, env(safe-area-inset-top));
            transition: transform 0.25s ease;
        }

        .design-toolbar.collapsed {
            transform: translateY(-100%);
        }

        .design-toolbar-inner {
            max-width: var(--container);
            margin: 0 auto;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        /* Podstrony w jednym pliku — przełączane klasą .site-page--active */
        .site-page:not(.site-page--active) {
            display: none;
        }

        .site-page.site-page--active {
            display: block;
        }

        /* Podstrony — uproszczony hero (bez wideo, spójny z główną) */
        .subpage-hero {
            min-height: 65vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18rem var(--section-pad-horizontal) 10rem;
            margin-top: calc(-1 * (6rem + env(safe-area-inset-top, 0px)));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .subpage-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(2, 93, 246, 0.18), transparent),
                        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(2, 93, 246, 0.1), transparent);
            pointer-events: none;
            z-index: 1;
        }

        .subpage-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 25%, var(--bg) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .subpage-hero .subpage-hero-bg-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 1;
            filter: blur(12px);
            mix-blend-mode: screen;
        }

        .subpage-hero .subpage-hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
            opacity: 0.9;
            pointer-events: none;
        }

        .subpage-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        #o-nas-page .subpage-hero-copy,
        #pomoc-zdalna .subpage-hero-copy {
            max-width: 72rem;
        }

        @media (max-width: 1024px) {
            .hero-container {
                padding: 0 var(--section-pad-horizontal);
            }

            .subpage-hero {
                min-height: 58vh;
            }
        }

        @media (min-width: 1921px) {
            .subpage-hero {
                min-height: 100vh;
            }
        }

        .subpage-breadcrumbs {
            font-family: var(--font);
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 2.4rem;
        }

        .subpage-breadcrumbs a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .subpage-breadcrumbs a:hover {
            color: var(--accent);
        }

        /* Pomoc zdalna — slider kroków sterowany scrollem */
        #pomoc-zdalna .remote-help-slider {
            position: relative;
            min-height: 285vh;
        }

        #pomoc-zdalna #pomoc-zdalna-kroki {
            margin-bottom: 0;
            padding-bottom: 0;
        }

        #pomoc-zdalna #pomoc-zdalna-kroki > .section-separator:first-child {
            margin-top: 0;
            border-bottom: 0;
            border-top: var(--section-separator-border);
            background: linear-gradient(to bottom, rgb(0 24 109 / 12%) 0%, var(--bg) 100%);
            position: sticky;
            top: 0;
            z-index: 6;
            pointer-events: none;
        }

        #pomoc-zdalna .remote-help-slider::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(50rem 34rem at 82% 18%, rgba(2, 93, 246, 0.16), rgba(2, 93, 246, 0)),
                radial-gradient(40rem 28rem at 18% 84%, rgba(2, 93, 246, 0.12), rgba(2, 93, 246, 0));
            pointer-events: none;
            z-index: 0;
        }

        #pomoc-zdalna .remote-help-slider-sticky {
            position: sticky;
            top: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        #pomoc-zdalna .remote-help-slider-track {
            position: relative;
            width: 100%;
            min-height: 100vh;
            z-index: 1;
        }

        #pomoc-zdalna .remote-help-pagination {
            position: absolute;
            top: clamp(14rem, 20vh, 25rem);
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            width: min(76rem, calc(100% - 2 * var(--section-pad-horizontal)));
        }

        #pomoc-zdalna .remote-help-pagination-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(1rem, 2.2vw, 3.2rem);
        }

        #pomoc-zdalna .remote-help-pagination-item {
            --p: 0;
            --text-fill: 0;
            --ring-size: clamp(5.6rem, 6.5vw, 7rem);
            --ring-width: 2px;
            width: var(--ring-size);
            aspect-ratio: 1 / 1;
            border-radius: 999px;
            position: relative;
            display: grid;
            place-items: center;
            color: var(--accent);
        }

        #pomoc-zdalna .remote-help-pagination-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            box-shadow: inset 0 0 0 1px rgba(2, 93, 246, 0.42);
            pointer-events: none;
        }

        #pomoc-zdalna .remote-help-pagination-item::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: conic-gradient(
                from -90deg,
                rgba(2, 93, 246, 1) calc(var(--p) * 1turn),
                rgba(2, 93, 246, 0) 0turn
            );
            -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--ring-width)), #000 calc(100% - var(--ring-width)));
            mask: radial-gradient(farthest-side, transparent calc(100% - var(--ring-width)), #000 calc(100% - var(--ring-width)));
            pointer-events: none;
            transition: opacity 0.25s ease;
            opacity: 0.98;
        }

        #pomoc-zdalna .remote-help-pagination-item.is-complete {
            --p: 1;
            --ring-width: 2px;
        }

        #pomoc-zdalna .remote-help-pagination-item.is-active {
            --ring-width: 2px;
        }

        #pomoc-zdalna .remote-help-pagination-number {
            position: relative;
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 400;
            line-height: 1;
            letter-spacing: -0.01em;
        }

        #pomoc-zdalna .remote-help-pagination-number::before,
        #pomoc-zdalna .remote-help-pagination-number::after {
            content: attr(data-step);
            grid-area: 1 / 1;
        }

        #pomoc-zdalna .remote-help-pagination-number::before {
            color: transparent;
            -webkit-text-stroke: 1.1px rgba(2, 93, 246, 0.6);
        }

        #pomoc-zdalna .remote-help-pagination-number::after {
            color: var(--accent);
            opacity: var(--text-fill);
            transition: opacity 0.28s ease;
        }

        #pomoc-zdalna .remote-help-step {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateY(8rem);
            pointer-events: none;
            transition:
                opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
        }

        #pomoc-zdalna .remote-help-step.is-enter-from-down:not(.is-active) {
            transform: translateY(9rem);
        }

        #pomoc-zdalna .remote-help-step.is-enter-from-up:not(.is-active) {
            transform: translateY(-9rem);
        }

        #pomoc-zdalna .remote-help-step.is-active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            z-index: 2;
        }

        #pomoc-zdalna .remote-help-step.is-active.is-exit-up {
            opacity: 0;
            transform: translateY(-9rem);
            pointer-events: none;
        }

        #pomoc-zdalna .remote-help-step.is-active.is-exit-down {
            opacity: 0;
            transform: translateY(9rem);
            pointer-events: none;
        }

        #pomoc-zdalna .remote-help-step-layout {
            width: min(140rem, calc(100% - clamp(2rem, 4vw, 6rem)));
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(42rem, 58rem);
            align-items: center;
            gap: clamp(3.2rem, 5vw, 9.6rem);
            padding-top: clamp(12rem, 15vh, 16rem);
        }

        #pomoc-zdalna .remote-help-step-copy {
            max-width: 72rem;
            display: flex;
            flex-direction: column;
            gap: 2.4rem;
        }

        #pomoc-zdalna .remote-help-step-title {
            margin: 0;
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: clamp(3.4rem, 4.6vw, 5.4rem);
            line-height: 1.12;
            color: var(--text);
            max-width: 16ch;
        }

        #pomoc-zdalna .remote-help-step-desc {
            margin: 0 0 5rem;
            font-size: var(--typo-body);
            line-height: 1.55;
            color: var(--text-muted);
            max-width: 52ch;
        }

        #pomoc-zdalna .remote-help-step-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3.5rem;
            width: 100%;
            max-width: 48rem;
        }

        #pomoc-zdalna .remote-help-contact-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }

        #pomoc-zdalna .remote-help-contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            justify-content: flex-start;
        }

        #pomoc-zdalna .remote-help-contact-badge-icon {
            width: 3.875rem;
            height: 3.875rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            flex-shrink: 0;
            border-radius: 0.5rem;
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.48) 0%, rgba(0, 20, 53, 0.6) 100%);
            border: 0.5px solid rgba(255, 255, 255, 0.1);
        }

        #pomoc-zdalna .remote-help-contact-badge-icon svg {
            width: 1.6rem;
            height: 1.6rem;
            display: block;
        }

        #pomoc-zdalna .remote-help-contact-badge-text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.4rem;
            min-height: 3.75rem;
            box-sizing: border-box;
            border-radius: 0.5rem;
            border: 0.5px solid rgba(255, 255, 255, 0.1);
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.16) 0%, rgba(0, 20, 53, 0.2) 100%);
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.6rem;
            line-height: 1.25;
            color: #eff5ff;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        #pomoc-zdalna .remote-help-contact-value {
            font-family: var(--font);
            font-weight: 400;
            font-size: 3rem;
            line-height: 1.1;
            color: var(--text);
            text-decoration: none;
        }

        #pomoc-zdalna .remote-help-contact-value:hover {
            color: var(--accent);
        }

        #pomoc-zdalna .remote-help-step-actions .btn {
            width: fit-content;
            justify-content: space-between;
        }

        #pomoc-zdalna .remote-help-download-btn {
            width: auto;
            min-width: 22rem;
            justify-content: space-between;
        }

        #pomoc-zdalna .remote-help-download-btn .btn-cta-icon svg {
            width: 2.8rem;
            height: 2.8rem;
        }

        #pomoc-zdalna .remote-help-step-alt {
            font-family: var(--font);
            font-size: 2rem;
            line-height: 1;
            color: var(--text-muted);
        }

        #pomoc-zdalna .remote-help-step-visual {
            width: 100%;
            display: flex;
            justify-content: flex-end;
        }

        #pomoc-zdalna .remote-help-illustration-slot {
            width: min(100%, 48rem);
            aspect-ratio: 1 / 1;
            border-radius: 1.8rem;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            color: rgba(250, 250, 250, 0.9);
            font-family: var(--font-heading);
            font-size: 2.2rem;
            line-height: 1.2;
            letter-spacing: 0.04em;
            overflow: hidden;
        }

        #pomoc-zdalna .remote-help-illustration-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }

        #pomoc-zdalna .remote-help-step [data-step-el] {
            opacity: 0;
            filter: blur(10px);
            transform: translateY(3rem);
            transition:
                opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.52s cubic-bezier(0.22, 1, 0.36, 1);
        }

        #pomoc-zdalna .remote-help-step.is-active [data-step-el] {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        #pomoc-zdalna .remote-help-step.is-active.is-exit-up [data-step-el] {
            opacity: 0;
            filter: blur(10px);
            transform: translateY(-2.6rem);
        }

        #pomoc-zdalna .remote-help-step.is-active.is-exit-down [data-step-el] {
            opacity: 0;
            filter: blur(10px);
            transform: translateY(2.6rem);
        }

        #pomoc-zdalna .remote-help-step.is-active [data-step-el="title"] { transition-delay: 0.1s; }
        #pomoc-zdalna .remote-help-step.is-active [data-step-el="desc"] { transition-delay: 0.16s; }
        #pomoc-zdalna .remote-help-step.is-active [data-step-el="actions"] { transition-delay: 0.22s; }
        #pomoc-zdalna .remote-help-step.is-active [data-step-el="visual"] { transition-delay: 0.2s; }

        @media (max-width: 1024px) {
            #pomoc-zdalna #pomoc-zdalna-kroki > .section-separator:first-child {
                display: none;
            }

            #pomoc-zdalna .remote-help-slider {
                min-height: auto;
            }

            #pomoc-zdalna .remote-help-slider-sticky {
                position: relative;
                min-height: auto;
                padding: 3rem 0 0;
                overflow: visible;
            }

            #pomoc-zdalna .remote-help-slider-track {
                min-height: auto;
                display: grid;
                gap: 2rem;
                overflow: visible;
            }

            #pomoc-zdalna .remote-help-pagination {
                display: none;
            }

            #pomoc-zdalna .remote-help-step {
                position: relative;
                inset: auto;
                min-height: 100vh;
                height: 100vh;
                opacity: 1;
                pointer-events: auto;
                transform: none;
                background: rgba(5, 8, 14, 1);
                border: none;
                border-radius: var(--radius);
                padding: 3.2rem 0;
                box-sizing: border-box;
            }

            #pomoc-zdalna .remote-help-step-layout {
                width: min(100% - 2 * var(--section-pad-horizontal), 100%);
                grid-template-columns: 1fr;
                gap: 2.4rem;
                padding-top: 0;
                padding-left: 4rem;
                padding-right: 4rem;
                box-sizing: border-box;
                filter: blur(var(--stack-blur, 0px));
                opacity: calc(1 - var(--stack-dim, 0) * 0.18);
                transition: filter 0.18s linear, opacity 0.18s linear;
            }

            #pomoc-zdalna .remote-help-step-copy,
            #pomoc-zdalna .remote-help-step-desc {
                max-width: 100%;
            }

            #pomoc-zdalna .remote-help-step-visual {
                justify-content: flex-start;
            }

            #pomoc-zdalna .remote-help-illustration-slot {
                width: min(100%, 40.8rem);
            }

            #pomoc-zdalna .remote-help-step [data-step-el] {
                opacity: 1;
                filter: blur(0);
                transform: none;
            }

            #pomoc-zdalna .remote-help-contact-value {
                font-size: clamp(2.2rem, 6vw, 3.2rem);
            }

            #pomoc-zdalna .remote-help-slider-track {
                display: block;
                padding-top: 0;
            }

            #pomoc-zdalna .remote-help-step {
                position: sticky;
                top: calc(10rem + env(safe-area-inset-top));
                margin-top: -2.4rem;
                padding: 2.8rem 0;
                z-index: 1;
            }

            #pomoc-zdalna .remote-help-step:first-of-type {
                margin-top: 0;
            }

            #pomoc-zdalna .remote-help-step:nth-of-type(1) { z-index: 1; }
            #pomoc-zdalna .remote-help-step:nth-of-type(2) { z-index: 2; }
            #pomoc-zdalna .remote-help-step:nth-of-type(3) { z-index: 3; }
        }

        @media (max-width: 900px) {
            #pomoc-zdalna .remote-help-step-layout {
                grid-template-rows: auto 1fr;
                min-height: 100%;
            }

            #pomoc-zdalna .remote-help-step:nth-of-type(2) .remote-help-step-copy,
            #pomoc-zdalna .remote-help-step:nth-of-type(3) .remote-help-step-copy {
                padding-top: clamp(1.2rem, 2.4vh, 2.8rem);
            }

            #pomoc-zdalna .remote-help-step-visual {
                justify-content: flex-end;
                align-items: flex-end;
                margin-top: auto;
                min-height: 0;
            }

            #pomoc-zdalna .remote-help-illustration-slot {
                width: min(145%, 65rem);
                max-width: none;
                margin-right: -20rem;
                margin-bottom: 0;
                overflow: visible;
            }
        }

        /* Nasze realizacje — siatka wpisów */
        #nasze-realizacje-page .realizacje-posts {
            position: relative;
            padding: var(--section-pad);
            overflow: hidden;
        }

        #nasze-realizacje-page .realizacje-posts::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            transition: opacity 0.25s ease;
            background: radial-gradient(
                52rem 52rem at var(--sx, 50%) var(--sy, 40%),
                rgba(2, 93, 246, 0.14) 0%,
                rgba(2, 93, 246, 0.07) 34%,
                rgba(2, 93, 246, 0) 70%
            );
        }

        #nasze-realizacje-page .realizacje-posts.is-spotlight::before {
            opacity: 1;
        }

        #nasze-realizacje-page .realizacje-posts > .container {
            position: relative;
            z-index: 1;
        }

        #nasze-realizacje-page .realizacje-posts-grid {
            margin-top: 0;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2rem;
        }

        #nasze-realizacje-page .realizacja-post-card {
            min-height: 50rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            border-radius: var(--radius);
            border: 1px solid transparent;
            background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--border-vivid) border-box;
            padding: 4.2rem 3.6rem;
            transition: transform 0.28s ease, box-shadow 0.28s ease;
        }

        #nasze-realizacje-page .realizacja-post-card::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0;
            transform: scale(1);
            transition: opacity 0.36s ease, transform 0.36s ease;
            background: radial-gradient(
                circle 36rem at var(--cx, 50%) var(--cy, 40%),
                rgba(2, 93, 246, 0.34) 0%,
                rgba(2, 93, 246, 0.16) 34%,
                rgba(2, 93, 246, 0) 72%
            );
        }

        #nasze-realizacje-page .realizacja-post-card:hover,
        #nasze-realizacje-page .realizacja-post-card:focus-within {
            transform: translateY(-0.4rem);
            box-shadow: 0 1.2rem 3rem rgba(2, 93, 246, 0.2);
        }

        #nasze-realizacje-page .realizacja-post-card:hover::before,
        #nasze-realizacje-page .realizacja-post-card:focus-within::before {
            opacity: 0.85;
            transform: scale(1.03);
        }

        #nasze-realizacje-page .realizacja-post-logo {
            position: absolute;
            top: 2.2rem;
            right: 2.2rem;
            width: 7.6rem;
            height: 7.6rem;
            object-fit: contain;
            object-position: right;
            opacity: 0.4;
            pointer-events: none;
            transition: opacity 0.28s ease;
        }

        #nasze-realizacje-page .realizacja-post-card:hover .realizacja-post-logo,
        #nasze-realizacje-page .realizacja-post-card:focus-within .realizacja-post-logo {
            opacity: 1;
        }

        #nasze-realizacje-page .realizacja-post-title {
            margin: 0 0 1.8rem;
            padding-right: 9rem;
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: var(--typo-bento-bottom);
            line-height: 1.2;
            color: var(--text);
            position: relative;
            z-index: 1;
        }

        #nasze-realizacje-page .realizacja-post-desc {
            margin: 0;
            font-size: var(--typo-body);
            line-height: 1.5;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        #nasze-realizacje-page .realizacja-post-actions {
            margin-top: 3.2rem;
            padding-top: 3.2rem;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1200px) {
            #nasze-realizacje-page .realizacje-posts-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 760px) {
            #nasze-realizacje-page .realizacje-posts-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== Podstrona: pojedynczy wpis blogowy (#blog-wpis) ========== */
        .blog-article-page {
            position: relative;
            isolation: isolate;
            /* design-main-view ~6rem + tu ~5rem, żeby karta wpisu nie wchodziła pod fixed header (~10rem od góry viewport) */
            padding: 15rem var(--section-pad-horizontal) 20rem;
            background: var(--bg);
        }

        /* Gradient jak .subpage-hero::before — strefa pod menu (fixed, nie przeszkadza w klikaniu) */
        .blog-article-page::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: min(55vh, 56rem);
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(2, 93, 246, 0.18), transparent),
                radial-gradient(ellipse 60% 40% at 80% 50%, rgba(2, 93, 246, 0.1), transparent);
        }

        .blog-article-shell,
        .blog-article-related,
        .blog-article-cta-fullbleed {
            position: relative;
            z-index: 1;
        }

        .blog-article-shell {
            width: 100%;
            max-width: min(150rem, 100%);
            margin: 0 auto;
        }

        .blog-article-sheet {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8rem;
            padding: 2rem 2rem 18.75rem;
            background: var(--article-surface);
            border-radius: var(--radius-article);
            color: var(--article-ink);
        }

        .blog-article-hero {
            width: 100%;
            align-self: stretch;
            aspect-ratio: 1401 / 340;
            min-height: 20rem;
            border-radius: var(--radius-article-inner);
            overflow: hidden;
            background-color: var(--accent);
            background-image:
                linear-gradient(0deg, rgba(2, 93, 246, 0.55), rgba(2, 93, 246, 0.55)),
                url("../images/wpis_1.webp");
            background-size: cover, cover;
            background-position: center, center;
            background-repeat: no-repeat, no-repeat;
        }

        .blog-article-main {
            width: 100%;
            max-width: min(110rem, 100%);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }

        .blog-article-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 5rem;
            width: 100%;
        }

        .blog-article-title-block {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            width: 100%;
        }

        .blog-article-date {
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.5rem;
            line-height: 1.3;
            color: var(--article-ink);
            opacity: 0.8;
        }

        .blog-article-title {
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: clamp(3rem, 4vw, 4rem);
            line-height: 1.22;
            color: var(--article-title);
            margin: 0;
        }

        .blog-article-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
            width: 100%;
        }

        .blog-article-meta-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            flex-wrap: wrap;
            gap: 5rem;
        }

        .blog-article-author-inline {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
        }

        .blog-article-author-avatar {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            flex-shrink: 0;
            background: var(--article-ink) url("../images/author_image.webp") center / cover no-repeat;
        }

        .blog-article-author-lines {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .blog-article-author-name-inline {
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.75rem;
            line-height: 1;
            color: var(--article-ink);
        }

        .blog-article-author-role-inline {
            font-family: var(--font);
            font-weight: 400;
            font-size: 1.5rem;
            line-height: 1;
            color: var(--article-ink);
            opacity: 0.8;
        }

        .blog-article-meta-divider {
            width: 0;
            height: 5rem;
            border-left: 0.5px solid var(--article-border-subtle);
            flex-shrink: 0;
        }

        .blog-article-category {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .blog-article-category-label {
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.75rem;
            line-height: 1;
            color: var(--article-ink);
        }

        .blog-article-category-name {
            font-family: var(--font);
            font-weight: 400;
            font-size: 1.5rem;
            line-height: 1;
            color: var(--article-ink);
            opacity: 0.8;
        }

        .blog-article-rule {
            width: 100%;
            border: 0;
            border-top: 0.5px solid var(--article-border-subtle);
            margin: 0;
        }

        .blog-article-body {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8rem;
            padding-top: 3rem;
            padding-bottom: 5rem;
        }

        .blog-article-prose {
            width: 100%;
            max-width: min(87.5rem, 100%);
            font-family: var(--font);
            font-weight: 300;
            font-size: 2.25rem;
            line-height: 1.5;
            color: var(--article-ink);
        }

        .blog-article-prose p {
            color: var(--article-ink);
            font-weight: 300;
            font-size: inherit;
            line-height: inherit;
        }

        .blog-article-prose p + p {
            margin-top: 2rem;
        }

        .blog-article-inline-figure {
            width: 100%;
            max-width: min(87.5rem, 100%);
            border-radius: var(--radius-article);
            overflow: hidden;
            aspect-ratio: 800 / 391;
            min-height: 16rem;
            background: var(--article-ink) url("../images/wpis_2.webp") center / cover no-repeat;
        }

        /* CTA jak .cta-banner, ale w kafelku (szerokość kolumny treści, gradient z design systemu) */
        .blog-post-cta-tile {
            width: 100%;
            margin: 0 auto;
            border-radius: var(--radius-article);
            overflow: hidden;
        }

        .blog-post-cta-tile .cta-banner {
            padding: 5rem 2rem;
            margin: 0;
            background: var(--box-glass-bg);
            text-align: center;
        }

        .blog-post-cta-tile .cta-banner .container {
            width: 100%;
            max-width: 100%;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .blog-post-cta-tile .cta-banner-icon {
            width: 12rem;
            height: 12rem;
            margin-bottom: 4rem;
        }

        .blog-post-cta-tile .cta-banner .section-title {
            font-size: 5rem;
            font-weight: 400;
            margin-bottom: 4rem;
            color: var(--text);
            line-height: 1.1;
        }

        .blog-post-cta-tile .cta-banner p {
            font-size: var(--typo-body);
            margin-bottom: 4rem;
            color: var(--text);
        }

        .blog-post-cta-tile .section-title-block > .section-desc:first-of-type {
            margin-bottom: 4rem;
        }

        .blog-article-subheading {
            width: 100%;
            max-width: min(87.5rem, 100%);
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: var(--typo-h3);
            line-height: 1.2;
            color: var(--article-title);
            margin: 0;
        }

        .blog-article-next {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4rem;
        }

        .blog-article-next-inner {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.75rem;
            max-width: 100%;
            padding: 2rem;
        }

        /* Ten sam wzorzec co .btn-read-more (ikona + animacja linii), rozmiary jak wcześniejszy link „Czytaj kolejny artykuł” */
        .blog-article-next-read.btn-read-more {
            display: inline-flex;
            align-items: center;
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.5rem;
            line-height: 1.3;
            color: var(--article-ink);
        }

        .blog-article-next-read.btn-read-more .btn-read-more-icon svg {
            width: 2rem;
            height: 2rem;
        }

        .blog-article-next-read.btn-read-more:hover {
            color: var(--accent);
        }

        .blog-article-next-title {
            font-family: var(--font);
            font-weight: 500;
            font-size: 2rem;
            line-height: 1.3;
            text-align: right;
            color: var(--accent);
            opacity: 0.5;
            transition: opacity 0.2s ease;
        }

        .blog-article-next-read.btn-read-more:hover ~ .blog-article-next-title,
        .blog-article-next-read.btn-read-more:focus-visible ~ .blog-article-next-title {
            opacity: 1;
        }

        .blog-article-author-box {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 3rem;
            width: 100%;
            max-width: min(83rem, 100%);
            margin: 0 auto;
            padding-top: 6rem;
        }

        .blog-article-author-photo {
            width: 17.5rem;
            height: 26rem;
            flex-shrink: 0;
            border-radius: 0.75rem;
            overflow: hidden;
            background: var(--article-ink) url("../images/author_image.webp") center / cover no-repeat;
        }

        .blog-article-author-details {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3rem;
            min-width: 0;
            flex: 1;
        }

        /* Figma: Author Label Container — gap 16px między etykietą a blokiem imię+rola */
        .blog-article-author-intro {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;

        }

        /* Figma: Author Name Container — gap 6px między imieniem a rolą */
        .blog-article-author-name-block {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
            align-self: stretch;
        }

        .blog-article-author-label {
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.5rem;
            line-height: 1;
            color: var(--accent);
            margin: 0;
        }

        .blog-article-author-name-lg {
            font-family: var(--font);
            font-weight: 500;
            font-size: 2.25rem;
            line-height: 1;
            color: var(--article-ink);
            margin: 0;
        }

        .blog-article-author-role-lg {
            font-family: var(--font);
            font-weight: 400;
            font-size: 2.25rem;
            line-height: 1;
            color: var(--article-ink);
            opacity: 0.8;
            margin: 0;
        }

        .blog-article-author-bio {
            font-family: var(--font);
            font-weight: 300;
            font-size: 1.75rem;
            line-height: 1.5;
            color: var(--article-ink);
            max-width: 62.5rem;
            margin: 0;
        }

        .blog-article-related {
            padding: var(--section-pad) var(--section-pad-horizontal);
            background: var(--bg);
        }

        .blog-article-related .container {
            display: flex;
            flex-direction: column;
            gap: 6rem;
        }

        /* CTA pod powiązanymi — na całą szerokość tła strony wpisu (bez 100vw = brak poziomego scrolla od paska przewijania) */
        .blog-article-cta-fullbleed {
            width: calc(100% + 2 * var(--section-pad-horizontal));
            max-width: none;
            margin-left: calc(-1 * var(--section-pad-horizontal));
            margin-right: calc(-1 * var(--section-pad-horizontal));
            box-sizing: border-box;

        }

        .blog-article-related-title {
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: var(--typo-h2);
            line-height: 1.15;
            color: var(--text);
            margin: 0;
        }

        .blog-article-related-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2rem;
        }

        /* Data, tytuł, lead — karty blogowe (Outsourcing + powiązane na stronie wpisu) */
        .blog-wiedza-card-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            width: 100%;
        }

        .blog-related-card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3rem;
            padding: 2rem 2rem 4rem;
            border-radius: var(--radius);
            background: linear-gradient(
                165deg,
                rgba(8, 12, 22, 0.82) 0%,
                rgba(5, 8, 14, 0.88) 100%
            );
            border: 1px solid var(--border-blog-related);
            transition: border-color 0.2s ease;
        }

        .blog-related-card:hover {
            border-color: var(--accent);
        }

        .blog-article-related .btn-read-more {
            color: var(--text);
        }

        .blog-related-card-thumb {
            width: 100%;
            flex-shrink: 0;
            aspect-ratio: 384 / 222;
            border-radius: var(--radius-article-inner);
            background-color: var(--accent);
            background-image:
                linear-gradient(0deg, rgba(2, 93, 246, 0.55), rgba(2, 93, 246, 0.55)),
                var(--blog-related-img);
            background-size: cover, cover;
            background-position: center, center;
            background-repeat: no-repeat, no-repeat;
        }

        .blog-related-card:nth-child(1) .blog-related-card-thumb {
            --blog-related-img: url("../images/wpis_1.webp");
        }

        .blog-related-card:nth-child(2) .blog-related-card-thumb {
            --blog-related-img: url("../images/wpis_2.webp");
        }

        .blog-related-card:nth-child(3) .blog-related-card-thumb {
            --blog-related-img: url("../images/wpis_1.webp");
        }

        .blog-related-card .blog-wiedza-card-date {
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.5rem;
            line-height: 1.3;
            color: var(--text-muted);
            opacity: 0.85;
        }

        .blog-related-card .blog-wiedza-card-title {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 2.25rem;
            line-height: 1.22;
            color: var(--text);
            margin: 0;
        }

        .blog-related-card .blog-wiedza-card-excerpt {
            font-family: var(--font);
            font-weight: 400;
            font-size: 1.75rem;
            line-height: 1.4;
            color: var(--text-muted);
            margin: 0;
        }

        @media (max-width: 900px) {
            .blog-article-meta-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 2rem;
            }

            .blog-article-meta-divider {
                display: none;
            }

            .blog-article-author-box {
                flex-direction: column;
            }

            .blog-article-related-grid {
                grid-template-columns: 1fr;
            }

            .blog-post-cta-tile .cta-banner {
                padding: 6rem 3rem;
            }
        }

        @media (max-width: 1024px) {
            #blog-wpis.blog-article-page {
                padding-left: calc(var(--section-pad-horizontal) / 2);
                padding-right: calc(var(--section-pad-horizontal) / 2);
            }

            #blog-wpis .blog-article-header {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            #blog-wpis .blog-article-sheet {
                padding-bottom: 9.375rem;
            }
        }

        @media (max-width: 1024px) and (min-width: 901px) {
            #blog-wpis .blog-article-related-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            #blog-wpis .blog-article-related-grid > article:nth-child(n+3) {
                display: none;
            }
        }

        .subpage-breadcrumbs-sep {
            margin: 0 0.8rem;
            opacity: 0.65;
            user-select: none;
        }

        .subpage-breadcrumbs-current {
            color: var(--text);
            font-weight: 500;
        }

        .subpage-hero h1 {
            line-height: 1.1;
            max-width: 24ch;
            margin-left: auto;
            margin-right: auto;
        }

        .subpage-hero .hero-line {
            opacity: 1;
            animation: none;
            clip-path: none;
            filter: none;
            transform: none;
        }

        .subpage-hero h4 {
            font-family: var(--font);
            max-width: 62ch;
            margin: 0 auto 0;
            font-weight: 300;
        }

        /* Outsourcing IT — hero: tekst do lewej, CTA w kafelku po prawej (poziomy padding tylko z .container) */
        .subpage-hero.subpage-hero--split {
            --split-hero-breadcrumb-gap: 10rem;
            text-align: left;
            align-items: center;
            justify-content: center;
            padding-left: 0;
            padding-right: 0;
        }

        /* Tło jak hero strony głównej (wideo): obraz pod gradientami, ta sama wysokość sekcji co .subpage-hero */
        .subpage-hero--split .subpage-hero-bg-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 1;
            filter: blur(12px);
            mix-blend-mode: screen;
        }

        .subpage-hero--split .subpage-hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            opacity: 0.9;
            pointer-events: none;
        }

        .subpage-hero--split .subpage-hero-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: flex-start;
            gap: 4rem 5%;
            width: 100%;
        }

        .subpage-hero--split .subpage-hero-copy {
            flex: 1 1 32rem;
            min-width: 0;
            max-width: 72rem;
            text-align: left;
        }

        .subpage-hero--split .subpage-breadcrumbs {
            text-align: left;
            justify-content: flex-start;
            margin-bottom: var(--split-hero-breadcrumb-gap);
        }

        @media (min-width: 1025px) {
            :is(#obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-copy h1 {
                max-width: 14ch;
            }

            :is(#obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-copy .hero-heading-line2 {
                white-space: normal;
            }
        }

        @media (max-width: 1700px) {
            .subpage-hero--split .subpage-hero-copy h1 {
                font-size: clamp(5rem, 5.8vw, 8.2rem);
            }
        }

        @media (max-width: 1500px) {
            .subpage-hero--split .subpage-hero-copy .hero-heading-line2,
            #o-nas-page .subpage-hero-copy .onas-hero-company {
                white-space: normal;
            }
        }

        .subpage-hero--split .subpage-hero-copy h1 {
            margin-left: 0;
            margin-right: 0;
            max-width: none;
            text-align: left;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #pomoc-zdalna, #o-nas-page, #nasze-realizacje-page, #realizacja-page, #blog-page, #kontakt-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero h1 {
            background: linear-gradient(135deg, #025DF6 0%, #0AD3F8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        :is(#nasze-realizacje-page, #blog-page) .subpage-hero {
            min-height: clamp(26rem, 34vh, 40rem);
            padding-top: 20rem;
            padding-bottom: 6rem;
        }

        @media (max-width: 1024px) {
            :is(#nasze-realizacje-page, #blog-page) .subpage-hero {
                min-height: clamp(15.6rem, 20.4vh, 24rem);
                padding-top: 12rem;
                padding-bottom: 3.6rem;
            }
        }

        :is(#nasze-realizacje-page, #blog-page) .subpage-hero--split .subpage-hero-inner {
            justify-content: center;
        }

        :is(#nasze-realizacje-page, #blog-page) .subpage-hero--split .subpage-hero-copy {
            flex: 0 1 auto;
            max-width: none;
            text-align: center;
        }

        :is(#nasze-realizacje-page, #blog-page) .subpage-hero--split .subpage-hero-copy h1 {
            text-align: center;
            margin: 0 auto;
            background: none;
            -webkit-background-clip: border-box;
            background-clip: border-box;
            color: var(--text);
            font-weight: 300;
        }

        :is(#nasze-realizacje-page .nasze-realizacje-hero-separator, #blog-page .blog-hero-separator, #realizacja-page .realizacja-hero-separator, #kontakt-page .kontakt-hero-separator) {
            height: 10rem;
            margin-top: 0;
            margin-bottom: 0;
            border-top: none;
            border-bottom: var(--section-separator-border);
            background:
                radial-gradient(58% 150% at 50% 100%, rgb(0 24 109 / 30%) 0%, rgb(0 24 109 / 14%) 26%, rgba(0, 24, 109, 0) 62%),
                linear-gradient(to top, rgb(0 24 109 / 4%) 0%, var(--bg) 100%);
        }

        @media (max-width: 900px) {
            :is(#nasze-realizacje-page .nasze-realizacje-hero-separator, #blog-page .blog-hero-separator, #realizacja-page .realizacja-hero-separator, #kontakt-page .kontakt-hero-separator) {
                height: 5rem;
            }
        }

        #blog-page .blog-filters {
            padding: var(--section-pad);
            padding-top: var(--section-header-mb);
        }

        #blog-page .blog-filters-inner {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }

        #blog-page .blog-search-form {
            width: min(clamp(32rem, 72vw, 50rem), 100%);
            margin-inline: auto;
        }

        #blog-page .blog-search-wrap {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 0.8rem;
            border: 1px solid var(--chip-filter-border);
            border-radius: 1.2rem;
            background: rgba(7, 9, 21, 0.9);
            box-shadow: inset 0 0 0 1px rgba(2, 93, 246, 0.2), 0 0 1rem rgba(2, 93, 246, 0.08);
            padding: 0.6rem 0.6rem 0.6rem 1.8rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        #blog-page .blog-search-wrap:focus-within {
            border-color: var(--chip-filter-active-border-strong);
            box-shadow: inset 0 0 0 1px var(--chip-filter-active-ring), 0 0 0 1px var(--chip-filter-active-ring);
        }

        #blog-page .blog-search-input {
            min-width: 0;
            border: 0;
            background: transparent;
            color: var(--text);
            font-family: var(--font);
            font-size: clamp(1.8rem, 2vw, 2.2rem);
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: 0.01em;
            outline: none;
            padding: 0.6rem 0;
        }

        #blog-page .blog-search-input::placeholder {
            color: var(--text-muted);
            opacity: 0.72;
        }

        #blog-page .blog-search-btn {
            width: clamp(4rem, 4.8vw, 5.2rem);
            height: clamp(4rem, 4.8vw, 5.2rem);
            border-radius: 1.1rem;
            border: 1px solid var(--chip-filter-border);
            background:
                linear-gradient(180deg, rgba(2, 93, 246, 0.26) 0%, rgba(2, 93, 246, 0.08) 100%),
                rgba(7, 9, 21, 0.95);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            cursor: pointer;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        #blog-page .blog-search-wrap:focus-within .blog-search-btn {
            border-color: var(--chip-filter-active-border-strong);
        }

        #blog-page .blog-search-btn svg {
            width: clamp(2rem, 2.2vw, 2.8rem);
            height: clamp(2rem, 2.2vw, 2.8rem);
        }

        #blog-page .blog-category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.8rem;
            justify-content: center;
        }

        #blog-page .blog-posts-row {
            margin-top: 8rem;
        }

        #blog-page .blog-popular {
            padding: var(--section-pad);
            padding-top: clamp(7rem, 8vw, 11rem);
        }

        #blog-page .blog-popular-header {
            text-align: center;
            margin-bottom: clamp(3rem, 4vw, 5rem);
        }

        #blog-page .blog-popular-header .section-title {
            margin: 0;
            font-family: var(--font-heading);
            font-weight: 300;
            font-size: clamp(3.2rem, 3.8vw, 5rem);
        }

        #blog-page .blog-popular-card {
            max-width: min(120rem, 100%);
            margin-inline: auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
            border-radius: 2rem;
            overflow: hidden;
        }

        #blog-page .blog-popular-media {
            min-height: clamp(30rem, 35vw, 52rem);
        }

        #blog-page .blog-popular-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        #blog-page .blog-popular-content {
            background: #025DF6;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            gap: 7rem;
            padding: clamp(4rem, 5vw, 10rem) clamp(4rem, 7vw, 12rem) clamp(3.2rem, 4vw, 6.4rem) clamp(3.2rem, 4vw, 6.4rem);
        }

        #blog-page .blog-popular-main {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 5.6rem;
        }

        #blog-page .blog-popular-text {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;

        }

        #blog-page .blog-popular-title {
            margin: 0;
            font-family: var(--font-heading);
            font-style: normal;
            font-weight: 600;
            font-size: 3rem;
            line-height: 1.22;
            color: #FAFAFA;
        }

        #blog-page .blog-popular-excerpt {
            margin: 0;
            font-family: var(--font);
            font-style: normal;
            font-weight: 400;
            font-size: 2rem;
            line-height: 1.4;
            color: #FFFFFF;
        }

        #blog-page .blog-popular-author {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }

        #blog-page .blog-popular-author-rule {
            width: 100%;
            border: 0;
            border-top: 0.5px solid rgba(255, 255, 255, 0.42);
            margin: 0;
        }

        #blog-page .blog-popular-author-row {
            display: flex;
            align-items: center;
            gap: 1.6rem;
        }

        #blog-page .blog-popular-author-avatar {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            object-fit: cover;
            object-position: top center;
            flex-shrink: 0;
        }

        #blog-page .blog-popular-author-meta {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        #blog-page .blog-popular-author-name {
            margin: 0;
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.75rem;
            line-height: 1;
            color: #FFFFFF;
        }

        #blog-page .blog-popular-author-role {
            margin: 0;
            font-family: var(--font);
            font-weight: 400;
            font-size: 1.5rem;
            line-height: 1;
            color: rgba(255, 255, 255, 0.8);
        }

        #blog-page .blog-popular-read-more {
            display: inline-flex;
            align-items: center;
            gap: 1.2rem;
            padding: 0.8rem 1.2rem;
            border-radius: 0.5rem;
            background: #0B3C8D;
            color: #FFFFFF;
            text-decoration: none;
        }

        #blog-page .blog-popular-read-more.btn-read-more {
            font-size: var(--typo-btn);
            line-height: 1.3;
            font-weight: 300;
        }

        #blog-page .blog-popular-read-more.btn-read-more:hover {
            background: #0a347c;
            color: #FFFFFF;
        }

        #blog-page .blog-popular-read-more .btn-read-more-icon {
            color: #FFFFFF;
        }

        #blog-page .blog-archive {
            padding: var(--section-pad);
            padding-top: clamp(6rem, 7vw, 10rem);
        }

        #blog-page .blog-archive-grid .blog-wiedza-frame {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        #blog-page .blog-archive-grid .blog-wiedza-frame > article:nth-of-type(4) .blog-wiedza-card-thumb {
            --blog-wiedza-img: url("../images/wpis_1.webp");
        }

        #blog-page .blog-archive-grid .blog-wiedza-frame > article:nth-of-type(5) .blog-wiedza-card-thumb {
            --blog-wiedza-img: url("../images/wpis_2.webp");
        }

        #blog-page .blog-archive-grid .blog-wiedza-frame > article:nth-of-type(6) .blog-wiedza-card-thumb {
            --blog-wiedza-img: url("../images/wpis_1.webp");
        }

        #blog-page .blog-pagination {
            margin-top: clamp(3.2rem, 4vw, 5rem);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
        }

        #blog-page .blog-pagination-link {
            min-width: 4rem;
            height: 4rem;
            padding: 0 1.4rem;
            border-radius: 999px;
            background: rgba(7, 9, 21, 0.62);
            color: var(--text-muted);
            font-family: var(--font);
            font-size: 1.5rem;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        }

        #blog-page .blog-pagination-link[aria-current="page"] {
            color: var(--text);
            border-color: var(--chip-filter-active-border-strong);
            background: var(--chip-filter-active-bg);
            box-shadow: inset 0 0 0 1px var(--chip-filter-active-ring);
        }

        #blog-page .blog-pagination-link:hover {
            color: var(--text);
            border-color: var(--chip-filter-hover-border);
            background: var(--chip-filter-hover-bg);
        }

        #blog-page .blog-archive-cta {
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            margin-top: clamp(4rem, 5vw, 7rem);
        }

        @media (max-width: 1024px) {
            #blog-page .blog-popular-card {
                grid-template-columns: 1fr;
            }

            #blog-page .blog-popular-media {
                min-height: clamp(24rem, 45vw, 36rem);
            }

            #blog-page .blog-archive-grid .blog-wiedza-frame {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        #blog-page .blog-category-btn {
            display: inline-flex;
            align-items: center;
            gap: 1.2rem;
            min-height: 5.2rem;
            padding: 0.8rem 1.6rem 0.8rem 1.2rem;
            border-radius: 0.9rem;
            border: 1px solid var(--chip-filter-border);
            background: var(--chip-filter-bg);
            color: var(--text);
            font-family: var(--font);
            font-size: clamp(1.6rem, 1.5vw, 2rem);
            font-weight: 400;
            line-height: 1.15;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s, color 0.2s;
        }

        #blog-page .blog-category-btn:hover {
            color: var(--text-muted);
            border-color: var(--chip-filter-hover-border);
            background: var(--chip-filter-hover-bg);
        }

        #blog-page .blog-category-btn.is-active {
            color: var(--text);
            border-color: var(--chip-filter-active-border-strong);
            background: var(--chip-filter-active-bg);
            box-shadow: inset 0 0 0 1px var(--chip-filter-active-ring);
        }

        #blog-page .blog-category-check {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.7rem;
            border: 1px solid var(--chip-filter-check-border);
            background: var(--chip-filter-check-bg);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: transparent;
            flex-shrink: 0;
        }

        #blog-page .blog-category-btn.is-active .blog-category-check {
            border-color: var(--chip-filter-check-active-border);
            background: var(--chip-filter-check-active-bg);
            color: var(--chip-filter-check-active-fg);
        }

        #blog-page .blog-category-check svg {
            width: 1.6rem;
            height: 1.6rem;
        }

        #blog-page .blog-category-check svg path {
            stroke-width: 2.6;
        }

        @media (max-width: 768px) {
            #blog-page .blog-search-wrap {
                padding-left: 2rem;
            }

            #blog-page .blog-category-btn {
                width: 100%;
            }

            #blog-page .blog-archive-grid .blog-wiedza-frame {
                grid-template-columns: 1fr;
            }
        }

        /* Kontakt page — dwukolumnowy intro + formularz */
        #kontakt-page .kontakt-page-intro {
            padding: clamp(12rem, 12vw, 18rem) 0 clamp(8rem, 9vw, 12rem);
        }

        #kontakt-page .kontakt-page-intro > .container {
            padding-left: 0;
            padding-right: 0;
        }

        #kontakt-page .kontakt-page-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
            gap: clamp(3.2rem, 5vw, 8rem);
            align-items: center;
        }

        #kontakt-page .kontakt-page-copy {
            display: flex;
            flex-direction: column;
            gap: 2.8rem;
            max-width: 78rem;
        }

        #kontakt-page .kontakt-page-copy-title {
            
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: clamp(3.8rem, 4.8vw, 6rem);
            line-height: 1.05;
            color: var(--text);
            margin-bottom: 5rem;
        }

        #kontakt-page .kontakt-page-copy-desc {
            margin: 0;
            font-family: var(--font);
            font-size: var(--typo-body);
            line-height: 1.45;
            color: var(--text-muted);
            max-width: 64ch;
        }

        #kontakt-page .kontakt-page-points {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        #kontakt-page .kontakt-page-points li {
            position: relative;
            padding-left: 3.1rem;
            font-family: var(--font);
            font-weight: 400;
            font-size: var(--typo-body);
            line-height: 1.45;
            color: var(--text-muted);
        }

        #kontakt-page .kontakt-page-points li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.25rem;
            width: 2rem;
            height: 2rem;
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23025DF6'/%3E%3Cg clip-path='url(%23clip0_77_293)'%3E%3Cpath d='M4.75 11.2031L7.75 14.0156L15.25 6.98438' stroke='%2305080E' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_77_293'%3E%3Crect width='14' height='9' fill='white' transform='translate(3 6)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: contain;
        }

        #kontakt-page .kontakt-form-card {
            width: min(70rem, 100%);
            margin-left: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4rem;
            padding: 0 0 2.8rem;
            background: rgba(2, 93, 246, 0.24);
            border: 0.5px solid #025DF6;
            border-radius: 1.5rem;
            overflow: hidden;
        }

        #kontakt-page .kontakt-form-header {
            width: 100%;
            padding: 2.4rem 2rem 3.2rem;
            border-bottom: 0.5px solid #025DF6;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        #kontakt-page .kontakt-form-icon {
            width: 4rem;
            height: 4rem;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        #kontakt-page .kontakt-form-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        #kontakt-page .kontakt-form-title {
            margin: 0;
            font-family: var(--font-heading);
            font-style: normal;
            font-weight: 400;
            font-size: 2.8rem;
            line-height: 1;
            color: #FAFAFA;
        }

        #kontakt-page .kontakt-form-body {
            width: min(55rem, calc(100% - 4rem));
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        #kontakt-page .kontakt-form-fields {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }

        #kontakt-page .kontakt-form-field {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        #kontakt-page .kontakt-form-field label {
            margin: 0;
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.7rem;
            line-height: 1;
            color: #FFFFFF;
            opacity: 0.8;
        }

        #kontakt-page .kontakt-form-field input,
        #kontakt-page .kontakt-form-field textarea {
            width: 100%;
            background: rgba(4, 14, 42, 0.18);
            border: 0.5px solid #FFFFFF;
            border-radius: 0.4rem;
            color: #FAFAFA;
            font-family: var(--font);
            font-size: 1.8rem;
            font-weight: 300;
            line-height: 1.3;
            padding: 1.2rem 1.3rem;
        }

        #kontakt-page .kontakt-form-field input {
            min-height: 4rem;
        }

        #kontakt-page .kontakt-form-field textarea {
            min-height: 20rem;
            resize: vertical;
        }

        #kontakt-page .kontakt-form-field textarea::placeholder {
            color: #C0C3D9;
            font-size: 1.8rem;
            font-weight: 300;
            line-height: 1.2;
        }

        #kontakt-page .kontakt-form-field input:focus,
        #kontakt-page .kontakt-form-field textarea:focus {
            outline: none;
            border-color: #FAFAFA;
            box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.24);
        }

        #kontakt-page .kontakt-form-consent {
            width: 100%;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
        }

        #kontakt-page .kontakt-form-consent input[type="checkbox"] {
            width: 1.2rem;
            height: 1.2rem;
            margin: 0.1rem 0 0;
            border: 0.5px solid rgba(255, 255, 255, 0.47);
            border-radius: 0.2rem;
            appearance: none;
            background: transparent;
            cursor: pointer;
            flex-shrink: 0;
        }

        #kontakt-page .kontakt-form-consent input[type="checkbox"]:checked {
            background: #025DF6;
            border-color: #025DF6;
            box-shadow: inset 0 0 0 2px rgba(4, 14, 42, 0.9);
        }

        #kontakt-page .kontakt-form-consent-label {
            font-family: var(--font);
            font-weight: 300;
            font-size: 1.25rem;
            line-height: 1.25;
            color: #FAFAFA;
        }

        #kontakt-page .kontakt-form-submit.btn-read-more {
            align-self: center;
            padding: 1rem 1.4rem;
            gap: 1.2rem;
            border-radius: 0.5rem;
            background: #0B3C8D;
            color: #FFFFFF;
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 1.3;
            margin: 2rem 0;
        }

        #kontakt-page .kontakt-form-submit.btn-read-more:hover {
            background: #0a347c;
            color: #FFFFFF;
        }

        #kontakt-page .kontakt-form-submit .btn-read-more-icon {
            color: #FFFFFF;
        }

        @media (max-width: 1024px) {
            #kontakt-page .kontakt-page-grid {
                grid-template-columns: 1fr;
                gap: 10rem;
            }

            #kontakt-page .kontakt-page-intro > .container {
                padding-left: var(--section-pad-horizontal);
                padding-right: var(--section-pad-horizontal);
            }

            #kontakt-page .kontakt-form-card {
                width: 100%;
                max-width: none;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 600px) {
            #kontakt-page .kontakt-form-body {
                width: calc(100% - 3rem);
            }
        }

        @media (max-width: 900px) {
            #kontakt-page .kontakt-page-intro {
                padding-top: 18rem;
            }

            #kontakt-page .kontakt-page-intro > .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            #kontakt-page .kontakt-form-card {
                width: 100%;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
        }

        #kontakt-page #kontakt-alt-contact {
            padding: 0;
        }

        #kontakt-page #kontakt-alt-contact > .container {
            padding-top: clamp(10rem, 10vw, 14rem);
            padding-bottom: clamp(10rem, 10vw, 14rem);
        }

        #kontakt-page .kontakt-alt-contact-layout {
            width: min(120rem, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: clamp(3.2rem, 5vw, 8rem);
            align-items: start;
        }

        #kontakt-page .kontakt-alt-contact-copy {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            max-width: 52ch;
            margin: 0 auto;
        }

        #kontakt-page .kontakt-alt-contact-title {
            margin: 0;
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: 3.2rem;
            line-height: 1.06;
            color: var(--text);
            max-width: 18ch;
            margin-bottom: 8rem;
        }

        #kontakt-page .kontakt-alt-contact-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3.5rem;
            width: 100%;
            max-width: 48rem;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            justify-content: flex-start;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-badge-icon {
            width: 3.875rem;
            height: 3.875rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            flex-shrink: 0;
            border-radius: 0.5rem;
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.48) 0%, rgba(0, 20, 53, 0.6) 100%);
            border: 0.5px solid rgba(255, 255, 255, 0.1);
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-badge-icon svg {
            width: 2rem;
            height: 2rem;
            display: block;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-badge-text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.4rem;
            min-height: 3.75rem;
            box-sizing: border-box;
            border-radius: 0.5rem;
            border: 0.5px solid rgba(255, 255, 255, 0.1);
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.16) 0%, rgba(0, 20, 53, 0.2) 100%);
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.6rem;
            line-height: 1.25;
            color: #eff5ff;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-value {
            margin: 0;
            font-family: var(--font);
            font-weight: 400;
            font-size: 2.4rem;
            line-height: 1.1;
            color: var(--text);
            text-decoration: none;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-value:hover {
            color: var(--accent);
        }

        #kontakt-page .kontakt-alt-contact .remote-help-contact-value--static {
            color: var(--text);
        }

        #kontakt-page .kontakt-alt-contact-visual {
            width: 100%;
            display: flex;
            justify-content: flex-end;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-illustration-slot {
            width: min(100%, 48rem);
            aspect-ratio: 1 / 1;
            border-radius: 1.8rem;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        #kontakt-page .kontakt-alt-contact .remote-help-illustration-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            will-change: transform;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        #kontakt-page #kontakt-alt-contact > .kontakt-alt-contact-separator-top {
            margin-top: 0;
            border-bottom: none;
            border-top: var(--section-separator-border);
            background: linear-gradient(to bottom, rgb(0 24 109 / 10%) 0%, var(--bg) 100%);
        }

        #kontakt-page #kontakt-alt-contact > .kontakt-alt-contact-separator-bottom {
            margin-top: 0;
            border-top: none;
            border-bottom: var(--section-separator-border);
            background: linear-gradient(to top, rgb(0 24 109 / 10%) 0%, var(--bg) 100%);
        }

        @media (max-width: 1024px) {
            #kontakt-page .kontakt-alt-contact-layout {
                grid-template-columns: 1fr;
                gap: 2.8rem;
            }

            #kontakt-page .kontakt-alt-contact-visual {
                justify-content: flex-start;
            }

            #kontakt-page .kontakt-alt-contact .remote-help-illustration-slot {
                width: min(100%, 40.8rem);
            }

            #kontakt-page .kontakt-alt-contact .remote-help-contact-value {
                font-size: clamp(2.2rem, 6vw, 3.2rem);
            }
        }

        @media (max-width: 900px) {
            #kontakt-page .kontakt-alt-contact-visual {
                justify-content: flex-end;
            }

            #kontakt-page .kontakt-alt-contact .remote-help-illustration-slot {
                width: min(138%, 56rem);
                max-width: none;
                margin-right: -10rem;
                margin-bottom: -2rem;
                overflow: visible;
            }
        }

        #kontakt-page .kontakt-double-section {
            padding: var(--section-pad);
        }

        #kontakt-page .kontakt-double-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
            gap: clamp(3.2rem, 5vw, 8rem);
            align-items: start;
        }

        #kontakt-page .kontakt-double-section .kontakt-form-card {
            margin-left: 0;
        }

        #kontakt-page .kontakt-double-section .kontakt-alt-contact {
            padding: 0;
        }

        #kontakt-page .kontakt-double-section .kontakt-alt-contact-copy {
            max-width: none;
            margin: 0 auto;
            justify-content: flex-start;
            align-self: center;
        }

        #kontakt-page .kontakt-double-section .kontakt-alt-contact-title {
            max-width: 20ch;
        }

        #kontakt-page #opinie-kontakt .opinie-header {
            margin-bottom: clamp(2.4rem, 3vw, 4rem);
        }

        #kontakt-page #opinie-kontakt {
            padding-top: clamp(8rem, 9vw, 12rem);
        }

        #kontakt-page #zaufali-kontakt {
            padding-top: clamp(8rem, 9vw, 12rem);
            padding-bottom: clamp(8rem, 9vw, 12rem);
        }

        #kontakt-page #zaufali-kontakt .zaufali-section {
            margin-top: 0;
        }

        #zaufali-obsluga .zaufali-section {
            margin-top: 0;
        }

        #zaufali-onas .zaufali-section {
            margin-top: 0;
        }

        @media (max-width: 1024px) {
            #kontakt-page .kontakt-double-section {
                padding-bottom: 28rem;
            }

            #kontakt-page .kontakt-double-grid {
                grid-template-columns: 1fr;
                gap: 10rem;
            }
        }

        /* Realizacja — hero i układ case study */
        #realizacja-page .subpage-hero {
            min-height: 60vh;
            padding-top: 14rem;
            padding-bottom: 7rem;
        }

        #realizacja-page .subpage-hero .subpage-hero-bg-wrap {
            display: none;
        }

        #realizacja-page .subpage-hero--split .subpage-hero-inner {
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem 6rem;
        }

        #realizacja-page .subpage-hero--split .subpage-hero-copy {
            flex: 1 1 68rem;
            max-width: 86rem;
        }

        #realizacja-page .subpage-hero--split .subpage-hero-copy h1 {
            font-size: clamp(3.4rem, 5vw, 5rem);
            line-height: 1.12;
            max-width: 22ch;
        }

        #realizacja-page .realizacja-hero-brand {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 1.2rem;
            margin-top: 0.6rem;
        }

        #realizacja-page .realizacja-hero-brand img {
            width: 20rem;
            height: 20rem;
            object-fit: contain;
        }

        #realizacja-page .realizacja-hero-brand-name {
            font-family: var(--font);
            font-size: 1.6rem;
            line-height: 1.3;
            color: var(--text);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        #realizacja-page .realizacja-module {
            position: relative;
            padding: var(--section-pad);
            overflow: hidden;
        }

        #realizacja-page .realizacja-module::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(32rem 24rem at 12% 72%, rgba(2, 93, 246, 0.16), rgba(2, 93, 246, 0)),
                radial-gradient(36rem 28rem at 84% 24%, rgba(2, 93, 246, 0.1), rgba(2, 93, 246, 0));
        }

        #realizacja-page #realizacja-wyzwanie::before {
            background: radial-gradient(36rem 28rem at 84% 24%, rgba(2, 93, 246, 0.1), rgba(2, 93, 246, 0));
        }

        #realizacja-page #realizacja-rozwiazanie {
            --blog-wiedza-grid-line: rgba(2, 93, 246, 0.2);
            --blog-wiedza-grid-size: clamp(2.5rem, 3.5vw, 4.5rem);
            isolation: isolate;
        }

        #realizacja-page #realizacja-rozwiazanie::before {
            background-color: rgba(5, 8, 14, 0.2);
            background-image:
                linear-gradient(to right, var(--blog-wiedza-grid-line) 1px, transparent 1px),
                linear-gradient(to bottom, var(--blog-wiedza-grid-line) 1px, transparent 1px);
            background-size: var(--blog-wiedza-grid-size) var(--blog-wiedza-grid-size);
            background-position: 0 0;
        }

        #realizacja-page .realizacja-module > .container {
            position: relative;
            z-index: 1;
        }

        #realizacja-page .realizacja-module-title {
            margin: 0 0 4rem;
            font-family: var(--font-heading);
            font-weight: 300;
            font-size: clamp(3rem, 3.8vw, 4.6rem);
            line-height: 1.2;
            color: var(--text);
        }

     

        #realizacja-page #realizacja-opinia > .section-separator:first-child {
            margin-top: 0;
            border-bottom: none;
            border-top: var(--section-separator-border);
            background: linear-gradient(
                to bottom,
                rgb(0 24 109 / 10%) 0%,
                var(--bg) 100%
            );
        }

        #realizacja-page #realizacja-opinia {
            padding-bottom: 0;
        }

        #realizacja-page #realizacja-efekty > .section-separator:first-child {
            margin-top: 0;
            border-bottom: none;
            border-top: var(--section-separator-border);
            background: linear-gradient(
                to bottom,
                rgb(0 24 109 / 10%) 0%,
                var(--bg) 100%
            );
        }

        #realizacja-page #realizacja-efekty .tab-panel {
            grid-area: auto;
        }

        #realizacja-page #realizacja-efekty .tab-panel-block {
            gap: 5rem;
        }

        #realizacja-page #realizacja-efekty .stat-kafelka {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.8rem;
        }

        #realizacja-page #realizacja-efekty .stat-kafelka-icon {
            width: clamp(7rem, 8vw, 10.8rem);
            height: clamp(7rem, 8vw, 10.8rem);
        }

        #realizacja-page #realizacja-efekty .stat-kafelka-label {
            font-family: var(--font-heading);
        }

        #realizacja-page #realizacja-efekty .tab-panel .card :is(p, h3).section-desc.typo-body {
            font-family: var(--font);
            font-size: var(--typo-body);
            font-weight: 400;
            line-height: 1.5;
            color: var(--text-muted);
            max-width: 66ch;
            margin: 0;
        }

        #realizacja-page #realizacja-efekty h3.section-desc.typo-body {
            padding-bottom: 5rem;
        }

        #realizacja-page #realizacja-efekty .tab-panel-block > .card {
            padding: 0;
        }

        #realizacja-page #realizacja-efekty .realizacja-efekty-next-nav {
            width: 100%;
            margin: 8rem 0 0;
            padding: 2.4rem 0;
            gap: 0;
            align-items: center;
        }

        #realizacja-page #realizacja-efekty .realizacja-efekty-next-nav .blog-article-next-inner {
            width: auto;
            padding: 0;
            align-items: center;
            text-align: center;
        }

        #realizacja-page #realizacja-efekty .realizacja-efekty-next-nav .blog-article-next-read.btn-read-more {
            color: var(--text);
        }

        #realizacja-page #realizacja-efekty .realizacja-efekty-next-nav .blog-article-next-title {
            color: var(--accent);
            opacity: 0.7;
            text-align: center;
        }

        #realizacja-page #realizacja-efekty .realizacja-efekty-next-nav .blog-article-next-read.btn-read-more:hover ~ .blog-article-next-title,
        #realizacja-page #realizacja-efekty .realizacja-efekty-next-nav .blog-article-next-read.btn-read-more:focus-visible ~ .blog-article-next-title {
            opacity: 1;
        }

        #realizacja-page .realizacja-points {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        #realizacja-page .realizacja-point-item {
            flex: 1 1 48rem;
            min-width: 30rem;
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 4rem 4.4rem;
            border: 1px solid var(--border-card);
            border-radius: var(--radius);
            background: rgba(21, 21, 50, 0.3);
        }

        #realizacja-page .realizacja-point-icon {
            flex-shrink: 0;
            width: 4rem;
            height: 4rem;
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            color: var(--accent);
        }

        #realizacja-page .realizacja-point-icon svg {
            width: 2.4rem;
            height: 2.4rem;
            display: block;
        }

        #realizacja-page .realizacja-point-text {
            font-family: var(--font);
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.35;
            color: var(--text-muted);
            white-space: normal;
        }

        #realizacja-page .realizacja-solution-steps {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            gap: 2rem;
        }

        #realizacja-page .realizacja-solution-step {
            flex: 0 1 calc((100% - 4rem) / 3);
            width: calc((100% - 4rem) / 3);
            max-width: calc((100% - 4rem) / 3);
            min-width: clamp(24rem, 24vw, 34rem);
            padding: 5rem 4rem;
            border: 1px solid var(--border-card);
            border-radius: var(--radius);
            background: rgba(15, 15, 26, 0.9);
        }

        @media (max-width: 1280px) {
            #realizacja-page .realizacja-solution-step {
                flex-basis: calc((100% - 2rem) / 2);
                width: calc((100% - 2rem) / 2);
                max-width: calc((100% - 2rem) / 2);
            }
        }

        #realizacja-page .realizacja-solution-step h3 {
            margin: 0 0 1rem;
            font-family: var(--font);
            font-size: 2.2rem;
            font-weight: 500;
            line-height: 1.2;
            color: var(--text);
        }

        #realizacja-page .realizacja-solution-step p {
            margin: 0;
            font-family: var(--font);
            font-size: var(--typo-body);
            line-height: 1.5;
            color: var(--text-muted);
            max-width: 72ch;
        }

        #realizacja-page .realizacja-solution-step ul {
            margin: 1rem 0 0;
            padding: 0 0 0 1.8rem;
            font-family: var(--font);
            font-size: var(--typo-body);
            line-height: 1.6;
            color: var(--text-muted);
        }

        #realizacja-page .realizacja-solution-step ul li {
            margin-bottom: 0.6rem;
        }

        @media (max-width: 1024px) {
            #realizacja-page .subpage-hero {
                min-height: auto;
                padding-top: 10rem;
                padding-bottom: 4rem;
            }

            #realizacja-page .subpage-hero--split .subpage-hero-inner {
                flex-direction: column;
                justify-content: flex-start;
                gap: 2.8rem;
            }

            #realizacja-page .realizacja-hero-brand {
                order: -1;
                align-items: flex-start;
                margin-top: 0;
            }

            #realizacja-page .realizacja-point-item {
                min-width: 100%;
            }

            #realizacja-page .realizacja-solution-step {
                flex-basis: 100%;
                width: 100%;
                max-width: 100%;
                padding: 4rem 2rem;
            }
        }

        .subpage-hero--split .subpage-hero-copy .hero-heading-line2 {
            text-align: left;
        }

        .subpage-hero--split .subpage-hero-copy h4 {
            margin-left: 0;
            margin-right: 0;
            margin-top: 3rem;
            max-width: 62ch;
            text-align: left;
        }

        .subpage-hero--split .hero-content {
            width: 100%;
        }

        .subpage-hero--split .hero-container {
            position: relative;
        }

        .subpage-hero-scroll-indicator {
            position: relative;
            left: auto;
            bottom: auto;
            width: 3.2rem;
            height: 5.4rem;
            border-radius: 2rem;
            border: 0.2rem solid rgba(226, 232, 240, 0.15);
            transform: none;
            pointer-events: none;
            z-index: 3;
            margin-top: 6rem;
            animation: subpageMouseFloat 2.4s ease-in-out infinite;
        }

        .subpage-hero-scroll-indicator::before {
            content: '';
            position: absolute;
            inset: -0.2rem;
            border-radius: inherit;
            border: 0.2rem solid rgba(255, 255, 255, 0.7);
            clip-path: inset(0 0 100% 0);
            opacity: 0;
            filter: blur(0.16rem);
            animation: subpageMouseStroke 2.4s ease-in-out infinite;
        }

        .subpage-hero-scroll-dot {
            position: absolute;
            left: 50%;
            top: 1.25rem;
            width: 0.65rem;
            height: 0.65rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            transform: translateX(-50%);
            opacity: 0;
            filter: blur(0.05rem);
            animation: subpageMouseDot 2.4s ease-in-out infinite;
        }

        @keyframes subpageMouseFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(0.55rem);
            }
        }

        @keyframes subpageMouseStroke {
            0% {
                opacity: 0;
                clip-path: inset(0 0 100% 0);
                filter: blur(0.2rem);
            }
            18% {
                opacity: 1;
                clip-path: inset(0 0 0 0);
                filter: blur(0);
            }
            45% {
                opacity: 1;
                clip-path: inset(0 0 0 0);
            }
            68% {
                opacity: 0.95;
                clip-path: inset(48% 0 0 0);
            }
            100% {
                opacity: 0;
                clip-path: inset(100% 0 0 0);
                filter: blur(0.2rem);
            }
        }

        @keyframes subpageMouseDot {
            0% {
                opacity: 0;
                transform: translateX(-50%) translateY(0);
            }
            18% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            62% {
                opacity: 0.9;
                transform: translateX(-50%) translateY(1.7rem);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(2rem);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .subpage-hero-scroll-indicator,
            .subpage-hero-scroll-indicator::before,
            .subpage-hero-scroll-dot {
                animation: none;
                opacity: 1;
                filter: none;
            }

            .subpage-hero-scroll-indicator::before {
                clip-path: inset(48% 0 0 0);
            }
        }

        .subpage-hero-cta-tile {
            flex: 0 1 62rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 5rem;
            width: 350px;
            max-width: 380px;
            padding: 7rem 4rem;
            background: rgb(9 44 92 / 50%);
            border: 1px solid var(--border-card);
            border-radius: var(--radius);
            box-sizing: border-box;
            overflow: hidden;
        }

        .subpage-hero-cta-icon {
            display: block;
            width: 100%;
            max-width: 17rem;
            height: auto;
            object-fit: contain;
            margin: 0;
        }

        .subpage-hero-cta-copy {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 3rem;
            min-width: 0;
        }

        .subpage-hero-cta-title {
            margin: 0;
            font-family: var(--font-heading);
            font-size: 3.7rem;
            font-weight: 400;
            line-height: 1.1;
            color: var(--text);
        }

        .subpage-hero-cta-link.btn-read-more {
            color: var(--text);
            font-size: 2rem;
            opacity: 0.4;
            transition: background 0.2s, transform 0.15s, color 0.2s ease, opacity 0.2s ease;
        }

        .subpage-hero-cta-tile:hover .subpage-hero-cta-link.btn-read-more,
        .subpage-hero-cta-tile:focus-within .subpage-hero-cta-link.btn-read-more {
            opacity: 1;
        }

        .subpage-hero-cta-link > span:first-child {
            white-space: nowrap;
        }

        @media (max-width: 1024px) {
            .subpage-hero--split {
                --split-hero-breadcrumb-gap: 2.4rem;
            }

            .subpage-hero--split .subpage-hero-copy h1 {
                font-size: clamp(4rem, 5vw, 5.2rem);
            }

            .subpage-hero-scroll-indicator {
                width: 2.9rem;
                height: 5rem;
                border-width: 0.18rem;
                margin-top: 5rem;
            }

            .subpage-hero-scroll-indicator::before {
                inset: -0.18rem;
                border-width: 0.18rem;
            }

            .subpage-hero-scroll-dot {
                top: 1.12rem;
                width: 0.58rem;
                height: 0.58rem;
            }

            .subpage-hero--split .subpage-hero-inner {
                align-items: center;
                gap: 4rem 15%;
            }
        }

        @media (min-width: 901px) and (max-width: 1024px) {
            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-tile {
                width: 320px;
                max-width: 320px;
                padding: 5.8rem 3.2rem;
                gap: 3.8rem;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-icon {
                max-width: 13rem;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-copy {
                gap: 2.4rem;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 900px) {
            .subpage-hero--split .subpage-hero-inner {
                flex-direction: column;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero--split .subpage-hero-inner {
                gap: 10rem;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero--split .subpage-hero-copy h1 {
                font-size: 5rem;
            }

            .subpage-hero-cta-tile {
                align-self: flex-end;
                max-width: 100%;
                width: 100%;
                padding: 2rem 2.2rem;
            }

            .subpage-hero-cta-icon {
                max-width: 16rem;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-copy h1 {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 1.2rem;
            }

            :is(#o-nas-page, #pomoc-zdalna) .subpage-hero-copy .onas-hero-badge {
                margin-bottom: 1.4rem;
            }

            #o-nas-page .subpage-hero-copy .onas-hero-company {
                display: block;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-tile {
                display: grid;
                grid-template-columns: auto 1fr;
                align-items: center;
                gap: 4rem;
                padding: 2.6rem 2.2rem;
                height: auto;
                min-height: 0;
                flex: 0 0 auto;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-icon {
                width: 10.5rem;
                max-width: 10.5rem;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-copy {
                gap: 1.2rem;
            }

            :is(#o-nas-page, #pomoc-zdalna, #obsluga-informatyczna, #outsourcing-it, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .subpage-hero-cta-title {
                font-size: 2.2rem;
                line-height: 1.15;
            }

            .subpage-hero-scroll-indicator {
                width: 2.8rem;
                height: 4.8rem;
                border-width: 0.3rem;
                margin-top: 2.4rem;
            }

            .subpage-hero-scroll-indicator::before {
                inset: -0.3rem;
                border-width: 0.3rem;
            }

            .subpage-hero-scroll-dot {
                top: 1.05rem;
                width: 0.55rem;
                height: 0.55rem;
            }

            .subpage-hero--split .subpage-hero-bg-img {
                position: absolute;
                inset: 0;
                width: 195%;
                height: 85%;
                object-fit: cover;
                object-position: top center;
                opacity: 0.9;
                pointer-events: none;
            }
        }

        /* Outsourcing IT — nagłówek: 6 kolumn (tytuł 2 | pusta 1 | opis 3) */
        #outsourcing-it .dlaczego-header {
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }

        #outsourcing-it .dlaczego-header .section-title {
            grid-column: 1 / 3;
        }

        #outsourcing-it .dlaczego-header .section-desc {
            grid-column: 4 / 7;
        }

        @media (max-width: 768px) {
            #outsourcing-it .dlaczego-header {
                grid-template-columns: 1fr;
            }

            #outsourcing-it .dlaczego-header .section-title,
            #outsourcing-it .dlaczego-header .section-desc {
                grid-column: 1 / -1;
            }
        }

        #dla-kogo-obsluga .dlaczego-header {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        #dla-kogo-obsluga .dlaczego-header .section-title {
            grid-column: 1 / 2;
        }

        #dla-kogo-obsluga .dlaczego-header .section-desc:nth-of-type(1) {
            grid-column: 2 / 3;
        }

        #dla-kogo-obsluga .dlaczego-header .section-desc:nth-of-type(2) {
            grid-column: 3 / 4;
        }

        #dla-kogo-obsluga .cards-grid .card:not(.card-accent) {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            min-height: 0;
            background: var(--border);
        }

        #dla-kogo-obsluga .cards-grid .card:not(.card-accent) .card-title {
            margin-bottom: 0;
            font-size: var(--typo-bento-bottom);
            line-height: 1.2;
        }

        #dla-kogo-obsluga .cards-grid .card-corner-ring {
            position: absolute;
            top: 2rem;
            left: 2rem;
            width: 2rem;
            height: 2rem;
            flex-shrink: 0;
            pointer-events: none;
        }

        #dla-kogo-obsluga .cards-grid .card-corner-ring svg {
            display: block;
            width: 2rem;
            height: 2rem;
        }

        #dla-kogo-obsluga .cards-grid .card.card-accent {
            grid-column: span 4;
        }

        #dla-kogo-obsluga .cards-grid > .card:last-child {
            grid-column: span 2;
        }

        #dla-kogo-obsluga .cards-grid > .card:last-child {
            border: 1px solid transparent;
            background: linear-gradient(var(--bg), var(--bg)) padding-box,
                        var(--border-vivid) border-box;
        }

        #dla-kogo-obsluga .cards-grid > .card:last-child .card-corner-ring {
            display: none;
        }

        @media (max-width: 900px) {
            #dla-kogo-obsluga .dlaczego-header {
                grid-template-columns: 1fr;
            }

            #dla-kogo-obsluga .dlaczego-header .section-title,
            #dla-kogo-obsluga .dlaczego-header .section-desc:nth-of-type(1),
            #dla-kogo-obsluga .dlaczego-header .section-desc:nth-of-type(2) {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            #dla-kogo-obsluga .cards-grid .card.card-accent,
            #dla-kogo-obsluga .cards-grid > .card:last-child {
                grid-column: span 1;
            }
        }

        /* Najpierw linia, pod nią gradient w dół w stronę treści sekcji (odwrotnie niż domyślny .section-separator) — jak #outsourcing-modul-obsluga */
        #outsourcing-it section.uslugi > .section-separator:first-child,
        #outsourcing-it #technologie-section-ob > .section-separator:first-child {
            height: 15rem;
            margin-top: 0;
            border-bottom: none;
            border-top: var(--section-separator-border);
            background: linear-gradient(
                to bottom,
                rgb(0 24 109 / 10%) 0%,
                var(--bg) 100%
            );
        }

        /* Outsourcing — „Nasze technologie”: bez górnego paddingu sekcji (separator styka się z treścią) */
        #outsourcing-it #technologie-section-ob.technologie {
            padding-top: 0;
        }

        #technologie-section-obsluga > .section-separator:first-child {
            height: 15rem;
            margin-top: 0;
            border-bottom: none;
            border-top: var(--section-separator-border);
            background: linear-gradient(
                to bottom,
                rgb(0 24 109 / 10%) 0%,
                var(--bg) 100%
            );
        }

        #technologie-section-obsluga > .section-separator--gradient-up {
            height: 15rem;
            margin-top: 6rem;
            margin-bottom: 0;
            border-top: none;
            border-bottom: var(--section-separator-border);
            background: linear-gradient(
                to top,
                rgb(0 24 109 / 10%) 0%,
                var(--bg) 100%
            );
        }

        /* Helpdesk — na dole sekcji: linia u dołu, gradient w górę (lustro względem separatora u góry „Co obejmuje”) */
        #outsourcing-it #outsourcing-helpdesk > .section-separator--gradient-up {
            height: 15rem;
            margin-top: 6rem;
            margin-bottom: 0;
            border-top: none;
            border-bottom: var(--section-separator-border);
            background: linear-gradient(
                to top,
                rgb(0 24 109 / 10%) 0%,
                var(--bg) 100%
            );
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .outsourcing-pakiety {
            padding-bottom: 20rem;
        }

        @media (min-width: 1025px) {
            :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .outsourcing-pakiety .container {
                padding-left: 0;
                padding-right: 0;
            }
        }

        /* Pakiety START / SILVER / GOLD — kolumny 1+3 standard, 2 wyróżniony */
        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .pakiety-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 3rem;
            align-items: start;
            justify-items: center;
            margin-top: 10rem;
            max-width: 100%;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .pakiety-grid .package-card-wrap {
            width: 100%;
            max-width: 58rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .pakiety-grid .package-card-wrap--featured {
            max-width: 60rem;
            gap: 1.5rem;
            margin-bottom: 5rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-wrap > .package-card {
            flex-shrink: 0;
            min-height: 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card {
            box-sizing: border-box;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 0 6rem;
            gap: 0;
            border-radius: 1.875rem;
            min-height: 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card--standard {
            background: rgba(0, 15, 87, 0.3);
            border: 0.5px solid rgba(2, 93, 246, 0.4);
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card--featured {

            gap: 0;
            background: rgba(2, 93, 246, 0.24);
            border: 0.5px solid #025df6;
            box-shadow: 0 2.5rem 6rem rgba(2, 93, 246, 0.2);
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-badge {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            flex-wrap: wrap;
            width: 100%;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-badge-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.875rem;
            height: 3.875rem;
            flex-shrink: 0;
            border-radius: 0.5rem;
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.48) 0%, rgba(0, 20, 53, 0.6) 100%);
            border: 0.5px solid rgba(255, 255, 255, 0.1);
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-badge-icon svg {
            width: 1.6rem;
            height: 1rem;
            display: block;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-badge-text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 0.5rem;
            min-height: 3.75rem;
            box-sizing: border-box;
            border-radius: 0.5rem;
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.75rem;
            line-height: 1.3;
            color: #eff5ff;
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.16) 0%, rgba(0, 20, 53, 0.2) 100%);
            border: 0.5px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-head {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            padding: 3rem 0 0;
            width: 100%;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-label {
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: 2.25rem;
            line-height: 1.22;
            text-align: center;
            color: #fff;
            text-transform: lowercase;
            margin: 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-name {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 3rem;
            line-height: 1.2;
            text-align: center;
            color: #fff;
            letter-spacing: 0.02em;
            margin: 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-rule {
            width: 100%;
            height: 0;
            border: none;
            border-top: 0.5px solid rgba(2, 93, 246, 0.4);
            margin: 2rem 0 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card--featured .package-card-rule {
            border-top-color: #025df6;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-list {
            list-style: none;
            width: 100%;
            max-width: 44rem;
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
            align-items: stretch;
            flex: 0 1 auto;
            margin-top: 6rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card--featured .package-card-list {
            max-width: 44rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-list li {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 1.2rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-check {
            flex-shrink: 0;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.1rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-check svg {
            display: block;
            width: 2rem;
            height: 2rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-list-text {
            flex: 1;
            min-width: 0;
            font-family: var(--font);
            font-weight: 400;
            font-size: 2rem;
            line-height: 1.3;
            color: #fff;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-cta {
            max-width: 44rem;
            padding: 0 2.5rem;
            flex-shrink: 0;
            margin-top: 5rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card--featured .package-card-cta {
            margin-top: 6rem;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-cta .btn-cta {
            width: 100%;
            justify-content: center;
        }

        /* W kartach pakietów — ten sam jaśniejszy hover co domyślny .btn-cta (radial), nie wariant --on-blue */
        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-cta .btn-cta--on-blue:hover::after {
            background: radial-gradient(circle at 100% 50%, #025DF6 0%, rgba(0, 24, 109, 1) 100%);
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .package-card-cta .btn-cta--on-blue:hover .btn-cta-icon {
            background: rgba(24, 24, 27, 0.5);
        }

        @media (max-width: 1100px) {
            :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .pakiety-grid {
                grid-template-columns: 1fr;
                gap: 6rem;
            }

            :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .pakiety-grid .package-card-wrap,
            :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .pakiety-grid .package-card-wrap--featured {
                max-width: 55rem;
            }
        }

        /* Outsourcing — blog / wiedza IT: ciągła krata w tle sekcji (::before) + szczeliny 1px między kartami */
        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .outsourcing-blog-wiedza {
            --blog-wiedza-grid-line: rgba(2, 93, 246, 0.2);
            --blog-wiedza-grid-size: clamp(2.5rem, 3.5vw, 4.5rem);
            padding: var(--section-pad);
            position: relative;
            isolation: isolate;
            overflow: hidden;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .outsourcing-blog-wiedza::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-color: rgba(5, 8, 14, 0.2);
            background-image:
                linear-gradient(to right, var(--blog-wiedza-grid-line) 1px, transparent 1px),
                linear-gradient(to bottom, var(--blog-wiedza-grid-line) 1px, transparent 1px);
            background-size: var(--blog-wiedza-grid-size) var(--blog-wiedza-grid-size);
            background-position: 0 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .outsourcing-blog-wiedza .container {
            position: relative;
            z-index: 1;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .outsourcing-blog-wiedza .section-header {
            margin-bottom: var(--section-header-mb);
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-frame {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            width: 100%;
            max-width: 100%;
            gap: 2rem;
            padding: 0;
            margin: 0;
            background: transparent;
            border: none;
            box-shadow: none;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            min-width: 0;
            padding: 1rem 1rem 4rem;
            gap: 4rem;
            position: relative;
            z-index: 0;
            /* Obramowanie z gradientem #025DF6 — mocniejsze na rogach, zanika w środku krawędzi (wrażenie „znikania”) */
            border: 1px solid transparent;
            border-radius: var(--radius);
            background:
                linear-gradient(
                    180deg,
                    rgba(5, 8, 14, 0.8) 0%,
                    rgba(0, 72, 255, 0.3) 100%
                ) padding-box,
                linear-gradient(
                    180deg,
                    rgba(2, 93, 246, 0.95) 0%,
                    rgba(2, 93, 246, 0.35) 14%,
                    rgba(2, 93, 246, 0) 38%,
                    rgba(2, 93, 246, 0) 50%,
                    rgba(2, 93, 246, 0) 62%,
                    rgba(2, 93, 246, 0.3) 86%,
                    rgba(2, 93, 246, 0.9) 100%
                ) border-box;
            background-origin: padding-box, border-box;
            background-clip: padding-box, border-box;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card-thumb {
            width: 100%;
            aspect-ratio: 384 / 222;
            border-radius: 1.25rem;
            background-color: #025df6;
            background-image:
                linear-gradient(0deg, rgba(2, 93, 246, 0.55), rgba(2, 93, 246, 0.55)),
                var(--blog-wiedza-img);
            background-size: cover, cover;
            background-position: center, center;
            background-repeat: no-repeat, no-repeat;
            flex-shrink: 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-frame > article:nth-of-type(1) .blog-wiedza-card-thumb {
            --blog-wiedza-img: url("../images/wpis_1.webp");
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-frame > article:nth-of-type(2) .blog-wiedza-card-thumb {
            --blog-wiedza-img: url("../images/wpis_2.webp");
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-frame > article:nth-of-type(3) .blog-wiedza-card-thumb {
            --blog-wiedza-img: url("../images/wpis_1.webp");
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card-body {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            padding: 0 1rem;
            gap: 4rem;
            flex: 1;
            min-height: 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card-date {
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.5rem;
            line-height: 1.3;
            color: #c0c3d9;
            opacity: 0.7;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card-title {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 2.25rem;
            line-height: 1.22;
            color: #fafafa;
            margin: 0;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card-excerpt {
            font-family: var(--font);
            font-weight: 400;
            font-size: 1.75rem;
            line-height: 1.4;
            color: #c0c3d9;
            margin: 0;
        }

        /* Blog page override: subtler cards, accent border only on interaction */
        #blog-page .blog-wiedza-card {
            border-color: rgba(2, 93, 246, 0.2);
            background: linear-gradient(180deg, rgb(9 33 81) 0%, rgb(5 8 14) 100%);
            background-clip: padding-box;
            background-origin: padding-box;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

        #blog-page .blog-wiedza-card:hover,
        #blog-page .blog-wiedza-card:focus-within {
            border-color: var(--accent);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 0 1px rgba(2, 93, 246, 0.2);
            transform: translateY(-2px);
        }

        #blog-page .blog-wiedza-card-thumb {
            background-color: #0b1020;
            background-image: var(--blog-wiedza-img);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card-body .btn-read-more {
            align-self: flex-start;
        }

        @media (max-width: 1024px) {
            :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-frame {
                grid-template-columns: 1fr;
                gap: 1px;
                --blog-wiedza-grid-size: clamp(2rem, 5vw, 3.5rem);
            }
        }

        @media (max-width: 600px) {
            :is(#outsourcing-it, #obsluga-informatyczna, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .outsourcing-blog-wiedza .section-title {
                font-size: clamp(3rem, 6vw, 5rem);
            }

            :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card {
                padding: 1rem 0.5rem 3rem;
            }

            :is(#outsourcing-it, #obsluga-informatyczna, #blog-page, #helpdesk-it, #serwery, #sieci-komputerowe, #zakup-sprzetu, #zarzadzanie-sieciami, #acronis, #audyt-it, #bezpieczenstwo-it, #integracje-systemow, #kopie-zapasowe, #microsoft-365, #monitoring-czasu-pracy, #eset, #wdrozenia-systemow) .blog-wiedza-card-body {
                padding: 0 0.5rem;
            }
        }

        /* Outsourcing IT — „Co obejmuje”: dwie kolumny (tekst + FAQ | ilustracja) */
        :is(#outsourcing-it, #o-nas-page) .outsourcing-services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem 6rem;
            align-items: stretch;
        }

        /* Ta sama siatka — grafika w lewej kolumnie, treść w prawej (kolejność w HTML: media → tekst) */
        :is(#outsourcing-it, #o-nas-page) .outsourcing-services-grid--media-left .outsourcing-services-col--media {
            justify-content: flex-start;
        }

        :is(#outsourcing-it, #o-nas-page) .outsourcing-services-intro .outsourcing-services-intro-title {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--text);
        }

        :is(#outsourcing-it, #o-nas-page) .outsourcing-services-intro .typo-body {
            margin-top: 2rem;
            margin-bottom: 0;
            color: var(--text-muted);
        }

        :is(#outsourcing-it, #o-nas-page) h3.typo-body.outsourcing-services-intro-title {
            color: var(--text);
        }

        #outsourcing-it #outsourcing-helpdesk .outsourcing-services-intro .typo-h3 {
            margin-bottom: 0;
            color: var(--text);
        }

        #outsourcing-it .outsourcing-services-col .faq-list {
            max-width: none;
            margin: 9rem 0 0;
            width: 100%;
            padding: 0;
        }

        #outsourcing-it .outsourcing-services-cta {
            margin-top: 8rem;
        }

        :is(#outsourcing-it, #o-nas-page) .outsourcing-services-col--media {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            min-height: 0;
        }

        :is(#outsourcing-it, #o-nas-page) .outsourcing-services-col--media img {
            width: 80%;
            max-width: 100%;
            height: auto;
            display: block;
        }

        @media (prefers-reduced-motion: no-preference) {
            :is(#outsourcing-it, #o-nas-page) .outsourcing-services-col--media img {
                will-change: transform;
            }
        }

        @media (max-width: 900px) {
            :is(#outsourcing-it, #o-nas-page) .outsourcing-services-grid {
                grid-template-columns: 1fr;
            }
        }

        #o-nas-page #onas-jak-pracujemy {
            padding-top: 0;
            padding-bottom: var(--section-pad);
        }

        #o-nas-page #onas-jak-pracujemy > .section-separator:first-child {
            height: 15rem;
            margin-top: 0;
            border-bottom: none;
            border-top: var(--section-separator-border);
            background: linear-gradient(
                to bottom,
                rgb(0 24 109 / 10%) 0%,
                var(--bg) 100%
            );
        }

        #o-nas-page :is(#onas-jak-pracujemy, #onas-historia) .onas-how-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        #o-nas-page :is(#onas-jak-pracujemy, #onas-historia) .onas-how-badge,
        :is(#o-nas-page, #pomoc-zdalna) .subpage-hero-copy .onas-hero-badge {
            box-sizing: border-box;
            display: inline-flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0.75rem 2rem;
            gap: 1rem;
            width: max-content;
            max-width: 100%;
            min-height: 4.125rem;
            background: rgba(2, 93, 246, 0.24);
            border: 0.5px solid #025DF6;
            box-shadow: 0 2.5rem 5.99rem rgba(2, 93, 246, 0.2);
            border-radius: 3rem;
            font-family: var(--font);
            font-weight: 500;
            font-size: 2rem;
            line-height: 1.3;
            color: var(--text);
            white-space: nowrap;
        }

        :is(#o-nas-page, #pomoc-zdalna) .subpage-hero-copy .onas-hero-badge {
            margin-bottom: 2.4rem;
        }

        #o-nas-page .subpage-hero-copy .onas-hero-company {
            display: inline-block;
            white-space: pre-wrap;
        }

        @media (max-width: 1024px) {
            #o-nas-page :is(#onas-jak-pracujemy, #onas-historia) .onas-how-badge,
            :is(#o-nas-page, #pomoc-zdalna) .subpage-hero-copy .onas-hero-badge {
                font-size: 1.8rem;
            }

            #o-nas-page .onas-owner .container {
                width: min(120rem, 100%);
                max-width: 120rem;
            }
        }

        #o-nas-page :is(#onas-jak-pracujemy, #onas-historia) .onas-how-text {
            margin-top: 4rem;
            max-width: 112.5rem;
            font-family: var(--font-heading);
            font-style: normal;
            font-weight: 300;
            font-size: 3.25rem;
            line-height: 1.6;
            text-align: center;
            color: var(--text);
            margin-bottom: 10rem;
        }

        @media (max-width: 900px) {
            #o-nas-page :is(#onas-jak-pracujemy, #onas-historia) .onas-how-text {
                font-size: 2.6rem;
            }
        }

        #o-nas-page #onas-wyroznia .cards-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        #o-nas-page #onas-wyroznia .cards-grid > *:nth-child(-n+3),
        #o-nas-page #onas-wyroznia .cards-grid > *:nth-child(n+4),
        #o-nas-page #onas-wyroznia .cards-grid .card.card-accent {
            grid-column: span 1;
        }

        #o-nas-page #onas-wyroznia .cards-grid .card {
            height: 100%;
        }

        @media (max-width: 768px) {
            #o-nas-page #onas-wyroznia .cards-grid {
                grid-template-columns: 1fr;
            }
        }

        #o-nas-page .onas-owner {
            padding: var(--section-pad);
        }

        #o-nas-page .onas-owner .container {
            display: flex;
            max-width: 150rem;
            margin-left: auto;
            margin-right: auto;
            padding: clamp(3rem, 5vw, 8rem);
            align-items: center;
            gap: clamp(4rem, 7vw, 10rem);
            border-radius: 1rem;
            background: rgba(0, 15, 87, 0.3);
            border: 0.5px solid rgba(2, 93, 246, 0.4);
        }

        #o-nas-page .onas-owner-photo {
            width: 35rem;
            max-width: 100%;
            aspect-ratio: 25 / 34;
            border-radius: 1rem;
            overflow: hidden;
            background: rgba(5, 8, 14, 0.25);
            flex: 0 0 auto;
        }

        #o-nas-page .onas-owner-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        #o-nas-page .onas-owner-content {
            min-width: 0;
        }

        #o-nas-page .onas-owner .package-card-badge {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.6rem;
        }

        #o-nas-page .onas-owner .package-card-badge-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.875rem;
            height: 3.875rem;
            border-radius: 0.4rem;
            border: 0.5px solid rgba(255, 255, 255, 0.3);
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.5) 0%, rgba(2, 93, 246, 0.25) 100%);
            flex: 0 0 auto;
        }

        #o-nas-page .onas-owner .package-card-badge-icon svg {
            width: 1.6rem;
            height: 1rem;
            display: block;
        }

        #o-nas-page .onas-owner .package-card-badge-text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.2rem;
            min-height: 3.75rem;
            border-radius: 0.4rem;
            border: 0.5px solid rgba(255, 255, 255, 0.3);
            background: radial-gradient(128.67% 100% at 50% 0%, rgba(2, 93, 246, 0.5) 0%, rgba(2, 93, 246, 0.25) 100%);
            color: #eff5ff;
            white-space: nowrap;
            font-family: var(--font);
            font-weight: 500;
            font-size: 1.75rem;
            line-height: 1.3;
        }

        #o-nas-page .onas-owner-name {
            margin: 2rem 0 0;
            min-height: 4.9rem;
            font-family: 'Zalando Sans Expanded', var(--font-heading);
            font-style: normal;
            font-weight: 200;
            font-size: 5.5rem;
            line-height: 1.2;
            color: var(--text);
            letter-spacing: 0.01em;
        }

        #o-nas-page .onas-owner-bio {
            margin: 4rem 0 0;
            max-width: 64ch;
            color: var(--text-muted);
            font-size: var(--typo-body);
            line-height: 1.4;
        }

        @media (max-width: 900px) {
            #o-nas-page .onas-owner {
                padding-left: var(--section-pad-horizontal);
                padding-right: var(--section-pad-horizontal);
            }

            #o-nas-page .onas-owner .container {
                flex-direction: column;
                align-items: flex-start;
                gap: 3.2rem;
                padding: 2.2rem 1.8rem;
            }

            #o-nas-page .onas-owner-photo {
                width: 100%;
                max-width: none;
                height: 170px;
                aspect-ratio: auto;
            }

            #o-nas-page .onas-owner-name {
                font-size: 4.5rem;
            }
        }

        #o-nas-page #onas-historia {
            padding: var(--section-pad);
        }

        #o-nas-page #onas-historia .onas-history-grid {
            margin-top: 8rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 3rem;
            align-items: stretch;
        }

        #o-nas-page #onas-historia .onas-history-col {
            padding: 0;
            text-align: left;
        }

        #o-nas-page #onas-historia .onas-history-counter {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: left;
            min-height: 16rem;
        }

        #o-nas-page #onas-historia .onas-history-counter-track {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        #o-nas-page #onas-historia .onas-history-counter-value {
            margin-bottom: 1rem;
            min-width: 0;
            text-align: left;
            transition: opacity 0.6s ease, transform 0.9s ease;
        }

        #o-nas-page #onas-historia .onas-history-counter-label-shell {
            display: block;
            overflow: hidden;
            min-height: 6.5rem;
            width: 100%;
        }

        #o-nas-page #onas-historia .onas-history-counter-label {
            display: block;
            text-align: left;
            white-space: pre-line;
            clip-path: inset(0 100% 0 0);
            opacity: 0;
            transition: clip-path 0.9s ease, opacity 0.7s ease;
        }

        #o-nas-page #onas-historia .onas-history-counter.is-visible .onas-history-counter-label {
            clip-path: inset(0 0 0 0);
            opacity: 1;
        }

        #o-nas-page #onas-historia .onas-history-counter.is-hiding .onas-history-counter-value {
            transform: translateY(-0.8rem);
            opacity: 0;
        }

        #o-nas-page #onas-historia .onas-history-counter.is-hiding .onas-history-counter-label {
            clip-path: inset(0 100% 0 0);
            opacity: 0;
        }

        #o-nas-page #onas-historia .section-desc {
            margin: 0;
            max-width: none;
            color: var(--text-muted);
        }

        @media (min-width: 901px) and (max-width: 1024px) {
            #o-nas-page #onas-historia .onas-history-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 6rem;
                align-items: start;
            }

            #o-nas-page #onas-historia .onas-history-counter {
                min-height: 18.5rem;
            }

            #o-nas-page #onas-historia .onas-history-counter-track {
                min-height: 15.5rem;
            }

            #o-nas-page #onas-historia .onas-history-counter-value {
                display: inline-block;
                min-width: 4ch;
                white-space: nowrap;
                font-variant-numeric: tabular-nums;
            }

            #o-nas-page #onas-historia .onas-history-counter-label-shell {
                height: 7.2rem;
                min-height: 7.2rem;
            }
        }

        @media (max-width: 900px) {
            #o-nas-page #onas-historia .onas-history-grid {
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
                margin-top: 0;
            }

            #o-nas-page #onas-historia .onas-history-col,
            #o-nas-page #onas-historia .onas-history-counter,
            #o-nas-page #onas-historia .onas-history-counter-track,
            #o-nas-page #onas-historia .onas-history-counter-value,
            #o-nas-page #onas-historia .onas-history-counter-label,
            #o-nas-page #onas-historia .section-desc {
                text-align: center;
            }

            #o-nas-page #onas-historia .onas-history-counter {
                justify-content: center;
            }

            #o-nas-page #onas-historia .onas-history-counter-track {
                align-items: center;
            }
        }

        /* Outsourcing IT — bento: 12 kolumn. Góra: lewa kolumna 6 (dwa kafle) | featured 6 (2 rzędy); dół: 4+4+4 */
        #outsourcing-it .outsourcing-bento.cards-grid {
            display: grid;
            width: 100%;
            max-width: none;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-template-rows: auto auto auto;
            gap: 2rem;
            align-items: stretch;
        }

        #outsourcing-it .outsourcing-bento.cards-grid > * {
            min-width: 0;
        }

        /* Kafelki jak na stronie głównej (.card / .card-accent.box-glass); pojedynczy nagłówek bez ikony */
        #outsourcing-it .outsourcing-bento .card > .card-title:only-child {
            margin-bottom: 0;
        }

        #outsourcing-it .outsourcing-bento .card:has(> .card-title:only-child) {
            padding-left: 3.5rem;
            padding-right: 3.5rem;
        }

        #outsourcing-it .outsourcing-bento .card.card--icon-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 4rem;
            text-align: left;
        }

        #outsourcing-it .outsourcing-bento .card.card--icon-row .card-icon {
            flex-shrink: 0;
            width: 11rem;
            height: 11rem;
            margin-bottom: 0;
        }

        #outsourcing-it .outsourcing-bento .card.card--icon-row .card-title {
            margin-bottom: 0;
            flex: 1;
            min-width: 0;
        }

        @media (min-width: 901px) {
            #outsourcing-it .outsourcing-bento .card .card-title {
                text-wrap: balance;
            }
        }

        #outsourcing-it .outsourcing-bento .ob-t1 {
            grid-column: 1 / 7;
            grid-row: 1 / 2;
        }

        #outsourcing-it .outsourcing-bento .ob-t4 {
            grid-column: 1 / 7;
            grid-row: 2 / 3;
        }

        #outsourcing-it .outsourcing-bento .ob-t2 {
            grid-column: 7 / 13;
            grid-row: 1 / 3;
        }

        #outsourcing-it .outsourcing-bento .ob-t5 {
            grid-column: 1 / 5;
            grid-row: 3 / 4;
        }

        #outsourcing-it .outsourcing-bento .ob-t6 {
            grid-column: 5 / 9;
            grid-row: 3 / 4;
        }

        #outsourcing-it .outsourcing-bento .ob-t3 {
            grid-column: 9 / 13;
            grid-row: 3 / 4;
        }

        /* Dolny rząd (tylko nagłówek): tekst przy dolnej krawędzi kafelka */
        #outsourcing-it .outsourcing-bento .ob-t5,
        #outsourcing-it .outsourcing-bento .ob-t6,
        #outsourcing-it .outsourcing-bento .ob-t3 {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            min-height: 0;
            background: var(--border);
        }

        #outsourcing-it .outsourcing-bento .ob-t5 .card-title,
        #outsourcing-it .outsourcing-bento .ob-t6 .card-title,
        #outsourcing-it .outsourcing-bento .ob-t3 .card-title {
            margin-bottom: 0;
        }

        #outsourcing-it .outsourcing-bento .card-corner-ring {
            position: absolute;
            top: 2rem;
            left: 2rem;
            width: 2rem;
            height: 2rem;
            flex-shrink: 0;
            pointer-events: none;
        }

        #outsourcing-it .outsourcing-bento .card-corner-ring svg {
            display: block;
            width: 2rem;
            height: 2rem;
        }

        @media (max-width: 600px) {
            #outsourcing-it .outsourcing-bento .card-corner-ring {
                top: 4rem;
                left: 3rem;
            }
        }

        @media (max-width: 480px) {
            #outsourcing-it .outsourcing-bento .card-corner-ring {
                top: 3rem;
                left: 2rem;
            }
        }

        @media (max-width: 900px) {
            #outsourcing-it .outsourcing-bento.cards-grid {
                grid-template-columns: 1fr;
                grid-template-rows: none;
            }

            #outsourcing-it .outsourcing-bento .ob-t1,
            #outsourcing-it .outsourcing-bento .ob-t2,
            #outsourcing-it .outsourcing-bento .ob-t3,
            #outsourcing-it .outsourcing-bento .ob-t4,
            #outsourcing-it .outsourcing-bento .ob-t5,
            #outsourcing-it .outsourcing-bento .ob-t6 {
                grid-column: 1 / -1;
                grid-row: auto;
            }
        }

        /* Nawigacja między podstronami — ukryty select + custom dropdown (ciemna lista, nie zależy od OS) */
        .design-toolbar-page-wrap {
            display: flex;
            align-items: center;
            flex: 0 1 auto;
            min-width: 0;
        }

        .design-page-select-sr {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .design-page-dropdown {
            position: relative;
            min-width: 20rem;
            max-width: min(48rem, 92vw);
        }

        .design-page-dropdown-trigger {
            box-sizing: border-box;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.2rem;
            padding: 1rem 1.2rem 1rem 1.5rem;
            border-radius: 1rem;
            border: 1px solid var(--border);
            background-color: rgba(255, 255, 255, 0.06);
            color: var(--text);
            font-family: var(--font);
            font-size: 1.5rem;
            font-weight: 500;
            cursor: pointer;
            text-align: left;
            transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
        }

        .design-page-dropdown-trigger:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .design-page-dropdown-trigger:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .design-page-dropdown-trigger[aria-expanded="true"] {
            border-color: rgba(2, 93, 246, 0.5);
            box-shadow: 0 0 0 1px rgba(2, 93, 246, 0.25);
        }

        .design-page-dropdown-current {
            flex: 1;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .design-page-dropdown-arrow {
            flex-shrink: 0;
            width: 1.2rem;
            height: 1.2rem;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c0cad9' d='M2 3.5h8L6 8.5z'/%3E%3C/svg%3E") center / contain no-repeat;
            transition: transform 0.2s ease;
        }

        .design-page-dropdown-trigger[aria-expanded="true"] .design-page-dropdown-arrow {
            transform: rotate(180deg);
        }

        .design-page-dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            right: 0;
            z-index: 220;
            margin: 0;
            padding: 0.5rem 0;
            list-style: none;
            background: #1a1b1f;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 1rem;
            box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.55);
        }

        .design-page-dropdown-menu[hidden] {
            display: none;
        }

        .design-page-dropdown-option {
            padding: 1rem 1.5rem;
            font-family: var(--font);
            font-size: 1.5rem;
            font-weight: 500;
            color: #e8e9ef;
            cursor: pointer;
            transition: background 0.15s, color 0.15s;
        }

        .design-page-dropdown-option:hover,
        .design-page-dropdown-option:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text);
        }

        .design-page-dropdown-option.is-selected {
            background: rgba(2, 93, 246, 0.35);
            color: #fff;
        }

        .design-page-dropdown-option.is-selected:hover {
            background: var(--accent);
            color: #fff;
        }

        .design-tabs {
            display: flex;
            gap: 0.5rem;
        }

        .design-tab {
            padding: 1rem 2rem;
            border: none;
            border-radius: 1rem;
            background: transparent;
            color: var(--text-muted);
            font-family: var(--font);
            font-size: 1.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }

        .design-tab:hover {
            color: var(--text);
            background: rgba(255,255,255,0.06);
        }

        .design-tab.active {
            background: var(--accent);
            color: #fff;
        }

        .design-comment-btn {
            padding: 1rem 2rem;
            border-radius: 1rem;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text);
            font-family: var(--font);
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.2s;
        }

        .design-comment-btn:hover {
            background: rgba(255,255,255,0.06);
        }

        .design-comment-btn.active {
            background: var(--accent);
            border-color: var(--accent);
        }

        .design-comment-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            pointer-events: none;
        }

        .design-login-btn,
        .design-logout-btn {
            padding: 1rem 2rem;
            border-radius: 1rem;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text);
            font-family: var(--font);
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.2s;
        }

        .design-login-btn:hover,
        .design-logout-btn:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .design-logout-btn {
            border-color: rgba(248, 113, 113, 0.45);
            color: #fecaca;
        }

        .design-login-error {
            font-size: 1.6rem;
            color: #f87171;
            margin: 0 0 1.5rem;
        }

        .design-login-label {
            display: block;
            font-size: 1.5rem;
            color: var(--text-muted);
            margin-bottom: 0.6rem;
        }

        .design-toolbar-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 1rem;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text);
            font-family: var(--font);
            font-size: 1.5rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
            white-space: nowrap;
        }

        .design-toolbar-link:hover {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
        }

        .design-label {
            margin-left: auto;
            font-size: 1.5rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .design-toolbar-toggle {
            position: fixed;
            top: max(1rem, env(safe-area-inset-top));
            right: 1.5rem;
            z-index: 205;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: #121214;
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 2rem;
        }

        .design-main-view {
            position: relative;
            padding-top: calc(6rem + env(safe-area-inset-top, 0px));
        }

        .design-main-view.hidden {
            display: none;
        }

        .design-panel {
            display: none;
            padding: 6rem var(--section-pad-horizontal) 4rem;
            max-width: var(--container);
            margin: 0 auto;
            min-height: 100vh;
        }

        .design-panel.active {
            display: block;
        }

        .design-panel h2 {
            font-size: 3rem;
            font-weight: 400;
            text-transform: uppercase;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .design-panel h3 {
            font-size: 2rem;
            margin: 3rem 0 1rem;
        }

        .design-panel table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0 2rem;
            font-size: 2rem;
        }

        .design-panel th,
        .design-panel td {
            text-align: left;
            padding: 1rem 2rem;
            border: 1px solid var(--border);
        }

        .design-panel th {
            background: var(--bg-card);
            font-weight: 600;
        }

        .design-swatch {
            display: inline-block;
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            vertical-align: middle;
            margin-right: 1rem;
        }

        .comment-overlay {
            position: fixed;
            inset: 0;
            z-index: 300;
            cursor: crosshair;
            background: transparent;
        }

        .comment-overlay.hidden {
            display: none;
        }

        .comment-pins-layer {
            position: absolute;
            inset: 0;
            z-index: 301;
            pointer-events: none;
        }

        .comment-pins-layer .comment-pin {
            pointer-events: auto;
            position: absolute;
            width: 3rem;
            height: 3rem;
            background: var(--accent);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            cursor: pointer;
            border: 2px solid #fff;
            transform: translate(-50%, -50%);
        }

        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 400;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal-backdrop.show {
            display: flex;
        }

        .modal-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 3rem;
            max-width: 56rem;
            width: 100%;
        }

        .modal-box h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .modal-box textarea,
        .modal-box input[type="text"] {
            width: 100%;
            padding: 2rem;
            font-family: var(--font);
            font-size: 2rem;
            color: var(--text);
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 2rem;
        }

        .modal-box .modal-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .modal-box .modal-actions button {
            padding: 1rem 2rem;
            border-radius: 1rem;
            border: none;
            font-family: var(--font);
            font-size: 2rem;
            cursor: pointer;
        }

        .modal-box .btn-save {
            background: var(--accent);
            color: #fff;
        }

        .modal-box .btn-cancel {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid var(--border);
        }

        .modal-box .btn-done {
            background: var(--text-muted);
            color: #fff;
        }

        .design-wykonane-list {
            list-style: none;
        }

        .design-wykonane-list li {
            padding: 2rem;
            margin-bottom: 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
        }

        .design-wykonane-list .comment-author {
            font-size: 1.5rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        @media (max-width: 768px) {
            .design-toolbar,
            .design-toolbar-toggle {
                display: none !important;
            }
            .design-main-view {
                padding-top: env(safe-area-inset-top, 0px);
            }
            .hero,
            .subpage-hero {
                margin-top: 0;
            }
            .header {
                top: max(0px, env(safe-area-inset-top, 0px));
            }
            .header.header-hidden {
                transform: translateY(-100%);
            }
            .proces-sidebar {
                top: max(5rem, calc(3rem + env(safe-area-inset-top, 0px)));
            }
        }
            .package-card-for {
            margin: 0.5rem 0 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.4;
            text-align: center;
            max-width: 24ch;
            margin-left: auto;
            margin-right: auto;
        }

/* --- Fix: O nas hero "IT Pro Support" obcięcie na 900-1024px viewport (2026-05-12) --- */
@media (max-width: 1024px) {
    #o-nas-page .subpage-hero-copy h1 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    #o-nas-page .subpage-hero-copy .onas-hero-company {
        display: block;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }
}

/* --- Generic page.php content (Polityka prywatności i inne pages bez dedykowanego template) --- */
.itps-page-prose {
    max-width: 92rem;
    margin: 0 auto;
    font-family: var(--font);
    font-size: 1.8rem;
    line-height: 1.65;
    color: var(--text);
}
.itps-page-prose p { margin: 0 0 1.6em; }
.itps-page-prose h2,
.itps-page-prose h3,
.itps-page-prose h4 {
    font-family: var(--font-heading);
    color: var(--text);
    margin: 3rem 0 1.4em;
    line-height: 1.25;
}
.itps-page-prose h2 { font-size: 3rem; }
.itps-page-prose h3 { font-size: 2.4rem; }
.itps-page-prose h4 { font-size: 2rem; }
.itps-page-prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.itps-page-prose a:hover { color: var(--accent-hover); }
.itps-page-prose strong { color: var(--text); font-weight: 600; }
.itps-page-prose ul,
.itps-page-prose ol { padding-left: 2.4rem; margin: 0 0 1.6em; }
.itps-page-prose li { margin-bottom: 0.6em; }
