        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ============================================
           PALETA MARKI IQ-Networks
           ============================================ */
        :root {
            --c-blue-light: #3099dc;   /* jasny niebieski — akcenty, hover, gradienty */
            --c-blue: #0063CC;          /* niebieski — kolor podstawowy marki */
            --c-navy: #002E63;          /* granatowy — ciemne tła, głębia */
            --c-red: #E13333;           /* czerwony — alerty, akcent */
            --c-black: #000000;         /* czarny — tekst, nagłówki */
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 88px; /* fixed nav nie zakrywa celu kotwicy */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #000000;
            background: #FFFFFF;
            line-height: 1.6;
        }

        html.menu-open,
        html.menu-open body {
            overflow: hidden; /* blokada scrolla pod otwartym menu mobilnym (scrollerem jest html, nie body) */
        }



        html {
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ============================================
           SCROLL PROGRESS BAR
           ============================================ */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: #0063CC;
            z-index: 10000;
            transition: width 0.05s linear;
        }

        /* ============================================
           UTILITY
           ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .container--narrow {
            max-width: 800px;
        }

        /* ============================================
           SVG ICON DEFAULTS
           ============================================ */
        .icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            flex-shrink: 0;
        }

        /* ============================================
           NAV
           ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav.scrolled {
            padding: 14px 0;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 800;
            color: #000000;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
        }
        .nav-logo img { height: 34px; width: auto; display: block; }

        .nav-logo span {
            color: #0063CC;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: #6B7280;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: #000000;
        }

        .nav-cta-wrap {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-cta-wrap a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 28px;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: #000000;
            transition: all 0.2s ease;
        }

        .nav-cta-wrap a:hover {
            border-color: #0063CC;
            color: #0063CC;
        }

        /* telefon w nagłówku — link tekstowy, nie pigułka */
        .nav-cta-wrap a.nav-phone {
            padding: 0;
            border: none;
            border-radius: 0;
            gap: 7px;
            white-space: nowrap;
        }

        .nav-cta-wrap a.nav-phone:hover {
            border: none;
            color: #0063CC;
        }

        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: #000000;
            padding: 10px; /* większy tap target (44px) */
            margin: -6px;
        }

        /* hamburger → X (stan .is-open ustawia JS) */
        .nav-mobile-toggle .icon line {
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        .nav-mobile-toggle.is-open .icon line:nth-child(1) {
            transform: rotate(45deg);
            transform-origin: 5px 8px;
        }

        .nav-mobile-toggle.is-open .icon line:nth-child(2) {
            opacity: 0;
        }

        .nav-mobile-toggle.is-open .icon line:nth-child(3) {
            transform: rotate(-45deg);
            transform-origin: 5px 16px;
        }

        /* CTA + telefon w panelu mobilnym — na desktopie ukryte */
        .nav-mobile-extra {
            display: none;
        }

        /* ===== NAV DROPDOWN — Usługi ===== */
        .nav-dropdown { position: relative; }
        .nav-drop-trigger {
            display: inline-flex; align-items: center; gap: 5px;
            font-family: inherit; font-size: 14px; font-weight: 500;
            color: #6B7280; background: none; border: none; padding: 0;
            cursor: pointer; transition: color 0.2s ease;
        }
        .nav-dropdown:hover .nav-drop-trigger,
        .nav-dropdown:focus-within .nav-drop-trigger { color: #000000; }
        .nav-drop-caret { transition: transform 0.2s ease; }
        .nav-dropdown:hover .nav-drop-caret,
        .nav-dropdown:focus-within .nav-drop-caret { transform: rotate(180deg); }
        .nav-drop-menu {
            position: absolute; top: calc(100% + 16px); left: 50%;
            transform: translateX(-50%) translateY(6px);
            min-width: 264px; list-style: none; margin: 0; padding: 10px;
            background: #FFFFFF; border: 1px solid rgba(0,0,0,0.07);
            border-radius: 14px; box-shadow: 0 24px 48px rgba(0,0,0,0.13);
            opacity: 0; visibility: hidden; z-index: 200;
            transition: opacity 0.18s ease, transform 0.18s ease;
        }
        /* niewidzialny mostek hover między triggerem a panelem */
        .nav-drop-menu::before {
            content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
        }
        .nav-dropdown:hover .nav-drop-menu,
        .nav-dropdown:focus-within .nav-drop-menu {
            opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
        }
        .nav-drop-menu li { width: 100%; }
        .nav-drop-menu a {
            display: flex; align-items: center; gap: 11px;
            padding: 10px 12px; border-radius: 9px;
            font-size: 14px; font-weight: 500; color: #374151; white-space: nowrap;
        }
        .nav-drop-menu a:hover { background: #F3F4F6; color: #0063CC; }
        .nav-drop-menu a svg { width: 18px; height: 18px; flex-shrink: 0; color: #0063CC; }

        @media (max-width: 1200px) {
            .nav-drop-trigger {
                width: 100%; justify-content: center; gap: 7px;
                padding: 13px 0; font-size: 16px; font-weight: 600; color: #000000;
            }
            /* caret widoczny na mobile — sygnalizuje rozwijanie; obrót gdy otwarte */
            .nav-drop-caret { display: inline-block; }
            .nav-dropdown.open .nav-drop-caret { transform: rotate(180deg); }
            /* submenu domyślnie ZWINIĘTE na mobile; rozwija się po tapnięciu (.open) */
            .nav-drop-menu,
            .nav-dropdown:hover .nav-drop-menu,
            .nav-dropdown:focus-within .nav-drop-menu {
                display: none;
                position: static; left: auto; transform: none; opacity: 1; visibility: visible;
                min-width: 0; padding: 2px 0 8px; margin: 0 0 4px;
                background: none; border: none; border-bottom: 1px solid rgba(0,0,0,0.06);
                border-radius: 0; box-shadow: none;
            }
            .nav-dropdown.open .nav-drop-menu { display: block; }
            .nav-drop-menu::before { display: none; }
            .nav-drop-menu a {
                justify-content: center; padding: 11px 0;
                font-size: 15px; font-weight: 500; color: #4B5563;
            }
            .nav-drop-menu a svg { display: none; }
        }

        @media (max-width: 1200px) {
            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 8px);
                left: 16px;
                right: 16px;
                transform: none;
                flex-direction: column;
                /* SOLID tło — zagnieżdżony backdrop-filter (nav.scrolled też go ma)
                   nie bluruje tła w Chrome, więc treść strony prześwitywała przez panel */
                background: #FFFFFF;
                padding: 20px 24px;
                gap: 0;
                border-radius: 16px;
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
                max-height: calc(100vh - 96px);
                overflow-y: auto;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                width: 100%;
                text-align: center;
                padding: 13px 0;
                font-size: 16px;
                font-weight: 600;
                color: #000000;
            }

            .nav-mobile-toggle {
                display: block;
            }

            .nav-cta-wrap {
                display: none;
            }

            .nav-links .nav-mobile-extra {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-top: 14px;
                padding-top: 18px;
                border-top: 1px solid rgba(0, 0, 0, 0.08);
            }

            .nav-links .nav-mobile-extra a.nav-mobile-tel {
                color: #0063CC;
                font-weight: 700;
                padding: 10px 0;
            }

            .nav-links .nav-mobile-extra a.nav-mobile-cta {
                background: #0063CC;
                color: #FFFFFF;
                border-radius: 100px;
                padding: 14px 0;
            }
        }

        /* ============================================
           HERO — 100vh, centered, word-by-word fade
           ============================================ */
        .hero {
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 32px 80px;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
        }

        .hero h1 {
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            color: #000000;
            margin-bottom: 32px;
        }

        .hero h1 .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .hero h1 .word.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-subtitle {
            font-size: clamp(17px, 2vw, 20px);
            color: #6B7280;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto 48px;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.6s ease 1.2s, transform 0.6s ease 1.2s;
        }

        .hero-subtitle.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.6s ease 1.5s, transform 0.6s ease 1.5s;
        }

        .hero-buttons.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 100px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            color: #000000;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            border-color: #0063CC;
            color: #0063CC;
        }

        .btn-outline--primary {
            border-color: #0063CC;
            color: #0063CC;
        }

        .btn-outline--primary:hover {
            background: #0063CC;
            color: #FFFFFF;
        }

        .hero-scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #6B7280;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInScroll 0.6s ease 2s forwards;
        }

        .hero-scroll-hint .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, #6B7280, transparent);
            animation: scrollPulse 2s ease infinite;
        }

        @keyframes fadeInScroll {
            to { opacity: 1; }
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* ============================================
           SCROLL STORY — sticky text transitions
           ============================================ */
        .scroll-story {
            height: 400vh;
            position: relative;
        }

        .scroll-story-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 32px;
        }

        .scroll-story-text {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 700px;
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -1.5px;
            color: #000000;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .scroll-story-text.active {
            opacity: 1;
        }

        .scroll-story-text .accent {
            color: #0063CC;
        }

        /* ============================================
           SECTION — Services IT (dark)
           ============================================ */
        .section-dark {
            overflow: hidden;
            background: #002E63;
            color: #FFFFFF;
            padding: 100px 0;
            position: relative;
        }

        .section-light {
            overflow: hidden;
            background: #FFFFFF;
            padding: 100px 0;
            position: relative;
        }

        .section-alt {
            background: #F8F9FA;
            padding: 100px 0;
            position: relative;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #0063CC;
            margin-bottom: 24px;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: #0063CC;
        }

        .section-dark .section-label {
            color: #3099dc;
        }

        .section-dark .section-label::before {
            background: #3099dc;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #6B7280;
            max-width: 520px;
            line-height: 1.7;
        }

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.5);
        }

        .section-header {
            margin-bottom: 80px;
        }

        .section-header--center {
            text-align: center;
        }

        .section-header--center .section-subtitle {
            margin: 0 auto;
        }

        /* ============================================
           SERVICE CARDS — Dark variant
           ============================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            padding: 48px 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .service-card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            color: #3099dc;
        }

        .service-card-icon .icon {
            width: 28px;
            height: 28px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .service-card p {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.45);
        }

        @media (max-width: 900px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        /* ============================================
           SERVICE CARDS — Light variant
           ============================================ */
        .service-card--light {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .service-card--light:hover {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
        }

        .service-card--light h3 {
            color: #000000;
        }

        .service-card--light p {
            color: #6B7280;
        }

        .service-card--light .service-card-icon {
            color: #0063CC;
        }

        /* ============================================
           STATS — Number counters
           ============================================ */
        .stats-section {
            padding: 96px 0;
            background: #F8F9FA;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            text-align: center;
        }

        .stat-item {
            padding: 60px 40px;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60px;
            background: rgba(0, 0, 0, 0.08);
        }

        .stat-value {
            font-size: clamp(48px, 6vw, 72px);
            font-weight: 800;
            letter-spacing: -2px;
            color: #000000;
            line-height: 1;
            margin-bottom: 12px;
        }

        .stat-value .counter-suffix {
            color: #0063CC;
        }

        .stat-label {
            font-size: 16px;
            font-weight: 500;
            color: #6B7280;
        }

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

            .stat-item:not(:last-child)::after {
                right: 50%;
                transform: translateX(50%);
                top: auto;
                bottom: 0;
                width: 60px;
                height: 1px;
            }

            .stat-item {
                padding: 40px;
            }
        }

        /* ============================================
           INDUSTRIES — Pills
           ============================================ */
        .industries-section {
            padding: 100px 0;
            background: #FFFFFF;
        }

        .industries-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .industry-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            color: #000000;
            background: #FFFFFF;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(16px);
        }

        .industry-pill.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .industry-pill:hover {
            border-color: #0063CC;
            color: #0063CC;
            box-shadow: 0 4px 16px rgba(0, 99, 204, 0.08);
        }

        .industry-pill .icon {
            width: 18px;
            height: 18px;
            color: #0063CC;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            padding: 100px 0;
            background: #FFFFFF;
        }

        .cta-inner {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1.5px;
            color: #000000;
            margin-bottom: 24px;
        }

        .cta-inner h2 .accent {
            color: #0063CC;
        }

        .cta-inner p {
            font-size: 18px;
            color: #6B7280;
            line-height: 1.7;
            margin-bottom: 56px;
        }

        .cta-form-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 48px;
            text-align: left;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.04);
            max-width: 560px;
            margin: 0 auto;
        }

        .cta-form-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 32px;
            color: #000000;
            letter-spacing: -0.3px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            font-family: inherit;
            font-size: 16px; /* min. 16px — iOS Safari zoomuje stronę przy focusie na mniejszych */
            color: #000000;
            background: #FFFFFF;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0063CC;
            box-shadow: 0 0 0 3px rgba(0, 99, 204, 0.08);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #C0C4CC;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px 32px;
            background: #0063CC;
            color: #FFFFFF;
            border: none;
            border-radius: 12px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            background: #004F84;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0, 99, 204, 0.2);
        }

        @media (max-width: 540px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .cta-form-card {
                padding: 32px 24px;
            }
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: 80px 0 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 64px;
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #6B7280;
            margin-bottom: 24px;
        }

        .footer-address {
            font-size: 16px;
            color: #000000;
            line-height: 1.7;
            font-weight: 500;
        }

        .footer-phone {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: #000000;
            font-weight: 600;
            margin-top: 12px;
            transition: color 0.2s;
        }

        .footer-phone:hover {
            color: #0063CC;
        }

        .footer-phone .icon {
            width: 16px;
            height: 16px;
            color: #0063CC;
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: #6B7280;
        }

        .footer-bottom a {
            color: #0063CC;
            font-weight: 500;
        }
        .footer-bottom a:hover { text-decoration: underline; }

        .footer-logo {
            font-size: 18px;
            font-weight: 800;
            color: #000000;
            letter-spacing: -0.5px;
        }

        .footer-logo span {
            color: #0063CC;
        }

        @media (max-width: 540px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        /* ============================================
           PARALLAX WRAPPER
           ============================================ */
        .parallax-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            pointer-events: none;
            will-change: transform;
        }

        .parallax-shape {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .parallax-shape--1 {
            width: 600px;
            height: 600px;
            top: -100px;
            right: -200px;
            background: radial-gradient(circle, rgba(0, 99, 204, 0.03) 0%, transparent 70%);
        }

        .parallax-shape--2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            left: -100px;
            background: radial-gradient(circle, rgba(0, 99, 204, 0.02) 0%, transparent 70%);
        }

        /* ============================================
           FADE IN ANIMATIONS
           ============================================ */
        .fade-up {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE OVERRIDES
           ============================================ */
        @media (max-width: 768px) {
            .section-dark,
            .section-light,
            .section-alt,
            .industries-section,
            .cta-section {
                padding: 80px 0;
            }

            .section-header {
                margin-bottom: 48px;
            }

            .hero h1 {
                letter-spacing: -1px;
            }

            .scroll-story-text {
                font-size: clamp(24px, 7vw, 40px);
                padding: 0 24px;
            }
        }

        /* ============================================
           ====  PODSTRONY USŁUGOWE  ====
           ============================================ */

        /* ---- BREADCRUMB ---- */
        .breadcrumb {
            padding: 120px 0 0;
            font-size: 13px;
            font-weight: 500;
            color: #9AA0A8;
        }

        .breadcrumb a {
            color: #6B7280;
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: #0063CC;
        }

        .breadcrumb .sep {
            margin: 0 10px;
            color: #C0C4CC;
        }

        .breadcrumb .current {
            color: #000000;
        }

        /* ---- SERVICE HERO (split: text + image) ---- */
        .service-hero {
            padding: 48px 0 96px;
            overflow: hidden;
            position: relative;
        }

        .service-hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 72px;
            align-items: center;
        }

        .service-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #0063CC;
            margin-bottom: 24px;
        }

        .service-hero-eyebrow::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: #0063CC;
        }

        .service-hero h1 {
            font-size: clamp(38px, 5vw, 60px);
            font-weight: 800;
            line-height: 1.06;
            letter-spacing: -1.8px;
            color: #000000;
            margin-bottom: 28px;
        }

        .service-hero-lead {
            font-size: 18px;
            line-height: 1.7;
            color: #555B63;
            margin-bottom: 36px;
            max-width: 540px;
        }

        .service-hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .service-hero-visual {
            position: relative;
        }

        .service-hero-visual img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            display: block;
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.10);
        }

        .service-hero-visual::before {
            content: '';
            position: absolute;
            inset: -24px -24px 24px 24px;
            background: radial-gradient(circle at 70% 30%, rgba(0, 99, 204, 0.10), transparent 70%);
            border-radius: 32px;
            z-index: -1;
        }

        @media (max-width: 900px) {
            .service-hero-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .service-hero-visual {
                order: -1;
                max-width: 420px;
            }
        }

        /* ---- PROSE (treść usługowa) ---- */
        .prose-section {
            padding: 72px 0;
        }

        .prose {
            max-width: 760px;
        }

        .prose h2 {
            font-size: clamp(28px, 3.5vw, 38px);
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.15;
            color: #000000;
            margin-bottom: 20px;
        }

        .prose h2:not(:first-child) {
            margin-top: 64px;
        }

        .prose h3 {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: #000000;
            margin: 40px 0 14px;
        }

        .prose p {
            font-size: 17px;
            line-height: 1.8;
            color: #555B63;
            margin-bottom: 20px;
        }

        .prose strong {
            color: #000000;
            font-weight: 600;
        }

        /* listy i tabele w treści prawnej (np. polityka prywatności) */
        .prose ul:not(.check-list) {
            margin: 0 0 20px;
            padding-left: 22px;
        }
        .prose ul:not(.check-list) li {
            font-size: 17px;
            line-height: 1.75;
            color: #555B63;
            margin-bottom: 10px;
        }
        .prose ul:not(.check-list) li::marker { color: #0063CC; }

        .prose table {
            width: 100%;
            border-collapse: collapse;
            margin: 8px 0 28px;
            font-size: 14px;
        }
        .prose th, .prose td {
            text-align: left;
            padding: 10px 12px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            vertical-align: top;
            line-height: 1.55;
            color: #555B63;
        }
        .prose th { background: #F8F9FA; color: #000000; font-weight: 600; }
        .prose td code { font-size: 13px; color: #000000; }

        /* ---- CHECK LIST (korzyści) ---- */
        .check-list {
            list-style: none;
            display: grid;
            gap: 16px;
            margin: 8px 0 24px;
        }

        .check-list li {
            position: relative;
            padding-left: 38px;
            font-size: 16px;
            line-height: 1.65;
            color: #3D434B;
        }

        .check-list li strong {
            color: #000000;
        }

        .check-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(0, 99, 204, 0.08);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230063CC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        /* ---- FEATURE CARDS (grid korzyści/etapów) ---- */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-grid--2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .feature-card {
            padding: 36px 32px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
            border-color: rgba(0, 99, 204, 0.18);
        }

        /* kafelek klikalny w całości (link otwiera się kliknięciem gdziekolwiek) */
        .is-clickable { cursor: pointer; }

        .feature-card-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(0, 99, 204, 0.08);
            color: #0063CC;
            font-weight: 800;
            font-size: 16px;
            margin-bottom: 22px;
        }

        .feature-card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(0, 99, 204, 0.08);
            color: #0063CC;
            margin-bottom: 22px;
        }

        .feature-card-icon .icon {
            width: 26px;
            height: 26px;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: #000000;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 15px;
            line-height: 1.7;
            color: #6B7280;
        }

        @media (max-width: 900px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .feature-grid,
            .feature-grid--2 {
                grid-template-columns: 1fr;
            }
        }

        /* ---- BANNER OBRAZ (między sekcjami) ---- */
        .img-band {
            margin: 8px 0 0;
        }

        .img-band img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* ---- FAQ ACCORDION ---- */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 28px 0;
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: -0.2px;
            color: #000000;
            text-align: left;
        }

        .faq-question:hover {
            color: #0063CC;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #0063CC;
            border-radius: 2px;
        }

        .faq-icon::before {
            width: 14px;
            height: 2px;
        }

        .faq-icon::after {
            width: 2px;
            height: 14px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .faq-item.open .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 0 28px;
            font-size: 16px;
            line-height: 1.75;
            color: #6B7280;
            max-width: 720px;
        }

        .faq-item.open .faq-answer {
            max-height: 600px;
        }

        /* ---- RELATED SERVICES ---- */
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .related-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 26px 28px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            color: #000000;
            transition: all 0.25s ease;
        }

        .related-card:hover {
            border-color: #0063CC;
            color: #0063CC;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 99, 204, 0.08);
        }

        .related-card .icon {
            width: 18px;
            height: 18px;
            color: #0063CC;
        }

        @media (max-width: 768px) {
            .related-grid {
                grid-template-columns: 1fr;
            }
            .prose-section {
                padding: 64px 0;
            }
            .breadcrumb {
                padding-top: 100px;
            }
        }

        /* ============================================
           ==== FAZA 1 — NOWE KOMPONENTY (stronafull) ====
           ============================================ */

        /* ---- NAV hide/show wg kierunku scrolla ---- */
        .nav--hidden {
            transform: translateY(-100%);
        }

        /* ---- COOKIE BANNER (bez dark patterns) ---- */
        .cookie-banner {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.06);
            padding: 24px 0;
            transform: translateY(120%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1 1 380px;
            font-size: 14px;
            line-height: 1.6;
            color: #555B63;
        }

        .cookie-text strong {
            color: #000000;
            font-weight: 700;
        }

        .cookie-text a {
            color: #0063CC;
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* 3 przyciski o IDENTYCZNEJ wadze wizualnej */
        .cookie-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            min-width: 150px;
            border: 1px solid rgba(0, 0, 0, 0.14);
            border-radius: 100px;
            background: #FFFFFF;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            color: #000000;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .cookie-btn:hover {
            border-color: #0063CC;
            color: #0063CC;
        }

        /* Panel granularny */
        .cookie-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, margin 0.4s ease;
        }

        .cookie-banner.panel-open .cookie-panel {
            max-height: 520px;
            margin-top: 24px;
        }

        .cookie-panel-inner {
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .cookie-category {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 14px;
            background: #F8F9FA;
        }

        .cookie-category h5 {
            font-size: 14px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 4px;
        }

        .cookie-category p {
            font-size: 13px;
            line-height: 1.55;
            color: #6B7280;
        }

        .cookie-switch {
            position: relative;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .cookie-switch input {
            position: absolute;
            opacity: 0;
            width: 44px;
            height: 24px;
            margin: 0;
            cursor: pointer;
        }

        .cookie-switch .track {
            display: block;
            width: 44px;
            height: 24px;
            border-radius: 100px;
            background: #C0C4CC;
            transition: background 0.2s ease;
            position: relative;
        }

        .cookie-switch .track::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #FFFFFF;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease;
        }

        .cookie-switch input:checked + .track {
            background: #0063CC;
        }

        .cookie-switch input:checked + .track::after {
            transform: translateX(20px);
        }

        .cookie-switch input:disabled + .track {
            background: #0063CC;
            opacity: 0.55;
            cursor: not-allowed;
        }

        .cookie-panel-save {
            grid-column: 1 / -1;
            display: flex;
            justify-content: flex-end;
        }

        @media (max-width: 768px) {
            .cookie-inner {
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 20px;
            }
            .cookie-text {
                flex: 0 0 auto;
            }
            .cookie-actions {
                flex-direction: column;
            }
            .cookie-btn {
                width: 100%;
            }
            .cookie-panel-inner {
                grid-template-columns: 1fr;
            }
        }

        /* ---- MODUŁ OPINII — Wariant A (krótkie, z Google) ---- */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .review-card {
            padding: 36px 32px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
        }

        .review-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .review-card:hover {
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
        }

        .review-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 18px;
        }

        .review-stars svg {
            width: 18px;
            height: 18px;
            fill: #F5A623;
        }

        .review-quote {
            font-size: 16px;
            line-height: 1.7;
            color: #3D434B;
            margin-bottom: 22px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-author-meta {
            font-size: 14px;
        }

        .review-author-name {
            font-weight: 700;
            color: #000000;
        }

        .review-author-loc {
            color: #6B7280;
            font-size: 13px;
        }

        .review-source {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-left: auto;
            font-size: 12px;
            font-weight: 600;
            color: #6B7280;
        }

        .review-source svg {
            width: 16px;
            height: 16px;
        }

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

        /* ---- MODUŁ OPINII — Wariant B (długie testimoniale) ---- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 28px;
        }

        .testimonial-card {
            padding: 48px 44px;
            background: #F8F9FA;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .testimonial-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-quote {
            font-size: 19px;
            line-height: 1.7;
            color: #1A1D21;
            font-weight: 500;
            letter-spacing: -0.2px;
            margin-bottom: 28px;
        }

        .testimonial-quote::before {
            content: '\201E';
            color: #0063CC;
            font-weight: 800;
        }

        .testimonial-quote::after {
            content: '\201D';
            color: #0063CC;
            font-weight: 800;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            background: #E5E8EB;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-size: 16px;
            font-weight: 700;
            color: #000000;
        }

        .testimonial-role {
            font-size: 14px;
            color: #6B7280;
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-card {
                padding: 36px 28px;
            }
        }

        /* ---- KARUZELA LOGO "Zaufali nam" ---- */
        .logo-marquee {
            overflow: hidden;
            position: relative;
            -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
        }

        .logo-track {
            display: flex;
            gap: 24px;
            width: max-content;
            animation: marquee 32s linear infinite;
        }

        .logo-marquee:hover .logo-track {
            animation-play-state: paused;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .logo-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            height: 72px;
            padding: 0 32px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            background: #FFFFFF;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: #9AA0A8;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: opacity 0.3s ease, color 0.3s ease;
            white-space: nowrap;
        }

        .logo-box:hover {
            opacity: 1;
            color: #000000;
        }

        /* ---- PASMO BEZPŁATNEJ KONSULTACJI ---- */
        .consult-band {
            padding: 64px 0;
        }

        .consult-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            background: #0063CC;
            border-radius: 28px;
            padding: 56px 56px;
            position: relative;
            overflow: hidden;
        }

        .consult-inner::before {
            content: '';
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
            top: -180px;
            right: -120px;
            pointer-events: none;
        }

        .consult-text {
            position: relative;
        }

        .consult-text h2 {
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.1;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .consult-text p {
            font-size: 17px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            max-width: 520px;
        }

        .consult-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: #FFFFFF;
            color: #0063CC;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 700;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .consult-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .consult-inner {
                padding: 40px 32px;
                flex-direction: column;
                align-items: flex-start;
            }
            .consult-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ---- PRICE TAG ---- */
        .price-tag {
            display: inline-flex;
            align-items: baseline;
            gap: 4px;
            margin-top: 16px;
            padding: 6px 14px;
            border-radius: 100px;
            background: rgba(0, 99, 204, 0.08);
            font-size: 14px;
            font-weight: 700;
            color: #0063CC;
            letter-spacing: -0.2px;
        }

        .price-tag .price-from {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.7;
        }

        /* na ciemnych kartach */
        .service-card:not(.service-card--light) .price-tag {
            background: rgba(74, 158, 255, 0.12);
            color: #3099dc;
        }

        /* ---- REALIZACJE TEASER CARDS ---- */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .work-card {
            display: flex;
            flex-direction: column;
            padding: 32px 30px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        /* miniatura wdrożenia (full-bleed u góry kafelka) */
        .work-card-img {
            margin: -32px -30px 22px;
            height: 184px;
            background-size: cover;
            background-position: center;
            background-color: #EAEEF3;
        }

        .work-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .work-card:hover {
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
            border-color: rgba(0, 99, 204, 0.18);
            transform: translateY(-2px);
        }

        .work-tag {
            display: inline-flex;
            align-self: flex-start;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #0063CC;
            margin-bottom: 18px;
        }

        .work-tag .icon {
            width: 15px;
            height: 15px;
        }

        .work-card h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.35;
            letter-spacing: -0.3px;
            color: #000000;
            margin-bottom: 20px;
            flex: 1;
        }

        .work-card .work-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #0063CC;
        }

        .work-card .work-link .icon {
            width: 16px;
            height: 16px;
            transition: transform 0.25s ease;
        }

        .work-card:hover .work-link .icon {
            transform: translateX(4px);
        }

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

        /* ---- O FIRMIE / USP ---- */
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 16px;
        }

        .usp-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 28px 28px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 18px;
        }

        .usp-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(0, 99, 204, 0.08);
            color: #0063CC;
        }

        .usp-icon .icon {
            width: 22px;
            height: 22px;
        }

        .usp-item h3 {
            font-size: 16px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 6px;
            letter-spacing: -0.2px;
        }

        .usp-item p {
            font-size: 14px;
            line-height: 1.6;
            color: #6B7280;
        }

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

        /* ---- WRAPPER MAPY GOOGLE ---- */
        .map-embed {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .map-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .maps-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 32px;
        }

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

        /* ---- FORM: checkbox RODO ---- */
        .form-consent {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 4px 0 8px;
        }

        .form-consent input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            flex-shrink: 0;
            accent-color: #0063CC;
            cursor: pointer;
        }

        .form-consent label {
            font-size: 13px;
            line-height: 1.55;
            color: #6B7280;
            font-weight: 400;
            letter-spacing: 0;
        }

        .form-consent a {
            color: #0063CC;
            text-decoration: underline;
        }

        /* ---- STATS: 4 kolumny wariant ---- */
        .stats-grid--4 {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width: 900px) {
            .stats-grid--4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid--4 .stat-item:nth-child(2)::after {
                display: none;
            }
        }

        @media (max-width: 540px) {
            .stats-grid--4 {
                grid-template-columns: 1fr;
            }
        }

        /* stat value mniejszy dla tekstowych statów */
        .stat-value--sm {
            font-size: clamp(28px, 4vw, 40px);
            letter-spacing: -1px;
        }

        /* ---- FOOTER 4-kolumny + social ---- */
        .footer-grid--4 {
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 48px;
        }

        .footer-brand-logo {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #000000;
            margin-bottom: 16px;
            display: inline-block;
        }

        .footer-brand-logo span {
            color: #0063CC;
        }

        .footer-brand-desc {
            font-size: 14px;
            line-height: 1.7;
            color: #6B7280;
            max-width: 300px;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #6B7280;
            transition: all 0.2s ease;
        }

        .footer-social a:hover {
            border-color: #0063CC;
            color: #0063CC;
            background: rgba(0, 99, 204, 0.04);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
        }

        .footer-links {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: #6B7280;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #0063CC;
        }

        .footer-meta {
            font-size: 13px;
            line-height: 1.7;
            color: #9AA0A8;
            margin-top: 12px;
        }

        @media (max-width: 900px) {
            .footer-grid--4 {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 540px) {
            .footer-grid--4 {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }

        /* ============================================
           MAPA ODDZIAŁÓW (interaktywna mapa Polski)
           Reużywalny komponent: [data-branch-map][data-active]
           ============================================ */
        .branch-map {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 48px;
            align-items: center;
        }

        /* --- lewa kolumna: kontur Polski + piny --- */
        .branch-map-canvas {
            position: relative;
            background:
                radial-gradient(circle at 30% 20%, rgba(0, 99, 204, 0.05), transparent 60%),
                #F8F9FA;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 32px;
        }

        .poland-svg {
            display: block;
            width: 100%;
            height: auto;
        }

        .poland-shape path {
            fill: #E2E8F0;
            stroke: #CBD5E1;
            stroke-width: 1;
            stroke-linejoin: round;
            transition: fill 0.3s ease;
        }

        /* --- piny --- */
        .branch-pin {
            cursor: pointer;
            outline: none;
        }

        .branch-pin .pin-dot {
            fill: #FFFFFF;
            stroke: #0063CC;
            stroke-width: 4;
            transition: fill 0.25s ease, stroke 0.25s ease, r 0.25s ease;
        }

        .branch-pin .pin-stem {
            stroke: #0063CC;
            stroke-width: 3;
            stroke-linecap: round;
            opacity: 0.45;
            transition: opacity 0.25s ease, stroke 0.25s ease;
        }

        .branch-pin .pin-label {
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            fill: #6B7280;
            letter-spacing: -0.3px;
            transition: fill 0.25s ease;
        }

        .branch-pin:hover .pin-dot {
            fill: rgba(0, 99, 204, 0.15);
        }

        .branch-pin:hover .pin-label,
        .branch-pin:focus-visible .pin-label {
            fill: #000000;
        }

        .branch-pin:focus-visible .pin-dot {
            stroke: #000000;
        }

        /* pin aktywny = wypełniony granatem */
        .branch-pin.is-active .pin-dot {
            fill: #0063CC;
            stroke: #0063CC;
        }

        .branch-pin.is-active .pin-stem {
            opacity: 1;
        }

        .branch-pin.is-active .pin-label {
            fill: #0063CC;
        }

        /* --- prawa kolumna: panel wybranego oddziału --- */
        .branch-panel {
            display: flex;
            flex-direction: column;
        }

        .branch-tabs {
            display: inline-flex;
            gap: 6px;
            padding: 6px;
            background: #F1F4F8;
            border-radius: 100px;
            align-self: flex-start;
            margin-bottom: 24px;
        }

        .branch-tab {
            padding: 10px 28px;
            border: none;
            border-radius: 100px;
            background: transparent;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            color: #6B7280;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .branch-tab:hover {
            color: #000000;
        }

        .branch-tab.is-active {
            background: #FFFFFF;
            color: #0063CC;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
        }

        .branch-panel-card {
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.04);
        }

        .branch-panel-eyebrow {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #0063CC;
            margin-bottom: 16px;
        }

        /* przełączanie widoczności detali oddziału */
        .branch-detail {
            display: none;
        }

        .branch-detail.is-active {
            display: block;
            animation: branchFade 0.35s ease;
        }

        @keyframes branchFade {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .branch-detail-city {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.8px;
            color: #000000;
            margin-bottom: 24px;
        }

        .branch-badge {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #0063CC;
            background: rgba(0, 99, 204, 0.08);
            padding: 5px 12px;
            border-radius: 100px;
        }

        .branch-info {
            list-style: none;
            display: grid;
            gap: 20px;
            margin-bottom: 32px;
        }

        .branch-info li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .branch-info-icon {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(0, 99, 204, 0.08);
            color: #0063CC;
        }

        .branch-info-icon .icon {
            width: 20px;
            height: 20px;
        }

        .branch-info li > span:last-child {
            font-size: 16px;
            line-height: 1.55;
            color: #000000;
            font-weight: 500;
        }

        .branch-info-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #9AA0A8;
            margin-bottom: 2px;
        }

        .branch-info a {
            color: #000000;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .branch-info a:hover {
            color: #0063CC;
        }

        .branch-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .branch-actions .btn-outline {
            padding: 13px 26px;
            font-size: 14px;
        }

        .branch-shared {
            font-size: 14px;
            color: #6B7280;
            margin-top: 24px;
        }

        .branch-shared a {
            color: #0063CC;
            font-weight: 600;
        }

        /* --- responsywność: mapa nad panelem --- */
        @media (max-width: 900px) {
            .branch-map {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .branch-map-canvas {
                order: -1;
                max-width: 520px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 540px) {
            .branch-map-canvas {
                padding: 20px;
            }
            .branch-panel-card {
                padding: 28px 24px;
            }
            .branch-detail-city {
                font-size: 24px;
            }
            .branch-tabs {
                align-self: stretch;
            }
            .branch-tab {
                flex: 1;
                text-align: center;
                padding: 10px 16px;
            }
            .branch-actions .btn-outline {
                flex: 1;
                justify-content: center;
            }
            .poland-shape path {
                stroke-width: 1.4;
            }
        }

        /* ---- FIX: card footer (cena + link nie rozjeżdżają się) ---- */
        .service-card .price-tag { display: inline-flex; margin-top: 20px; }
        .service-card .work-link {
            display: flex;
            align-items: center;
            gap: 6px;
            width: fit-content;
            margin-top: 14px;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 600;
            color: #0063CC;
        }
        .service-card .work-link .icon { width: 16px; height: 16px; transition: transform .2s ease; }
        .service-card:hover .work-link .icon { transform: translateX(3px); }
        .service-card--light { display: flex; flex-direction: column; }

        /* ===== PANELE BRANŻ (hub /branze/) — foto-ready ===== */
        .branch-panels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
        .branch-panel {
            position: relative; display: flex; flex-direction: column; justify-content: flex-end;
            min-height: 232px; padding: 26px; border-radius: 18px; overflow: hidden;
            color: #fff; text-decoration: none; isolation: isolate;
            background-image: linear-gradient(150deg, #16335a, #0a59b0);
            background-size: cover; background-position: center;
            transition: transform .35s ease, box-shadow .35s ease;
        }
        .branch-panel--wide { grid-column: span 2; }
        /* nakładka dla czytelności (działa też ze zdjęciem w tle) */
        .branch-panel::after {
            content: ""; position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(180deg, rgba(7,14,28,.32) 0%, rgba(7,14,28,.50) 45%, rgba(7,14,28,.84) 100%);
            transition: opacity .35s ease;
        }
        .branch-panel > * { position: relative; z-index: 2; }
        .branch-panel-icon {
            width: 46px; height: 46px; border-radius: 13px; margin-bottom: auto;
            background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center;
        }
        .branch-panel-icon svg { width: 24px; height: 24px; color: #fff; }
        .branch-panel-text h3 { font-size: 19px; font-weight: 700; letter-spacing: -.2px; margin: 18px 0 6px; color: #fff; }
        .branch-panel-text p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.82); margin: 0 0 12px; }
        .branch-panel-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: #fff; }
        .branch-panel-cta svg { width: 16px; height: 16px; transition: transform .25s ease; }
        .branch-panel:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(8,20,45,.22); }
        .branch-panel:hover::after { opacity: .9; }
        .branch-panel:hover .branch-panel-cta svg { transform: translateX(4px); }
        /* wariacje koloru do czasu zdjęć — inline background-image je nadpisze */
        .branch-panel:nth-child(1) { background-image: linear-gradient(150deg, #13315b, #0a59b0); }
        .branch-panel:nth-child(2) { background-image: linear-gradient(150deg, #0f3a66, #0063cc); }
        .branch-panel:nth-child(3) { background-image: linear-gradient(150deg, #0c2f54, #1466b8); }
        .branch-panel:nth-child(4) { background-image: linear-gradient(150deg, #13385f, #0a4f9e); }
        .branch-panel:nth-child(5) { background-image: linear-gradient(150deg, #11314f, #1670c0); }
        .branch-panel:nth-child(6) { background-image: linear-gradient(150deg, #0d3358, #0a59b0); }
        .branch-panel:nth-child(7) { background-image: linear-gradient(150deg, #102d4d, #0f63c4); }
        @media (max-width: 960px) {
            .branch-panels { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 560px) {
            .branch-panels { grid-template-columns: 1fr; }
            .branch-panel--wide { grid-column: span 1; }
            .branch-panel { min-height: 172px; padding: 22px; }
        }

        /* ===== MOBILNY STICKY CTA ===== */
        .mobile-cta-bar {
            position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
            display: none; gap: 10px;
            padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
            background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
            border-top: 1px solid rgba(0,0,0,.08); box-shadow: 0 -8px 24px rgba(0,0,0,.08);
            transform: translateY(110%); transition: transform .3s ease;
        }
        .mobile-cta-bar.visible { transform: translateY(0); }
        .mobile-cta-bar a {
            flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            height: 48px; border-radius: 12px; font-size: 15px; font-weight: 600; text-decoration: none;
        }
        .mobile-cta-bar a svg { width: 18px; height: 18px; }
        .mobile-cta-bar .mcta-call { border: 1px solid rgba(0,0,0,.14); color: #000000; background: #fff; }
        .mobile-cta-bar .mcta-audit { background: #0063CC; color: #fff; }
        @media (max-width: 768px) { .mobile-cta-bar { display: none; } } /* pasek Zadzwoń/Audyt ukryty na życzenie klienta 23.06 */

        /* ===== FORMULARZ — stan sukcesu / błędu ===== */
        .form-success {
            text-align: center; padding: 24px 8px;
        }
        .form-success svg { width: 48px; height: 48px; color: #0063CC; margin-bottom: 12px; }
        .form-success h3 { font-size: 22px; font-weight: 700; color: #000000; margin: 0 0 8px; }
        .form-success p { font-size: 15px; color: #555B63; margin: 0; }
        .form-error {
            background: #FDECEA; border: 1px solid #F5C2BC; color: #E13333;
            border-radius: 10px; padding: 12px 14px; font-size: 14px; margin: 0 0 16px;
        }

        /* ===== USŁUGI — bento na stronie głównej ===== */
        .usl-bento { display: grid; grid-template-columns: 1.15fr 2fr; gap: 20px; }
        .usl-flag {
            position: relative; border-radius: 20px; overflow: hidden; color: #fff;
            padding: 38px 34px; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
            background: linear-gradient(160deg, #0B1B33, #0a4f9e); text-decoration: none;
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .usl-flag:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(11,27,51,.22); }
        .usl-flag-tag { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #3099dc; margin-bottom: auto; }
        .usl-flag h3 { font-size: 28px; font-weight: 800; letter-spacing: -.5px; margin: 0 0 10px; color: #fff; }
        .usl-flag p { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.55; margin: 0 0 18px; }
        .usl-flag-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: #fff; }
        .usl-flag-link svg { stroke: #fff; fill: none; stroke-width: 2; transition: transform .2s ease; }
        .usl-flag:hover .usl-flag-link svg { transform: translateX(4px); }
        .usl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .usl-mini {
            background: #F6F8FB; border: 1px solid #ECEFF3; border-radius: 16px; padding: 22px 20px;
            text-decoration: none; color: #000000; display: flex; flex-direction: column; gap: 12px;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .usl-mini:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(11,27,51,.1); border-color: #cfe0f5; }
        .usl-mini .usl-mi { width: 40px; height: 40px; border-radius: 11px; background: #E8F1FC; display: flex; align-items: center; justify-content: center; }
        .usl-mini .usl-mi svg { width: 21px; height: 21px; color: #0063CC; }
        .usl-mini h4 { font-size: 15px; font-weight: 700; line-height: 1.3; margin: 0; color: #000000; }
        .usl-mini span { font-size: 12.5px; color: #6B7280; }
        .usl-all { text-align: center; margin-top: 30px; }
        .usl-all a { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #0063CC; text-decoration: none; }
        .usl-all a svg { stroke: #0063CC; fill: none; stroke-width: 2; transition: transform .2s ease; }
        .usl-all a:hover svg { transform: translateX(3px); }
        @media (max-width: 860px) { .usl-bento { grid-template-columns: 1fr; } .usl-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 560px) { .usl-grid { grid-template-columns: 1fr; } .usl-flag { min-height: 240px; } }

        /* link "Czytaj artykuł" w kartach feature (np. hub blog) — styl jak reszta CTA kart */
        .feature-card .work-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: fit-content;
            margin-top: 16px;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 600;
            color: #0063CC;
        }
        .feature-card .work-link .icon { width: 16px; height: 16px; transition: transform .2s ease; }
        .feature-card:hover .work-link .icon { transform: translateX(3px); }
        .service-card--light p { flex: 1; }

        /* ============================================
           ==== FAZA 2 — NOWE TYPY SEKCJI (z sandboxa) ====
           Bento / Karuzela / Pricing / Timeline / Full-bleed
           ============================================ */

        /* ---- WARIANT A — BENTO / DUŻE PANELE ---- */
        .bento {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .bento-big {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            min-height: 420px;
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: #fff;
        }

        .bento-big.b1 {
            background-color: #003a78;
            background-image: linear-gradient(150deg, rgba(0, 99, 204, .80), rgba(0, 42, 90, .94)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1000&q=72');
            background-size: cover;
            background-position: center;
        }

        .bento-big.b2 {
            background-color: #002E63;
            background-image: linear-gradient(150deg, rgba(10, 10, 10, .72), rgba(15, 23, 42, .93)), url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=1000&q=72');
            background-size: cover;
            background-position: center;
        }

        .bento-big .kicker {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: .7;
            margin-bottom: 12px;
        }

        .bento-big h3 {
            font-size: 30px;
            font-weight: 800;
            letter-spacing: -0.8px;
            line-height: 1.15;
            margin-bottom: 14px;
            max-width: 360px;
        }

        .bento-big p {
            font-size: 16px;
            line-height: 1.6;
            opacity: .85;
            max-width: 380px;
        }

        .bento-big .glow {
            position: absolute;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%);
            top: -80px;
            right: -80px;
        }

        .bento-orbit {
            position: absolute;
            top: 40px;
            right: 48px;
            width: 120px;
            height: 120px;
            opacity: .9;
        }

        .bento-small-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .bento-card {
            background: #F5F8FC;
            border: 1px solid #E8EEF6;
            border-radius: 22px;
            padding: 32px 28px;
            transition: .3s;
        }

        .bento-card:hover {
            background: #fff;
            box-shadow: 0 18px 44px rgba(0, 0, 0, .07);
            transform: translateY(-3px);
        }

        .bento-ico {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .bento-ico svg {
            width: 24px;
            height: 24px;
            stroke-width: 1.7;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .bento-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .bento-card p {
            font-size: 14px;
            color: #6B7280;
            line-height: 1.55;
        }

        /* ---- WARIANT B — KARUZELA (scroll-snap) ---- */
        .carousel-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
        }

        .carousel-nav {
            display: flex;
            gap: 10px;
        }

        .carousel-nav button {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid #E2E8F0;
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            transition: .2s;
        }

        .carousel-nav button:hover {
            border-color: #0063CC;
            color: #0063CC;
        }

        .carousel-nav svg {
            width: 20px;
            height: 20px;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .carousel {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 8px 0 24px;
            scrollbar-width: none;
        }

        .carousel::-webkit-scrollbar {
            display: none;
        }

        .carousel-card {
            scroll-snap-align: start;
            flex: 0 0 360px;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #E8EEF6;
            background: #fff;
            transition: .3s;
        }

        .carousel-card:hover {
            box-shadow: 0 24px 56px rgba(0, 0, 0, .10);
        }

        .carousel-card .cc-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .carousel-card .cc-body {
            padding: 28px;
        }

        .carousel-card .cc-tag {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #0063CC;
        }

        .carousel-card h3 {
            font-size: 21px;
            font-weight: 700;
            letter-spacing: -0.4px;
            margin: 10px 0 10px;
        }

        .carousel-card p {
            font-size: 15px;
            color: #6B7280;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .carousel-card .cc-link {
            font-size: 14px;
            font-weight: 600;
            color: #0063CC;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ---- WARIANT C — TABELA CEN (plany) ---- */
        .pricing {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .plan {
            border: 1px solid #E8EEF6;
            border-radius: 24px;
            padding: 40px 34px;
            background: #fff;
            display: flex;
            flex-direction: column;
            transition: .3s;
        }

        .plan:hover {
            box-shadow: 0 22px 52px rgba(0, 0, 0, .07);
            transform: translateY(-4px);
        }

        .plan.featured {
            border: 2px solid #0063CC;
            box-shadow: 0 22px 52px rgba(0, 99, 204, .12);
            position: relative;
        }

        .plan.featured::before {
            content: 'Najczęściej wybierany';
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: #0063CC;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .plan .pname {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: #0063CC;
            margin-bottom: 8px;
        }

        .plan .psize {
            font-size: 14px;
            color: #9AA0A8;
            margin-bottom: 24px;
        }

        .plan .pprice {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1.5px;
            line-height: 1;
        }

        .plan .pprice small {
            font-size: 16px;
            font-weight: 600;
            color: #9AA0A8;
            letter-spacing: 0;
        }

        .plan .pfrom {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .5px;
            color: #9AA0A8;
            margin-bottom: 6px;
        }

        .plan ul {
            list-style: none;
            margin: 28px 0 32px;
            display: grid;
            gap: 13px;
        }

        .plan li {
            position: relative;
            padding-left: 30px;
            font-size: 15px;
            color: #3D434B;
            line-height: 1.5;
        }

        .plan li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 1px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(0, 99, 204, .10) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230063CC' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
        }

        .plan .pbtn {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            border: 1px solid #0063CC;
            color: #0063CC;
            transition: .2s;
        }

        .plan.featured .pbtn {
            background: #0063CC;
            color: #fff;
        }

        .plan .pbtn:hover {
            background: #0063CC;
            color: #fff;
        }

        .pricing-note {
            text-align: center;
            font-size: 13px;
            color: #9AA0A8;
            margin-top: 24px;
        }

        /* ---- WARIANT D — TIMELINE (proces) ---- */
        .timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 24px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 26px;
            left: 7%;
            right: 7%;
            height: 2px;
            background: linear-gradient(90deg, #0063CC, #cfe0f5);
        }

        .tl-step {
            text-align: center;
            position: relative;
        }

        .tl-num {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #0063CC;
            color: #0063CC;
            font-weight: 800;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            position: relative;
            z-index: 1;
        }

        .tl-step:first-child .tl-num,
        .tl-step.done .tl-num {
            background: #0063CC;
            color: #fff;
        }

        .tl-step h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .tl-step p {
            font-size: 14px;
            color: #6B7280;
            line-height: 1.55;
        }

        /* ---- WARIANT E — FULL-BLEED (sekcja pełnoekranowa) ---- */
        .fullbleed {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            color: #fff;
            overflow: hidden;
            padding: 96px 0; /* oddech góra/dół — treść nie dotyka krawędzi zdjęcia gdy przerośnie min-height */
        }

        .fullbleed-bg {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(90deg, rgba(8, 12, 20, .86), rgba(8, 12, 20, .45) 60%, rgba(8, 12, 20, .2)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1700&q=72');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .fullbleed .container {
            position: relative;
            z-index: 1;
        }

        .fullbleed-eyebrow {
            display: inline-block;
            padding: 6px 16px;
            border: 1px solid rgba(255, 255, 255, .3);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .fullbleed h2 {
            font-size: clamp(38px, 5.5vw, 66px);
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.04;
            max-width: 680px;
            margin-bottom: 22px;
        }

        .fullbleed-lead {
            font-size: 20px;
            line-height: 1.6;
            max-width: 520px;
            opacity: .85;
            margin-bottom: 36px;
        }

        .fullbleed-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .fullbleed-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 34px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .fullbleed-btn--solid {
            background: #fff;
            color: #000000;
        }

        .fullbleed-btn--solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
        }

        .fullbleed-btn--ghost {
            border: 1px solid rgba(255, 255, 255, .35);
            color: #fff;
        }

        .fullbleed-btn--ghost:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, .08);
        }

        /* ---- RESPONSYWNOŚĆ nowych sekcji ---- */
        @media (max-width: 900px) {
            .bento,
            .pricing {
                grid-template-columns: 1fr;
            }
            .bento-small-row {
                grid-template-columns: 1fr 1fr;
            }
            .timeline {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .timeline::before {
                display: none;
            }
            .carousel-card {
                flex-basis: 300px;
            }
        }

        @media (max-width: 540px) {
            .bento-small-row {
                grid-template-columns: 1fr;
            }
            .bento-big {
                padding: 36px 28px;
                min-height: 340px;
            }
            .fullbleed {
                min-height: 480px;
                padding: 72px 0;
            }
            .fullbleed-actions {
                flex-direction: column;
            }
            .fullbleed-btn {
                justify-content: center;
            }
        }

        /* ==== PODSTRONY USŁUGOWE (pillar + combo) ==== */
        .hero-risk-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            font-size: 14px;
            color: #6B7280;
        }

        .hero-risk-note .icon {
            width: 16px;
            height: 16px;
            stroke: #0063CC;
            flex-shrink: 0;
        }

        .reviews-grid--duo {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            max-width: 960px;
            margin: 0 auto;
        }

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

        /* ============================================
           FLOATING AUDYT BUTTON + MODAL (DRY — inject z main.js)
           ============================================ */
        /* Pulsujące kółko (chat) — prawy dolny róg, subtelne */
        .fab-audit {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 9100; /* nad mobile-cta-bar(90), pod modalem; widoczne obok cookie(9000) */
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            background: #0063CC;
            color: #FFFFFF;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 28px rgba(0, 99, 204, 0.34);
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
        }
        .fab-audit svg {
            width: 26px;
            height: 26px;
            stroke: #FFFFFF;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none;
        }
        /* Delikatny puls — pierścień rozchodzący się z kółka */
        .fab-audit::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #0063CC;
            opacity: 0.45;
            z-index: -1;
            animation: fabPulse 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }
        .fab-audit:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 16px 34px rgba(0, 99, 204, 0.42);
        }
        .fab-audit:focus-visible {
            outline: 3px solid #002E63;
            outline-offset: 3px;
        }
        @keyframes fabPulse {
            0%   { transform: scale(1);    opacity: 0.45; }
            70%  { transform: scale(1.9);  opacity: 0; }
            100% { transform: scale(1.9);  opacity: 0; }
        }
        /* na mobile podnieś nad sticky CTA bar (≤768px) żeby się nie nakładały */
        @media (max-width: 768px) {
            .fab-audit {
                right: 16px;
                bottom: calc(76px + env(safe-area-inset-bottom, 0px));
                width: 54px;
                height: 54px;
            }
            .fab-audit svg { width: 23px; height: 23px; }
        }

        /* Overlay + modal */
        .fab-modal {
            position: fixed;
            inset: 0;
            z-index: 9500; /* nad cookie banner (9000) */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(0, 14, 36, 0.55);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .fab-modal.open {
            opacity: 1;
            visibility: visible;
        }
        .fab-modal-card {
            position: relative;
            width: 100%;
            max-width: 420px;
            background: #FFFFFF;
            border-radius: 18px;
            padding: 30px 26px 26px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.28);
            transform: translateY(16px) scale(0.98);
            transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
            max-height: calc(100dvh - 40px);
            overflow-y: auto;
        }
        .fab-modal.open .fab-modal-card {
            transform: translateY(0) scale(1);
        }
        .fab-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 38px;
            height: 38px;
            border: none;
            background: #F3F4F6;
            border-radius: 50%;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #374151;
            transition: background 0.2s ease;
        }
        .fab-modal-close:hover { background: #E5E7EB; }
        .fab-modal-close:focus-visible { outline: 2px solid #0063CC; outline-offset: 2px; }
        .fab-modal-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
        .fab-modal-eyebrow {
            display: inline-flex; align-items: center; gap: 7px;
            font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
            text-transform: uppercase; color: #0063CC; margin-bottom: 8px;
        }
        .fab-modal-eyebrow svg { width: 16px; height: 16px; stroke: #0063CC; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .fab-modal-card h3 {
            font-size: 22px; font-weight: 700; color: #000000;
            letter-spacing: -0.3px; margin: 0 0 6px;
            line-height: 1.25; padding-bottom: 0.04em; /* ogonki ąęłż */
        }
        .fab-modal-card p.fab-modal-sub {
            font-size: 14px; color: #555B63; margin: 0 0 20px; line-height: 1.5;
        }
        .fab-modal .form-group { margin-bottom: 14px; }
        .fab-modal .form-group input {
            line-height: 1.5; min-height: 48px; /* ogonki w inputach */
        }
        .fab-modal .form-consent { margin: 4px 0 16px; }
        .fab-modal .btn-submit { margin-top: 0; }
        @media (max-width: 480px) {
            .fab-modal-card { padding: 26px 20px 22px; border-radius: 16px; }
            .fab-modal-card h3 { font-size: 20px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .fab-audit::after { animation: none; opacity: 0; }
            .fab-audit, .fab-modal, .fab-modal-card { transition: none; }
        }

/* Footer: logo graficzne zamiast tekstowego (23.06) */
img.footer-brand-logo { height: 42px; width: auto; display: block; margin-bottom: 18px; }
.footer-logo img { height: 30px; width: auto; display: block; }
