        /* ==========================================================================
           ZMIENNE GLOBALNE I DESIGN SYSTEM (Avoltaic)
           ========================================================================== */
        :root {
            --av-orange: #059669;
            --av-cta: #F5A623;
            --av-gold: #F5A623;
            --av-blue: #1A73E8;
            --av-green: #4CAF50;

            --av-dark: #0A0D14;
            --av-surface: #131824;
            --av-text-main: #FFFFFF;
            --av-text-dim: #A0ABC0;
            --av-border: rgba(255, 255, 255, 0.1);

            --font-head: 'Space Grotesk', sans-serif;
            --font-body: 'Outfit', sans-serif;

            --ease: cubic-bezier(0.22, 1, 0.36, 1);

            /* Design tokens: border-radius */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;

            /* Design tokens: spacing (8px grid) */
            --space-1: 8px;
            --space-2: 16px;
            --space-3: 24px;
            --space-4: 32px;
            --space-6: 48px;
            --space-8: 64px;
            --space-12: 96px;
        }

        /* ===== PREFERS-REDUCED-MOTION ===== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .slide-bg { transition: none !important; }
            .brands-track { animation: none !important; }
        }

        /* ===== SKIP-TO-CONTENT ===== */
        .skip-to-content {
            position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
            background: var(--av-cta); color: #000; padding: 12px 24px; border-radius: var(--radius-md);
            font-family: var(--font-head); font-weight: 700; font-size: 14px; z-index: 10000;
            transition: top 0.2s;
        }
        .skip-to-content:focus { top: 12px; }

        body {
            margin: 0; padding: 0;
            background-color: var(--av-dark);
            font-family: var(--font-body);
            color: var(--av-text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        * { box-sizing: border-box; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        h1, h2, h3, h4, h5 { font-family: var(--font-head); margin-top: 0; }

        .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

        /* ==========================================================================
           SYSTEM PODSTRON (PAGES)
           ========================================================================== */
        .page-container {
            display: none;
            opacity: 0;
            animation: fadeIn 0.6s forwards;
        }
        .page-container.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero dla podstron */
        .subpage-hero {
            padding: 160px 24px 80px;
            background: linear-gradient(to bottom, rgba(26, 115, 232, 0.1), var(--av-dark));
            text-align: center;
            border-bottom: 1px solid var(--av-border);
        }
        .subpage-hero h1 { font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem); color: var(--av-orange); margin-bottom: 16px; }
        .subpage-hero p { font-size: 18px; color: var(--av-text-dim); max-width: 700px; margin: 0 auto; }

        /* ==========================================================================
           NAWIGACJA
           ========================================================================== */
        #ev-header {
            position: fixed; top: 0; left: 0; width: 100%; height: 90px;
            z-index: 999; transition: all 0.4s var(--ease);
            border-bottom: 1px solid transparent;
            background: rgba(10, 13, 20, 0.7); backdrop-filter: blur(10px);
        }
        #ev-header.scrolled {
            height: 70px; background: rgba(10, 13, 20, 0.95);
            border-bottom: 1px solid var(--av-border);
        }

        .ev-header-inner {
            max-width: 1440px; height: 100%; margin: 0 auto; padding: 0 32px;
            display: flex; justify-content: space-between; align-items: center;
        }

        .ev-logo { flex-shrink: 0; }
        .ev-logo img { height: 52px; width: auto; transition: 0.4s var(--ease); cursor: pointer;}
        #ev-header.scrolled .ev-logo img { height: 42px; }

        .ev-nav-desktop {
            display: flex; gap: 6px; height: 100%; align-items: center;
            flex: 1; justify-content: center;
        }

        .ev-nav-link {
            font-family: var(--font-head); font-size: 13px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.06em; color: var(--av-text-dim);
            position: relative; transition: color 0.2s; padding: 24px 10px; cursor: pointer;
            display: flex; align-items: center; gap: 5px; white-space: nowrap;
        }
        .ev-nav-link.active-link { color: var(--av-orange); }
        .ev-nav-link:hover { color: #FFFFFF; }
        .ev-nav-link::after {
            content: ''; position: absolute; bottom: 20px; left: 10px; right: 10px;
            height: 2px; background: var(--av-orange);
            transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease);
        }
        .ev-nav-link:hover::after, .ev-nav-link.active-link::after { transform: scaleX(1); transform-origin: left; }

        /* Dropdown Menu */
        .ev-dropdown-parent { position: relative; height: 100%; display: flex; align-items: center; cursor: pointer; }
        .ev-chevron { font-size: 10px; transition: transform 0.3s; display: inline-block; }
        .ev-dropdown-parent:hover .ev-chevron { transform: rotate(180deg); }
        .ev-dropdown-menu {
            position: absolute; top: 70px; left: 50%; transform: translateX(-50%) translateY(10px);
            background: rgba(10, 13, 20, 0.95); backdrop-filter: blur(12px); border: 1px solid var(--av-border);
            padding: 12px; border-radius: 12px; min-width: 260px; opacity: 0; visibility: hidden; transition: all 0.2s ease-in-out;
            display: flex; flex-direction: column; gap: 4px; z-index: 1000;
        }
        .ev-dropdown-parent:hover .ev-dropdown-menu {
            opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
        }
        .ev-dropdown-item {
            display: block; padding: 12px 16px; color: var(--av-text-dim); font-size: 13px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
            border-radius: 8px; transition: 0.2s; white-space: nowrap; cursor: pointer;
        }
        .ev-dropdown-item:hover { background: rgba(16,185,129,0.1); color: var(--av-orange); }

        .ev-header-cta-wrapper { flex-shrink: 0; }
        .btn-header-outline {
            border: 1px solid var(--av-orange); color: var(--av-orange); padding: 9px 20px; border-radius: 8px;
            font-family: var(--font-head); font-weight: 600; font-size: 13px; transition: 0.3s var(--ease);
            display: inline-flex; align-items: center; gap: 8px; cursor: pointer; white-space: nowrap;
        }
        .btn-header-outline:hover { background: var(--av-cta); color: #000; }

        .ev-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
        .ev-hamburger span { display: block; width: 24px; height: 2px; background: #FFFFFF; margin: 5px 0; transition: 0.3s; transform-origin: center; }
        .ev-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .ev-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .ev-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Ukryj tekst CTA na mniejszych desktopach, zostaw ikonę */
        @media (max-width: 1200px) and (min-width: 992px) {
            .ev-nav-link { padding: 24px 7px; font-size: 12px; letter-spacing: 0.04em; }
            .ev-header-inner { padding: 0 20px; }
        }

        /* MOBILE MENU */
        .ev-mobile-menu {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            background: rgba(10,13,20,0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            z-index: 2000; display: flex; flex-direction: column; justify-content: center; padding: 40px;
            opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
        }
        .ev-mobile-menu.active { opacity: 1; pointer-events: all; }
        .ev-close-menu {
            position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer;
            width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
        }
        .ev-close-menu svg { width: 28px; height: 28px; stroke: white; stroke-width: 2; }
        .ev-mobile-nav { display: flex; flex-direction: column; gap: 20px; text-align: center; }
        .ev-mobile-link { font-family: var(--font-head); font-size: 20px; font-weight: 500; color: #FFFFFF; cursor: pointer;}

        .ev-mobile-accordion-content {
            max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
            display: flex; flex-direction: column; gap: 16px;
            background: rgba(255,255,255,0.03); border-radius: 8px; margin-top: 10px;
        }
        .ev-mobile-accordion-trigger.open + .ev-mobile-accordion-content { max-height: 250px; padding: 16px; }

        @media (max-width: 991px) {
            .ev-nav-desktop, .ev-header-cta-wrapper { display: none; }
            .ev-header-inner { width: 100%; justify-content: space-between; }
            .ev-hamburger { display: block; }
        }

        /* ==========================================================================
           HERO SLIDER (Home Page)
           ========================================================================== */
        #hero-slider { position: relative; width: 100%; height: 100vh; overflow: hidden; background: var(--av-dark); }
        .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); z-index: 1; }
        .slide.active { opacity: 1; z-index: 2; }
        .slide-bg { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 6s ease-out; }
        .slide.active .slide-bg { transform: scale(1); }

        .slide-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(10,13,20,0.9) 0%, rgba(10,13,20,0.4) 50%, transparent 100%);
        }

        .slide-content {
            position: absolute; top: 50%; left: 10%; transform: translateY(-40%);
            max-width: 700px; opacity: 0; transition: all 0.8s var(--ease) 0.3s;
        }
        .slide.active .slide-content { transform: translateY(-50%); opacity: 1; }

        .slide-badge {
            display: inline-block; padding: 6px 16px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
            border-left: 3px solid var(--av-orange); font-family: var(--font-head); font-weight: 600; font-size: 14px;
            letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
        }
        .slide-badge.blue { border-color: var(--av-blue); }
        .slide-badge.green { border-color: var(--av-green); }

        .slide-content h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4rem); line-height: 1.1; margin-bottom: 24px; font-weight: 800; }
        .slide-content p { font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem); color: var(--av-text-dim); margin-bottom: 40px; }

        .slider-nav { position: absolute; bottom: 40px; left: 10%; z-index: 10; display: flex; gap: 12px; }
        .dot { width: 40px; height: 4px; background: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s; }
        .dot.active { background: var(--av-orange); width: 80px; }

        @media (max-width: 991px) {
            .slide-content { left: 5%; right: 5%; text-align: left; }
            .slide-overlay { background: linear-gradient(to top, rgba(10,13,20,1) 0%, rgba(10,13,20,0.4) 100%); }
            .slider-nav { left: 5%; bottom: 30px; }
        }

        /* ==========================================================================
           ELEMENTY STRON
           ========================================================================== */

        /* Pill Divider */
        .ev-divider-section { padding: 80px 0; display: flex; justify-content: center; }
        .ev-divider-pill {
            background: var(--av-surface); border: 1px solid var(--av-border); border-radius: 999px;
            padding: 16px 32px; display: inline-flex; align-items: center; gap: 24px;
        }
        .ev-div-text { font-weight: 500; }
        .ev-div-cta { color: var(--av-blue); font-weight: 700; font-family: var(--font-head); display: flex; align-items: center; gap: 8px; cursor: pointer; }

        /* Kafelki "Dla Kogo" */
        .ev-ind-section { padding: 40px 0 120px; }
        .ev-ind-header { margin-bottom: 80px; max-width: 720px; }
        .ev-ind-h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); margin-bottom: 24px; }
        .ev-ind-intro { color: var(--av-text-dim); font-size: 18px; }
        .ev-ind-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; row-gap: 40px;}
        .ev-ind-item {
            border-bottom: padding: 48px 24px 48px 32px; position: relative;
            display: flex; flex-direction: column; justify-content: center; transition: 0.4s var(--ease);
            overflow: hidden; z-index: 1; background-size: cover; background-position: center; border-radius: 12px;
        }
        .ev-ind-item::before {
            content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,13,20,0.95), rgba(10,13,20,0.7));
            transition: 0.4s var(--ease); z-index: -1;
        }
        .ev-ind-content-wrapper { position: relative; z-index: 2; }
        .ev-ind-title { font-family: var(--font-head); font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--av-orange); margin-bottom: 12px; }
        .ev-ind-desc { color: #FFF; margin-top: 0; font-size: 16px; }

        /* ==========================================================================
           NOWY WYGLĄD PODSTRON USŁUG
           ========================================================================== */
        .srv-hero {
            padding: 180px 24px 100px;
            text-align: center;
            background-size: cover;
            background-position: center;
            position: relative;
            border-bottom: 1px solid var(--av-orange);
        }
        .srv-hero::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(10,13,20,0.7) 0%, rgba(10,13,20,1) 100%);
        }
        .srv-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
        .srv-hero h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem); margin-bottom: 24px; color: #FFF; }
        .srv-hero p { font-size: 18px; color: var(--av-text-dim); line-height: 1.6; }
        .srv-hero p strong { color: var(--av-orange); font-weight: 600; }

        .srv-section { padding: 100px 24px; max-width: 1240px; margin: 0 auto; }
        .srv-grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

        .srv-label { font-size: 12px; font-family: var(--font-head); font-weight: 700; color: var(--av-text-dim); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; display: block; }
        .srv-title { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); color: #FFF; margin-bottom: 24px; line-height: 1.2; }
        .srv-desc { font-size: 16px; color: var(--av-text-dim); margin-bottom: 40px; }

        .srv-tags { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px;}
        .srv-tag { font-size: 13px; color: #FFF; display: flex; align-items: center; gap: 8px; }
        .srv-tag::before { content: ''; width: 6px; height: 6px; background: var(--av-orange); border-radius: 50%; }

        .srv-cards { display: flex; flex-direction: column; gap: 16px; }
        .srv-card { background: var(--av-surface); border: 1px solid var(--av-border); padding: 30px; border-radius: 12px; transition: 0.3s; }
        .srv-card:hover { border-color: var(--av-orange); transform: scale(1.02); box-shadow: 0 4px 20px rgba(16,185,129,0.08); }
        .srv-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
        .srv-card-icon { width: 24px; height: 24px; stroke: var(--av-text-dim); fill: none; stroke-width: 2;}
        .srv-card h3 { font-size: 20px; color: #FFF; margin: 0; }
        .srv-card p { font-size: 14px; color: var(--av-text-dim); margin: 0; line-height: 1.5; }

        /* Tabs Section (Dla kogo) */
        .srv-tabs-container { display: grid; grid-template-columns: 350px 1fr; gap: 60px; margin-top: 40px; }
        .srv-tabs-list { display: flex; flex-direction: column; gap: 8px; }
        .srv-tab-btn {
            background: transparent; border: none; text-align: left; padding: 16px 20px;
            font-family: var(--font-body); font-size: 15px; color: var(--av-text-dim);
            border-radius: 8px; cursor: pointer; transition: 0.3s;
            display: flex; align-items: center; gap: 12px; border-left: 2px solid transparent;
        }
        .srv-tab-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0;}
        .srv-tab-btn:hover { background: rgba(255,255,255,0.03); color: #FFF; }
        .srv-tab-btn.active { background: var(--av-surface); color: #FFF; border-left-color: var(--av-orange); }

        .srv-tab-content { background: var(--av-surface); border: 1px solid var(--av-border); padding: 40px; border-radius: 16px; display: none; animation: fadeIn 0.4s; }
        .srv-tab-content.active { display: block; }
        .srv-tab-content h3 { font-size: 24px; color: #FFF; margin-bottom: 16px; font-family: var(--font-head); font-weight: 700;}
        .srv-tab-content > p { font-size: 15px; color: var(--av-text-dim); margin-bottom: 24px; line-height: 1.6;}
        .srv-tab-bullets { list-style: none; padding: 0; margin: 0 0 32px 0; }
        .srv-tab-bullets li { position: relative; padding-left: 20px; font-size: 14px; color: #FFF; margin-bottom: 12px; }
        .srv-tab-bullets li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--av-orange); border-radius: 50%; }

        .srv-tab-pills { display: flex; gap: 12px; flex-wrap: wrap; }
        .srv-tab-pill { background: rgba(255,255,255,0.05); padding: 6px 16px; border-radius: 20px; font-size: 12px; color: var(--av-text-dim); border: 1px solid rgba(255,255,255,0.05);}

        @media (max-width: 991px) {
            .srv-grid-2, .srv-tabs-container { grid-template-columns: 1fr; gap: 40px;}
        }

        /* ---------- Realizacje Preview (podstrony usług) ---------- */
        .srv-real-preview { margin-top: 100px; }
        .srv-real-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .srv-real-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            border: 1px solid var(--av-border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .srv-real-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.4);
        }
        .srv-real-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .srv-real-card:hover img { transform: scale(1.05); }
        .srv-real-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
            pointer-events: none;
        }
        .srv-real-card-overlay h4 {
            font-size: 15px;
            font-family: var(--font-head);
            font-weight: 600;
            color: #FFF;
            margin: 0 0 4px 0;
        }
        .srv-real-card-overlay span {
            font-size: 12px;
            color: var(--av-text-dim);
        }
        .srv-real-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 32px;
            font-size: 15px;
            font-weight: 600;
            font-family: var(--font-head);
            color: var(--av-cta);
            text-decoration: none;
            transition: gap 0.3s ease;
        }
        .srv-real-more:hover { gap: 14px; }
        .srv-real-more svg { transition: transform 0.3s ease; }
        .srv-real-more:hover svg { transform: translateX(4px); }
        @media (max-width: 768px) {
            .srv-real-grid { grid-template-columns: 1fr; gap: 16px; }
        }

        /* ==========================================================================
           REALIZACJE (Nowy Grid, Filtry i Slider w Kartach)
           ========================================================================== */
        .realizations-section { padding: 60px 0; }

        /* Oznaczenie sekcji "Ukończone realizacje" */
        .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
        .section-label span {
            font-size: 13px; font-family: var(--font-head); font-weight: 600;
            color: var(--av-orange); letter-spacing: 1px; text-transform: uppercase;
            background: rgba(255,255,255,0.05); padding: 6px 16px; border-radius: 20px;
        }
        .section-label .line { flex-grow: 1; height: 1px; background: var(--av-border); }

        /* Filtry */
        .filters-wrap { display: flex; flex-direction: column; gap: 16px; margin-bottom: 50px; }
        .filter-row { display: flex; flex-wrap: wrap; gap: 12px; }
        .filter-btn {
            background: rgba(255,255,255,0.05); border: 1px solid transparent;
            color: var(--av-text-dim); padding: 8px 20px; border-radius: 20px;
            font-family: var(--font-body); font-size: 14px; font-weight: 500;
            cursor: pointer; transition: 0.3s; outline: none;
        }
        .filter-btn:hover { background: rgba(255,255,255,0.1); color: #FFF; }
        .filter-btn.active {
            background: rgba(16,185,129,0.1); border-color: var(--av-orange); color: var(--av-orange);
        }

        /* Karty Realizacji */
        .realizations-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr)); gap: 30px;
        }
        .real-card {
            background: var(--av-surface); border: 1px solid var(--av-border);
            border-radius: 16px; overflow: hidden; transition: 0.3s var(--ease);
            display: flex; flex-direction: column;
        }
        .real-card:hover { border-color: var(--av-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

        /* Wewnętrzny slider w karcie */
        .card-slider { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #000; }
        .card-slides { width: 100%; height: 100%; position: relative; }
        .card-slides img {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: cover; opacity: 0; transition: opacity 0.5s ease;
        }
        .card-slides img.active { opacity: 1; z-index: 2; }

        /* Strzałki slidera w karcie */
        .card-arrow {
            position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
            background: rgba(10, 13, 20, 0.6); color: #FFF; border: none;
            width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: 0.3s; backdrop-filter: blur(4px); font-size: 14px;
        }
        .card-arrow:hover { background: var(--av-orange); color: #000; }
        .card-arrow.prev { left: 10px; }
        .card-arrow.next { right: 10px; }

        /* Kropki slidera w karcie */
        .card-dots {
            position: absolute; bottom: 10px; left: 0; width: 100%; z-index: 10;
            display: flex; justify-content: center; gap: 6px;
        }
        .card-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: 0.3s; }
        .card-dot.active { background: var(--av-orange); width: 12px; border-radius: 4px; }

        /* Informacje w karcie */
        .card-info { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
        .card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        .card-cat {
            background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: 20px;
            font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--av-text-dim);
        }
        .card-year { font-size: 12px; color: var(--av-text-dim); }
        .card-title { font-size: 20px; font-weight: 600; color: #FFF; margin-bottom: 16px; line-height: 1.4; }

        /* Akordeon w karcie */
        .card-toggle {
            display: flex; justify-content: center; cursor: pointer; padding: 10px 0;
            color: var(--av-orange); transition: 0.3s; border-top: 1px solid transparent;
        }
        .card-toggle svg { width: 24px; height: 24px; transition: transform 0.4s var(--ease); }
        .real-card.expanded .card-toggle svg { transform: rotate(180deg); }

        .card-details {
            max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease);
        }
        .real-card.expanded .card-details { max-height: 300px; border-top: 1px solid var(--av-border); padding-top: 16px; }

        .card-details ul { padding: 0; margin: 0 0 16px 0; list-style: none; }
        .card-details li {
            position: relative; padding-left: 20px; font-size: 14px;
            color: var(--av-text-dim); margin-bottom: 8px; line-height: 1.5;
        }
        .card-details li::before {
            content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px;
            background: var(--av-orange); border-radius: 50%;
        }

        /* Sekcja Referencji - Skany */
        .ref-scan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; padding: 80px 0; }
        .ref-scan-item {
            background: var(--av-surface); padding: 15px; border-radius: 12px;
            border: 1px solid var(--av-border); cursor: pointer; transition: 0.4s var(--ease);
            aspect-ratio: 1 / 1.41; overflow: hidden; position: relative;
        }
        .ref-scan-item:hover {
            transform: translateY(-10px); border-color: var(--av-orange);
            box-shadow: 0 15px 35px rgba(16,185,129,0.15);
        }
        .ref-scan-img {
            width: 100%; height: 100%; object-fit: cover; object-position: top;
            border-radius: 6px; filter: grayscale(40%); transition: 0.4s var(--ease);
        }
        .ref-scan-item:hover .ref-scan-img { filter: grayscale(0%); }
        .ref-zoom-icon {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5);
            background: rgba(16,185,129,0.9); width: 60px; height: 60px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: #000;
            opacity: 0; transition: 0.4s var(--ease); pointer-events: none;
        }
        .ref-scan-item:hover .ref-zoom-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }

        /* Lightbox dla Skryptów */
        .lightbox {
            position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 10000;
            display: flex; justify-content: center; align-items: center;
            opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(5px);
        }
        .lightbox.active { opacity: 1; pointer-events: all; }
        .lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
        .lightbox-close {
            position: absolute; top: 30px; right: 30px; color: #fff; font-size: 50px;
            cursor: pointer; line-height: 1; font-weight: 300; transition: 0.3s;
        }
        .lightbox-close:hover { color: var(--av-orange); transform: scale(1.1); }

        /* Sekcja Opinii (Google Reviews) */
        .reviews-summary { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; padding: 40px 0 60px; border-bottom: 1px solid var(--av-border); margin-bottom: 50px; }
        .reviews-score { text-align: center; }
        .reviews-score-number { font-family: var(--font-head); font-size: 56px; font-weight: 800; color: #FFF; line-height: 1; }
        .reviews-stars { color: var(--av-gold); font-size: 22px; margin: 8px 0; letter-spacing: 2px; }
        .reviews-count { font-size: 14px; color: var(--av-text-dim); }
        .reviews-google-badge { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--av-border); padding: 16px 28px; border-radius: 12px; text-decoration: none; transition: all 0.3s var(--ease); }
        .reviews-google-badge:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
        .reviews-google-badge svg { width: 28px; height: 28px; }
        .reviews-google-badge span { color: #FFF; font-weight: 600; font-size: 15px; }
        .reviews-google-badge small { display: block; color: var(--av-text-dim); font-size: 12px; font-weight: 400; }

        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
        .testimonial-card { background: var(--av-surface); padding: 32px 28px; border-radius: 16px; position: relative; border: 1px solid var(--av-border); transition: all 0.3s var(--ease); }
        .testimonial-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-3px); }
        .review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
        .review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--av-orange), #e8940c); display: flex; align-items: center; justify-content: center; color: #FFF; font-weight: 700; font-size: 16px; font-family: var(--font-head); flex-shrink: 0; }
        .review-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        .review-meta { flex: 1; }
        .testimonial-author { font-family: var(--font-head); font-weight: 700; color: #FFF; font-size: 16px; line-height: 1.3; }
        .review-time { font-size: 12px; color: var(--av-text-dim); margin-top: 2px; }
        .review-stars { color: var(--av-gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
        .testimonial-text { font-size: 15px; color: var(--av-text-dim); line-height: 1.7; margin: 0; }
        .review-google-icon { margin-left: auto; opacity: 0.4; transition: opacity 0.3s; }
        .testimonial-card:hover .review-google-icon { opacity: 0.8; }
        .reviews-loading { text-align: center; padding: 60px 0; color: var(--av-text-dim); }
        .reviews-loading svg { animation: formSpin 1s linear infinite; }

        /* ==========================================================================
           OBSZAR DZIAŁANIA (MAPA Zewnętrzna SVG)
           ========================================================================== */
        .area-section { padding: 40px 24px 120px; }
        .area-card {
            background: linear-gradient(145deg, var(--av-surface) 0%, #0A0D14 100%);
            border: 1px solid var(--av-border);
            border-radius: 24px;
            padding: 60px;
            display: flex;
            flex-direction: column;
        }
        .area-title { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: #FFF; margin-bottom: 40px; }

        .area-map-container {
            background: #07090E; border-radius: 16px; padding: 40px;
            display: flex; justify-content: center; align-items: center;
            margin-bottom: 50px; border: 1px solid var(--av-border); position: relative;
            overflow: hidden;
        }

        .map-wrapper { position: relative; width: 100%; max-width: 580px; aspect-ratio: 620/560; }

        .map-marker-container { position: absolute; transform: translate(-50%, -50%); display: flex; justify-content: center; align-items: center; }
        .map-marker-dot { width: 10px; height: 10px; background-color: #FFF; border: 2px solid var(--av-orange); border-radius: 50%; position: relative; z-index: 2; box-shadow: 0 0 10px var(--av-orange); }
        .map-marker-pulse { position: absolute; width: 30px; height: 30px; background-color: var(--av-orange); border-radius: 50%; z-index: 1; opacity: 0; animation: mapPulse 2s infinite cubic-bezier(0.25, 1, 0.5, 1); }
        @keyframes mapPulse { 0% { transform: scale(0.3); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }
        .map-glow { position: absolute; width: 40%; height: 50%; background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 60%); pointer-events: none; z-index: 0; transform: translate(-50%, -50%); }

        .area-cities { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
        .city-pill { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 12px 24px; border-radius: 30px; color: #E2E8F0; font-size: 15px; font-weight: 500; transition: 0.3s; cursor: default; }
        .city-pill:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: #FFF; transform: translateY(-2px); }

        .area-desc { font-size: 16px; color: var(--av-text-dim); line-height: 1.7; max-width: 800px; margin: 0; border-top: 1px solid var(--av-border); padding-top: 30px;}

        @media (max-width: 991px) {
            .area-section { padding: 40px 0 80px; }
            .area-card { padding: 30px 20px; border-radius: 16px; border: none; background: var(--av-surface); }
            .area-title { font-size: 28px; margin-bottom: 30px; }
            .area-map-container { padding: 20px; }
            .city-pill { padding: 10px 18px; font-size: 14px; }
        }

        /* PROCES (Oryginalny Timeline z Home) */
        #ev-process-section { padding: 120px 0; background: var(--av-surface); }
        .ev-proc-header { margin-bottom: 40px; max-width: 720px; }
        .ev-proc-desktop-grid { display: none; }
        @media (min-width: 992px) {
            .ev-proc-desktop-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
            .ev-proc-timeline-wrapper { position: relative; padding-left: 20px; }
            .ev-proc-line { position: absolute; left: 29px; top: 20px; bottom: 20px; width: 1px; background: var(--av-border); }
            .ev-proc-progress { position: absolute; left: 29px; top: 20px; width: 1px; background: var(--av-green); height: 0%; transition: 0.5s ease; }
            .ev-proc-steps { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 2; }
            .ev-proc-step { display: flex; align-items: center; gap: 24px; cursor: pointer; opacity: 0.5; transition: 0.3s; }
            .ev-proc-step.active { opacity: 1; }
            .ev-proc-marker { width: 18px; height: 18px; background: var(--av-dark); border: 2px solid var(--av-text-dim); transform: rotate(45deg); transition: 0.3s; position: relative; }
            .ev-proc-step.active .ev-proc-marker { background: var(--av-green); border-color: var(--av-green); box-shadow: 0 0 15px rgba(76,175,80,0.5); }
            .ev-proc-step.completed .ev-proc-marker { border-color: var(--av-green); background: transparent; }
            .ev-proc-step-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; }
            .ev-proc-card-container { position: relative; overflow: hidden; }
            .ev-proc-card { background: var(--av-dark); border: 1px solid var(--av-border); border-radius: 16px; padding: 28px 32px; position: absolute; top: 0; left: 0; width: 100%; box-sizing: border-box; opacity: 0; transform: translateX(20px); transition: 0.4s var(--ease); pointer-events: none; }
            .ev-proc-card.active { opacity: 1; transform: translateX(0); pointer-events: all; position: relative; }
            .ev-card-h3 { font-family: var(--font-head); font-size: 24px; margin-bottom: 12px; color: var(--av-green); }
        }

        /* DLACZEGO MY (Suwak drag) */
        #ev-why-us { padding: 120px 0; overflow: hidden; }
        .ev-w-h3 { font-size: 40px; margin-bottom: 60px; max-width: 700px; }
        .ev-w-slider-wrapper { cursor: grab; overflow: visible; }
        .ev-w-slider-wrapper:active { cursor: grabbing; }
        .ev-w-track { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 20px; padding-top: 5px; scrollbar-width: none; }
        .ev-w-track::-webkit-scrollbar { display: none; }
        .ev-w-card { flex: 0 0 340px; background: var(--av-surface); border: 1px solid var(--av-border); border-radius: 16px; padding: 32px; transition: 0.3s; }
        .ev-w-card:hover { border-color: var(--av-orange); transform: translateY(-5px); }
        .ev-w-icon { font-size: 32px; margin-bottom: 20px; display: block; }
        .ev-w-card-h4 { font-family: var(--font-head); font-size: 22px; margin-bottom: 12px; }

        /* ANIMOWANE LICZNIKI */
        .av-counters {
            padding: 60px 0;
            background: var(--av-surface);
            border-top: 1px solid var(--av-border);
            border-bottom: 1px solid var(--av-border);
        }
        .av-counters-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .av-counter-item {
            text-align: center;
            padding: 20px 12px;
        }
        .av-counter-number {
            font-family: var(--font-head);
            font-size: 48px;
            font-weight: 700;
            color: var(--av-orange);
            line-height: 1;
            margin-bottom: 8px;
        }
        .av-counter-number .av-counter-suffix {
            font-size: 32px;
            color: var(--av-orange);
            opacity: 0.7;
        }
        .av-counter-label {
            font-size: 15px;
            color: var(--av-text-dim);
            line-height: 1.4;
        }
        @media (max-width: 768px) {
            .av-counters-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .av-counter-number { font-size: 36px; }
        }

        /* STICKY CTA */
        .av-sticky-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            pointer-events: none;
        }
        .av-sticky-cta.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }
        .av-sticky-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 50px;
            font-family: var(--font-head);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: 0.3s ease;
            text-decoration: none;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            border: none;
        }
        .av-sticky-phone {
            background: var(--av-cta);
            color: #000;
        }
        .av-sticky-phone:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(245,166,35,0.3);
        }
        .av-sticky-form {
            background: var(--av-surface);
            color: #FFF;
            border: 1px solid var(--av-border);
        }
        .av-sticky-form:hover {
            border-color: var(--av-orange);
            transform: scale(1.05);
        }
        .av-sticky-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .av-sticky-cta { bottom: 16px; right: 16px; }
            .av-sticky-btn span { display: none; }
            .av-sticky-btn { padding: 16px; border-radius: 50%; }
            .av-sticky-icon { width: 24px; height: 24px; }
        }

        /* MARKI (Infinite Marquee) */
        .brands { padding: 40px 0; border-top: 1px solid var(--av-border); background: var(--av-dark); overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); }
        .brands-track { display: flex; gap: 30px; width: max-content; animation: scrollBrands 40s linear infinite; align-items: center; padding: 10px 0; }
        .brands:hover .brands-track { animation-play-state: paused; }
        .brand-item {
            background: #FFFFFF; height: 80px; width: 180px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center; padding: 20px;
            transition: 0.3s var(--ease); box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .brand-item:hover { transform: scale(1.04); box-shadow: 0 8px 25px rgba(16,185,129,0.15); }
        .brand-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
        @keyframes scrollBrands { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* KALKULATOR OSZCZĘDNOŚCI */
        .av-calc { padding: 60px 0; position: relative; }
        .av-calc::before { content:''; position:absolute; top:0; right:0; width:40%; height:100%; background: radial-gradient(ellipse at top right, rgba(16,185,129,0.06) 0%, transparent 70%); pointer-events:none; }
        .av-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
        .av-calc-left { position: relative; z-index: 1; }
        .av-calc-right { position: relative; z-index: 1; }
        .av-calc-input-group { margin-bottom: 24px; }
        .av-calc-label { display: block; font-size: 14px; font-weight: 600; color: #FFF; margin-bottom: 8px; }
        .av-calc-hint { font-size: 12px; color: var(--av-text-dim); margin-bottom: 8px; display: block; }
        .av-calc-input {
            width: 100%; padding: 14px 16px; background: var(--av-surface); border: 1px solid var(--av-border);
            border-radius: 10px; color: #FFF; font-size: 18px; font-weight: 700; font-family: var(--font-head);
            box-sizing: border-box; transition: 0.3s;
        }
        .av-calc-input:focus { border-color: var(--av-orange); box-shadow: 0 0 0 4px rgba(16,185,129,0.1); outline: none; }
        .av-calc-input::placeholder { color: var(--av-text-dim); font-weight: 400; }
        .av-calc-slider-wrap { margin-top: 8px; }
        .av-calc-slider {
            -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
            background: var(--av-surface); border-radius: 3px; outline: none;
        }
        .av-calc-slider::-webkit-slider-thumb {
            -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
            background: var(--av-orange); border-radius: 50%; cursor: pointer; border: 3px solid var(--av-dark);
        }
        .av-calc-slider::-moz-range-thumb {
            width: 22px; height: 22px; background: var(--av-orange); border-radius: 50%; cursor: pointer; border: 3px solid var(--av-dark);
        }
        .av-calc-slider-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--av-text-dim); margin-top: 4px; }
        .av-calc-btn {
            width: 100%; padding: 16px; background: var(--av-cta); color: #000; font-size: 16px; font-weight: 700;
            font-family: var(--font-head); border: none; border-radius: 12px; cursor: pointer; transition: 0.3s;
            margin-top: 8px;
        }
        .av-calc-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
        .av-calc-results { opacity: 0; transform: translateY(10px); transition: 0.4s var(--ease); }
        .av-calc-results.visible { opacity: 1; transform: translateY(0); }
        .av-calc-result-card {
            background: var(--av-surface); border: 1px solid var(--av-border); border-radius: 16px;
            padding: 32px; margin-bottom: 16px;
        }
        .av-calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .av-calc-result-row:last-child { border-bottom: none; }
        .av-calc-result-label { font-size: 14px; color: var(--av-text-dim); }
        .av-calc-result-value { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #FFF; }
        .av-calc-result-value.highlight { color: var(--av-orange); font-size: 24px; }
        .av-calc-savings-bar { margin-top: 24px; }
        .av-calc-bar-bg { height: 12px; background: var(--av-surface); border-radius: 6px; overflow: hidden; margin-bottom: 8px; }
        .av-calc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--av-orange), #34D399); border-radius: 6px; transition: width 1s var(--ease); width: 0%; }
        .av-calc-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--av-text-dim); }
        .av-calc-cta-bottom { margin-top: 24px; text-align: center; }
        .av-calc-cta-link { color: var(--av-cta); font-weight: 700; font-size: 15px; cursor: pointer; transition: 0.3s; }
        .av-calc-cta-link:hover { color: #FFF; }
        .av-calc-disclaimer { font-size: 11px; color: var(--av-text-dim); margin-top: 16px; line-height: 1.5; text-align: center; }
        @media (max-width: 768px) {
            .av-calc-grid { grid-template-columns: 1fr; gap: 32px; }
        }

        /* FAQ smooth animation */
        details.av-faq { background: var(--av-surface); border: 1px solid var(--av-border); border-radius: var(--radius-md); padding: 24px 28px; cursor: pointer; transition: border-color 0.3s; }
        details.av-faq[open] { border-color: var(--av-orange); }
        details.av-faq summary { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: #FFF; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        details.av-faq summary::-webkit-details-marker { display: none; }
        details.av-faq summary svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }
        details.av-faq[open] summary svg { transform: rotate(180deg); }
        details.av-faq .faq-answer { overflow: hidden; animation: faqOpen 0.3s var(--ease); }
        @keyframes faqOpen { from { opacity: 0; max-height: 0; } to { opacity: 1; max-height: 300px; } }

        /* Custom checkbox */
        .av-checkbox { position: relative; display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
        .av-checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
        .av-checkbox-mark {
            flex-shrink: 0; width: 22px; height: 22px; border: 2px solid var(--av-border); border-radius: 6px;
            background: var(--av-surface); transition: 0.2s; display: flex; align-items: center; justify-content: center; margin-top: 2px;
        }
        .av-checkbox input:checked + .av-checkbox-mark { background: var(--av-orange); border-color: var(--av-orange); }
        .av-checkbox input:checked + .av-checkbox-mark::after { content: ''; display: block; width: 6px; height: 10px; border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg); }
        .av-checkbox input:focus-visible + .av-checkbox-mark { outline: 2px solid var(--av-orange); outline-offset: 2px; }

        /* GLOBAL: Focus-visible for keyboard accessibility */
        *:focus-visible {
            outline: 2px solid var(--av-orange);
            outline-offset: 2px;
        }
        button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, details:focus-visible {
            outline: 2px solid var(--av-orange);
            outline-offset: 2px;
        }

        /* PRICING SECTION */
        .av-pricing { padding: 100px 0; background: var(--av-surface); }
        .av-pricing-header { max-width: 720px; margin-bottom: 60px; }
        .av-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
        .av-price-card {
            background: var(--av-dark); border: 1px solid var(--av-border); border-radius: 16px;
            padding: 36px 28px; position: relative; transition: 0.3s var(--ease);
        }
        .av-price-card:hover { border-color: var(--av-orange); transform: scale(1.02); box-shadow: 0 8px 30px rgba(16,185,129,0.1); }
        .av-price-card.popular { border-color: var(--av-orange); }
        .av-price-badge {
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            background: var(--av-cta); color: #000; font-size: 11px; font-weight: 700;
            padding: 4px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase;
        }
        .av-price-icon { font-size: 32px; margin-bottom: 16px; display: block; }
        .av-price-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #FFF; margin-bottom: 8px; }
        .av-price-power { font-size: 14px; color: var(--av-text-dim); margin-bottom: 20px; }
        .av-price-amount { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--av-orange); margin-bottom: 4px; }
        .av-price-sub { font-size: 13px; color: var(--av-text-dim); margin-bottom: 20px; }
        .av-price-features { list-style: none; padding: 0; margin: 0 0 24px 0; }
        .av-price-features li {
            font-size: 14px; color: var(--av-text-dim); padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 8px;
        }
        .av-price-features li::before { content: "✓"; color: var(--av-orange); font-weight: 700; }
        .av-price-cta {
            display: block; text-align: center; padding: 14px; border-radius: 10px;
            font-weight: 700; font-size: 14px; cursor: pointer; transition: 0.3s; text-decoration: none;
        }
        .av-price-cta.primary { background: var(--av-cta); color: #000; }
        .av-price-cta.primary:hover { filter: brightness(1.1); }
        .av-price-cta.outline { border: 1px solid var(--av-orange); color: var(--av-orange); background: transparent; }
        .av-price-cta.outline:hover { background: rgba(16,185,129,0.1); }
        .av-price-note { text-align: center; font-size: 14px; color: var(--av-text-dim); max-width: 600px; margin: 0 auto; line-height: 1.6; }
        @media (max-width: 768px) { .av-pricing-grid { grid-template-columns: 1fr; } }

        /* TESTIMONIALS ON HOME */
        .av-testimonials { padding: 100px 0; background: var(--av-dark); }
        .av-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .av-testi-card {
            background: var(--av-surface); border: 1px solid var(--av-border); border-radius: 16px;
            padding: 32px; transition: 0.3s var(--ease);
        }
        .av-testi-card:hover { border-color: var(--av-orange); }
        .av-testi-stars { color: var(--av-gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
        .av-testi-text { font-size: 15px; color: var(--av-text-dim); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
        .av-testi-author { display: flex; align-items: center; gap: 12px; }
        .av-testi-avatar {
            width: 40px; height: 40px; border-radius: 50%; background: var(--av-orange); opacity: 0.2;
            display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #FFF;
        }
        .av-testi-name { font-weight: 700; font-size: 14px; color: #FFF; }
        .av-testi-loc { font-size: 12px; color: var(--av-text-dim); }
        .av-testi-summary {
            text-align: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--av-border);
        }
        .av-testi-summary-score { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--av-orange); }
        .av-testi-summary-label { font-size: 14px; color: var(--av-text-dim); }
        @media (max-width: 768px) { .av-testimonials-grid { grid-template-columns: 1fr; } }

        /* CERTIFICATIONS & GUARANTEES */
        .av-certs { padding: 80px 0; background: var(--av-surface); }
        .av-certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .av-cert-card {
            background: var(--av-dark); border: 1px solid var(--av-border); border-radius: 16px;
            padding: 32px 24px; text-align: center; transition: 0.3s var(--ease);
        }
        .av-cert-card:hover { border-color: var(--av-orange); transform: translateY(-3px); }
        .av-cert-icon { font-size: 36px; margin-bottom: 16px; display: block; }
        .av-cert-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #FFF; margin-bottom: 8px; }
        .av-cert-desc { font-size: 13px; color: var(--av-text-dim); line-height: 1.5; }
        @media (max-width: 768px) { .av-certs-grid { grid-template-columns: repeat(2, 1fr); } }

        /* ==========================================================================
           KONTAKT
           ========================================================================== */
        .contact-section { padding: 80px 0; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }

        .contact-info-card {
            background: linear-gradient(145deg, var(--av-surface) 0%, var(--av-dark) 100%);
            border: 1px solid var(--av-border);
            border-radius: 16px;
            padding: 40px;
        }
        .contact-company-name { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: #FFF; margin-bottom: 8px; line-height: 1.3;}
        .contact-nip { font-size: 14px; color: var(--av-text-dim); margin-bottom: 40px; }

        .contact-detail-block { margin-bottom: 30px; }
        .contact-label { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--av-text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 12px; }
        .contact-label svg { stroke: var(--av-text-dim); }
        .contact-text { font-size: 16px; color: #FFF; line-height: 1.6; margin: 0 0 16px 0; }
        .contact-phone { font-size: 18px; font-weight: 700; color: #FFF; display: block; margin-bottom: 4px; }
        .contact-email { font-size: 16px; color: #FFF; font-weight: 500; display: block; margin-bottom: 16px; }
        .contact-map-link { color: var(--av-orange); font-size: 14px; font-weight: 600; transition: 0.3s; display: inline-block;}
        .contact-map-link:hover { color: #FFF; }

        .social-media-label { font-size: 12px; color: var(--av-text-dim); margin-bottom: 16px; display: block; }
        .social-media-grid { display: flex; flex-wrap: wrap; gap: 12px; }
        .social-btn {
            display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
            background: transparent; border: 1px solid var(--av-border); border-radius: 999px;
            color: #FFF; font-size: 14px; font-weight: 500; transition: 0.3s;
        }
        .social-btn:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

        /* Formularz kontaktowy */
        .contact-form-card {
            background: var(--av-surface); border: 1px solid var(--av-border);
            border-radius: 16px; padding: 40px;
        }
        .contact-form-title { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: #FFF; margin-bottom: 8px; }
        .contact-form-subtitle { font-size: 15px; color: var(--av-text-dim); margin-bottom: 40px; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
        .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px;}
        .form-row .form-group { margin-bottom: 0; }
        .form-label { font-size: 14px; font-weight: 600; color: #FFF; }

        .form-input, .form-select, .form-textarea {
            width: 100%; padding: 14px 16px; background: #FFFFFF; border: 1px solid transparent;
            border-radius: 8px; font-family: var(--font-body); font-size: 15px; color: #000;
            transition: 0.3s; outline: none;
        }
        .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--av-orange); box-shadow: 0 0 0 4px rgba(16,185,129,0.1); }
        .form-textarea { resize: vertical; min-height: 120px; }

        .form-checkbox-group { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px; }
        .form-checkbox { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--av-orange); cursor: pointer; }
        .form-checkbox-label { font-size: 13px; color: var(--av-text-dim); line-height: 1.5; cursor: pointer; }

        .form-submit-btn {
            width: 100%; padding: 16px; background: #FFFFFF; color: #000; font-family: var(--font-head);
            font-size: 16px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer;
            transition: 0.3s;
        }
        .form-submit-btn:hover { background: var(--av-cta); }
        .form-fallback { text-align: center; margin-top: 24px; font-size: 13px; color: var(--av-text-dim); }
        .form-fallback a { color: #FFF; text-decoration: underline; }
        @keyframes formSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
        .form-submit-btn .btn-loading { display: inline-flex; align-items: center; gap: 8px; }
        .form-input.input-error, .form-select.input-error, .form-textarea.input-error { border-color: #ef4444 !important; }
        .field-error-text { color: #ef4444; font-size: 12px; margin-top: 4px; }

        /* ===== BLOG ===== */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; margin-top: 48px; }
        .blog-card {
            background: var(--av-surface); border: 1px solid var(--av-border); border-radius: 16px;
            overflow: hidden; cursor: pointer; transition: all 0.4s var(--ease);
        }
        .blog-card:hover { border-color: var(--av-orange); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
        .blog-card-img {
            width: 100%; height: 200px; object-fit: cover; display: block;
            transition: transform 0.6s var(--ease);
        }
        .blog-card:hover .blog-card-img { transform: scale(1.05); }
        .blog-card-img-wrap { overflow: hidden; position: relative; }
        .blog-card-cat {
            position: absolute; top: 16px; left: 16px;
            font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
            background: var(--av-orange); color: var(--av-dark); padding: 4px 12px; border-radius: 6px;
        }
        .blog-card-body { padding: 24px; }
        .blog-card-meta { font-size: 13px; color: var(--av-text-dim); margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
        .blog-card-title {
            font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #FFF;
            margin-bottom: 12px; line-height: 1.3; transition: color 0.3s;
        }
        .blog-card:hover .blog-card-title { color: var(--av-orange); }
        .blog-card-excerpt { font-size: 14px; color: var(--av-text-dim); line-height: 1.7; }
        .blog-card-readmore {
            display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
            font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--av-orange);
            text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s;
        }
        .blog-card:hover .blog-card-readmore { gap: 12px; }

        /* Blog post view */
        .blog-post-wrapper { max-width: 800px; margin: 0 auto; padding: 0 24px; }
        .blog-post-back {
            display: inline-flex; align-items: center; gap: 8px; color: var(--av-text-dim);
            font-family: var(--font-head); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
            cursor: pointer; transition: color 0.3s; margin-bottom: 32px;
        }
        .blog-post-back:hover { color: var(--av-orange); }
        .blog-post-hero-img {
            width: 100%; max-height: 420px; object-fit: cover; border-radius: 16px;
            margin-bottom: 32px; border: 1px solid var(--av-border);
        }
        .blog-post-cat-badge {
            display: inline-block; font-family: var(--font-head); font-size: 11px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px; background: rgba(16,185,129,0.15);
            color: var(--av-orange); padding: 6px 14px; border-radius: 6px; margin-bottom: 16px;
        }
        .blog-post-title { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: #FFF; line-height: 1.2; margin-bottom: 16px; }
        .blog-post-meta { font-size: 14px; color: var(--av-text-dim); margin-bottom: 40px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
        .blog-post-content { font-size: 16px; color: var(--av-text-dim); line-height: 1.85; }
        .blog-post-content h2 { font-family: var(--font-head); font-size: 26px; color: #FFF; margin: 48px 0 16px; }
        .blog-post-content h3 { font-family: var(--font-head); font-size: 20px; color: #FFF; margin: 32px 0 12px; }
        .blog-post-content p { margin: 0 0 20px; }
        .blog-post-content strong { color: #FFF; }
        .blog-post-content ul, .blog-post-content ol { margin: 0 0 20px; padding-left: 24px; }
        .blog-post-content li { margin-bottom: 8px; }
        .blog-post-content blockquote {
            border-left: 3px solid var(--av-orange); margin: 32px 0; padding: 16px 24px;
            background: rgba(16,185,129,0.05); border-radius: 0 12px 12px 0; font-style: italic;
        }
        .blog-post-cta {
            margin-top: 48px; padding: 32px; background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(26,115,232,0.05));
            border: 1px solid rgba(16,185,129,0.2); border-radius: 16px; text-align: center;
        }
        .blog-post-cta h3 { font-family: var(--font-head); color: #FFF; font-size: 22px; margin-bottom: 12px; }
        .blog-post-cta p { color: var(--av-text-dim); margin-bottom: 20px; }
        .blog-post-cta-btn {
            display: inline-block; padding: 14px 32px; background: var(--av-cta); color: var(--av-dark);
            font-family: var(--font-head); font-weight: 700; font-size: 14px; border-radius: 10px;
            text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; border: none;
        }
        .blog-post-cta-btn:hover { background: #FFF; }

        /* Blog admin */
        .blog-admin-bar {
            display: flex; justify-content: flex-end; align-items: center; gap: 12px;
            margin-top: 24px;
        }
        .blog-admin-btn {
            display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
            background: transparent; border: 1px solid var(--av-border); color: var(--av-text-dim);
            font-family: var(--font-head); font-size: 13px; font-weight: 600; border-radius: 10px;
            cursor: pointer; transition: all 0.3s;
        }
        .blog-admin-btn:hover { border-color: var(--av-cta); color: var(--av-cta); }
        .blog-admin-btn.primary { background: var(--av-cta); color: var(--av-dark); border-color: var(--av-cta); }
        .blog-admin-btn.primary:hover { background: #FFF; }
        .blog-admin-btn.danger { border-color: #ef4444; color: #ef4444; }
        .blog-admin-btn.danger:hover { background: rgba(239,68,68,0.1); }

        /* Login modal */
        .blog-login-overlay {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
            z-index: 9999; align-items: center; justify-content: center;
        }
        .blog-login-overlay.active { display: flex; }
        .blog-login-box {
            background: var(--av-surface); border: 1px solid var(--av-border); border-radius: 20px;
            padding: 48px; max-width: 420px; width: 90%; text-align: center;
        }
        .blog-login-box h3 { font-family: var(--font-head); color: #FFF; font-size: 24px; margin-bottom: 8px; }
        .blog-login-box p { color: var(--av-text-dim); font-size: 14px; margin-bottom: 28px; }
        .blog-login-input {
            width: 100%; padding: 14px 18px; background: var(--av-dark); border: 1px solid var(--av-border);
            border-radius: 10px; color: #FFF; font-size: 15px; font-family: var(--font-body);
            box-sizing: border-box; margin-bottom: 16px; outline: none; transition: border 0.3s;
        }
        .blog-login-input:focus { border-color: var(--av-orange); }
        .blog-login-error { color: #ef4444; font-size: 13px; margin-bottom: 12px; display: none; }

        /* Editor panel */
        .blog-editor-panel {
            display: none; background: var(--av-surface); border: 1px solid var(--av-border);
            border-radius: 20px; padding: 40px; margin-top: 32px;
        }
        .blog-editor-panel.active { display: block; }
        .blog-editor-panel h3 { font-family: var(--font-head); color: #FFF; font-size: 22px; margin-bottom: 24px; }
        .blog-editor-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
        .blog-editor-field { margin-bottom: 16px; }
        .blog-editor-label { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--av-text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
        .blog-editor-input {
            width: 100%; padding: 12px 16px; background: var(--av-dark); border: 1px solid var(--av-border);
            border-radius: 10px; color: #FFF; font-size: 14px; font-family: var(--font-body);
            box-sizing: border-box; outline: none; transition: border 0.3s;
        }
        .blog-editor-input:focus { border-color: var(--av-orange); }
        .blog-editor-textarea {
            width: 100%; min-height: 300px; padding: 16px; background: var(--av-dark);
            border: 1px solid var(--av-border); border-radius: 10px; color: #FFF;
            font-size: 14px; font-family: var(--font-body); line-height: 1.7;
            box-sizing: border-box; outline: none; resize: vertical; transition: border 0.3s;
        }
        .blog-editor-textarea:focus { border-color: var(--av-orange); }
        .blog-editor-hint { font-size: 12px; color: rgba(160,171,192,0.5); margin-top: 6px; }
        .blog-editor-actions { display: flex; gap: 12px; margin-top: 24px; }

        /* Blog empty state */
        .blog-empty { text-align: center; padding: 80px 24px; color: var(--av-text-dim); }
        .blog-empty svg { margin-bottom: 16px; opacity: 0.3; }
        .blog-empty p { font-size: 16px; }

        /* Admin post list */
        .blog-admin-list { margin-top: 24px; }
        .blog-admin-item {
            display: flex; justify-content: space-between; align-items: center; padding: 16px 20px;
            background: var(--av-dark); border: 1px solid var(--av-border); border-radius: 12px;
            margin-bottom: 10px; transition: border 0.3s;
        }
        .blog-admin-item:hover { border-color: rgba(255,255,255,0.2); }
        .blog-admin-item-title { color: #FFF; font-weight: 600; font-size: 15px; }
        .blog-admin-item-date { color: var(--av-text-dim); font-size: 13px; }
        .blog-admin-item-actions { display: flex; gap: 8px; }

        @media (max-width: 991px) {
            .contact-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; gap: 24px; }
            .contact-info-card, .contact-form-card { padding: 30px 20px; }
            .blog-grid { grid-template-columns: 1fr; }
            .blog-post-title { font-size: 28px; }
            .blog-editor-row { grid-template-columns: 1fr; }
        }
        @media (max-width: 600px) {
            .foot-grid { grid-template-columns: 1fr; gap: 0; }
            .foot-main { padding: 48px 0 32px; }
            .foot-contact-phone { font-size: 18px; }
            .awards-logos { gap: 28px; }
            /* Footer mobile accordion */
            .foot-col:not(.foot-brand-col) { border-bottom: 1px solid var(--av-border); }
            .foot-col:not(.foot-brand-col) .foot-title {
                display: flex; justify-content: space-between; align-items: center; cursor: pointer;
                padding: 16px 0; margin-bottom: 0;
            }
            .foot-col:not(.foot-brand-col) .foot-title::after { content: '+'; font-size: 20px; color: var(--av-text-dim); transition: 0.3s; }
            .foot-col:not(.foot-brand-col).foot-open .foot-title::after { content: '−'; }
            .foot-col:not(.foot-brand-col) .foot-nav,
            .foot-col:not(.foot-brand-col) .foot-info-text,
            .foot-col:not(.foot-brand-col) .foot-tags { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
            .foot-col:not(.foot-brand-col).foot-open .foot-nav,
            .foot-col:not(.foot-brand-col).foot-open .foot-info-text,
            .foot-col:not(.foot-brand-col).foot-open .foot-tags { max-height: 400px; padding-bottom: 16px; }
        }

        /* CALL TO ACTION */
        #ev-cta-section-v2 {
            position: relative; overflow: hidden; color: #FFF;
            background: linear-gradient(135deg, var(--av-dark) 0%, #0d1a15 50%, var(--av-dark) 100%);
            border-top: 1px solid var(--av-border);
            border-bottom: 1px solid var(--av-border);
        }
        #ev-cta-section-v2::before {
            content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none;
        }
        #ev-cta-section-v2::after {
            content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none;
        }
        .ev-cta-inner {
            position: relative; z-index: 2; max-width: 1100px; margin: 0 auto;
            padding: 80px 32px;
            display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
        }
        .ev-cta-left h2 {
            font-family: var(--font-head); font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.75rem); font-weight: 700; line-height: 1.15;
            margin: 0 0 20px 0; color: #FFF;
        }
        .ev-cta-left h2 span { color: var(--av-orange); }
        .ev-cta-left p { font-size: 17px; color: var(--av-text-dim); line-height: 1.6; margin: 0 0 36px 0; }
        .ev-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .ev-cta-btn-primary {
            background: var(--av-cta); color: #000; padding: 16px 36px; border-radius: 12px;
            font-family: var(--font-head); font-weight: 700; font-size: 16px;
            display: inline-flex; align-items: center; gap: 10px;
            transition: 0.3s ease; border: none; cursor: pointer;
            box-shadow: 0 4px 20px rgba(245,166,35,0.25);
        }
        .ev-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.35); }
        .ev-cta-btn-secondary {
            background: transparent; color: #FFF; padding: 16px 36px; border-radius: 12px;
            font-family: var(--font-head); font-weight: 600; font-size: 16px;
            display: inline-flex; align-items: center; gap: 10px;
            transition: 0.3s ease; border: 1px solid var(--av-border); cursor: pointer;
            text-decoration: none;
        }
        .ev-cta-btn-secondary:hover { border-color: var(--av-orange); color: var(--av-orange); }
        .ev-cta-right {
            display: flex; flex-direction: column; gap: 16px;
        }
        .ev-cta-feature {
            display: flex; align-items: flex-start; gap: 16px;
            padding: 20px 24px; background: rgba(255,255,255,0.03);
            border: 1px solid var(--av-border); border-radius: 14px;
            transition: 0.3s ease;
        }
        .ev-cta-feature:hover { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.04); }
        .ev-cta-feature-icon {
            width: 40px; height: 40px; flex-shrink: 0;
            background: rgba(16,185,129,0.1); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }
        .ev-cta-feature-icon svg { width: 20px; height: 20px; stroke: var(--av-orange); fill: none; stroke-width: 2; }
        .ev-cta-feature h4 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: #FFF; margin: 0 0 4px 0; }
        .ev-cta-feature p { font-size: 14px; color: var(--av-text-dim); margin: 0; line-height: 1.5; }
        @media (max-width: 768px) {
            .ev-cta-inner { grid-template-columns: 1fr; padding: 60px 20px; text-align: center; }
            .ev-cta-left h2 { font-size: 32px; }
            .ev-cta-buttons { justify-content: center; }
        }

        /* ===== FOOTER ===== */
        footer {
            position: relative; padding: 0; background: var(--av-surface);
            border-top: 1px solid var(--av-border);
        }
        /* Gradient glow na górze stopki */
        footer::before {
            content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
            width: 400px; height: 1px;
            background: linear-gradient(90deg, transparent, var(--av-orange), transparent);
        }

        /* Awards strip */
        .foot-awards-strip {
            padding: 48px 0; text-align: center;
            background: linear-gradient(180deg, rgba(16,185,129,0.04) 0%, transparent 100%);
        }
        .foot-awards-label {
            font-family: var(--font-head); font-size: 11px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 3px; color: var(--av-text-dim); margin-bottom: 28px;
        }
        .awards-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
        .award-img { transition: all 0.4s var(--ease); object-fit: contain; filter: grayscale(30%) brightness(0.9); }
        .award-img:hover { transform: scale(1.08) translateY(-4px); filter: grayscale(0%) brightness(1); }

        /* Main footer grid */
        .foot-main { padding: 64px 0 48px; }
        .foot-grid {
            display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 32px;
        }
        .foot-brand-col {}
        .foot-brand-col picture, .ev-logo picture { display: block; }
        .foot-logo { height: 48px; width: auto; margin-bottom: 20px; }
        .foot-desc { color: var(--av-text-dim); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
        .foot-social { display: flex; gap: 10px; }
        .foot-social-btn {
            width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
            border: 1px solid var(--av-border); border-radius: 10px; color: var(--av-text-dim);
            transition: all 0.3s var(--ease); background: transparent;
        }
        .foot-social-btn:hover { border-color: var(--av-orange); color: var(--av-orange); background: rgba(16,185,129,0.06); transform: scale(1.1); }

        .foot-title {
            font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--av-orange);
            margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;
        }
        .foot-nav { display: flex; flex-direction: column; gap: 10px; }
        .foot-nav a {
            color: var(--av-text-dim); font-size: 14px; transition: all 0.3s var(--ease); cursor: pointer;
            position: relative; display: inline-block; width: fit-content;
        }
        .foot-nav a::after {
            content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
            background: var(--av-orange); transition: width 0.3s var(--ease);
        }
        .foot-nav a:hover { color: #FFF; }
        .foot-nav a:hover::after { width: 100%; }

        .foot-info-text { color: var(--av-text-dim); font-size: 14px; line-height: 1.8; margin: 0; }
        .foot-info-text strong { color: #FFF; font-weight: 600; }
        .foot-contact-phone {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--av-orange); font-family: var(--font-head); font-size: 20px; font-weight: 700;
            transition: all 0.3s var(--ease);
        }
        .foot-contact-phone:hover { color: #FFF; }
        .foot-col { display: flex; flex-direction: column; }
        .foot-mini-label {
            font-family: var(--font-head); font-size: 11px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 1.5px; color: rgba(160,171,192,0.5);
            margin-top: auto; padding-top: 20px; margin-bottom: 8px;
        }
        .foot-tags { display: flex; flex-wrap: wrap; gap: 6px; }
        .foot-tag {
            font-size: 12px; color: var(--av-text-dim); padding: 4px 10px;
            border: 1px solid rgba(255,255,255,0.06); border-radius: 6px;
            background: rgba(255,255,255,0.02); transition: all 0.3s;
        }
        .foot-tag:hover { border-color: rgba(16,185,129,0.3); color: var(--av-orange); }

        /* Divider */
        .foot-divider { border: none; border-top: 1px solid var(--av-border); margin: 0; }

        /* Bottom bar */
        .foot-bottom {
            display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
            padding: 24px 0; font-size: 13px; color: rgba(160,171,192,0.5);
        }
        .foot-bottom a { color: rgba(160,171,192,0.5); transition: color 0.3s; }
        .foot-bottom a:hover { color: var(--av-orange); }
        .foot-seo-line { font-size: 11px; color: rgba(160,171,192,0.3); }

        /* Responsive fixes */
        @media (max-width: 991px) {
            .ev-ind-grid, .service-grid { grid-template-columns: 1fr; gap: 40px; }
            .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
            .foot-brand-col { grid-column: 1 / -1; }
            .foot-bottom { flex-direction: column; text-align: center; }
            .service-grid.reverse > * { direction: ltr; }
            .ev-w-h3 { font-size: 32px; }
            .subpage-hero h1 { font-size: 36px; }

            .realizations-grid { grid-template-columns: 1fr; }
            .filters-wrap { gap: 12px; }
        }

        .scroll-reveal { opacity: 0; transform: translateY(30px); transition: 0.8s var(--ease); }
        .scroll-reveal.in-view { opacity: 1; transform: translateY(0); }

        .sas-section {
    padding: 80px 0;
    font-family: var(--font-body, 'Outfit', sans-serif);
}

.sas-header {
    margin-bottom: 40px;
}

.sas-header h2 {
    font-size: 32px;
    color: #FFF;
    margin-bottom: 8px;
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-weight: 700;
}

.sas-header p {
    font-size: 15px;
    color: var(--av-text-dim, #A0ABC0);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.sas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    align-items: start;
}

.sas-card {
    background: var(--av-surface, #131824);
    border: 1px solid var(--av-border, rgba(255, 255, 255, 0.1));
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.sas-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: #1A2132;
}

.sas-card.active {
    border-color: var(--av-orange, #10B981);
    background: linear-gradient(180deg, rgba(16,185,129,0.05) 0%, rgba(19, 24, 36, 0) 100%), var(--av-surface, #131824);
}

.sas-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sas-icon {
    color: var(--av-text-dim, #A0ABC0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.sas-card.active .sas-icon {
    color: var(--av-orange, #10B981);
}

.sas-chevron {
    color: var(--av-text-dim, #A0ABC0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
    display: flex;
    align-items: center;
}

.sas-card.active .sas-chevron {
    color: var(--av-orange, #10B981);
    transform: rotate(180deg);
}

.sas-title {
    font-size: 18px;
    color: #FFF;
    font-weight: 600;
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.sas-desc {
    font-size: 14px;
    color: var(--av-text-dim, #A0ABC0);
    line-height: 1.6;
    margin: 0 0 24px 0;

    /* Domyślnie ukrywa tekst po 2 linijkach dodając trzykropek */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.sas-card.active .sas-desc {
    /* Po aktywacji pokazuje całą treść i rozjaśnia tekst */
    -webkit-line-clamp: unset;
    color: #E2E8F0;
}

.sas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.sas-tag {
    font-size: 12px;
    color: var(--av-text-dim, #A0ABC0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 14px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.sas-card.active .sas-tag {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}
