
/* --- NOWA SEKCJA CONTENT (E-E-A-T) --- */

.pw-content-section {
    padding: 100px 0;
    background-color: var(--pw-white);
}

/* Wstęp */
.pw-content-intro {
    max-width: 850px;
    margin: 0 auto 70px auto; /* Centrowanie i odstęp od siatki */
}

.pw-content-intro h2 {
    font-size: 2.4rem;
    color: var(--pw-navy);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.pw-badge-text {
    color: var(--pw-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.pw-lead {
    font-size: 1.2rem;
    color: var(--pw-text-main);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Siatka kart (Grid) */
.pw-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* Dwie kolumny, responsywne */
    gap: 40px;
    margin-bottom: 80px;
}

.pw-text-card {
    background: #fff;
    /* Subtelne oddzielenie kart, brak cienia by nie konkurowały z kafelkami wyżej */
    border-left: 4px solid #e2e8f0; 
    padding: 10px 0 10px 30px;
    transition: all 0.3s ease;
}

.pw-text-card:hover {
    border-left-color: var(--pw-blue); /* Pasek zmienia kolor na niebieski po najechaniu */
}

.pw-card-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
}

.pw-num {
    font-size: 3rem;
    font-weight: 900;
    color: #2563eb; /* Bardzo jasny szary */
    line-height: 1;
}

.pw-text-card:hover .pw-num {
    color: #0a245c; /* Lekko niebieski po najechaniu */
}

.pw-text-card h3 {
    font-size: 1.5rem;
    color: var(--pw-navy);
    font-weight: 700;
    margin: 0;
}

.pw-text-card p {
    color: var(--pw-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Footer zaufania */
.pw-trust-footer {
    background: var(--pw-navy);
    color: var(--pw-white);
    padding: 50px;
    border-radius: var(--pw-border-radius);
    text-align: center;
    background-image: linear-gradient(135deg, var(--pw-navy) 0%, #1e293b 100%);
}

.pw-trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.pw-trust-footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--pw-white);
}

.pw-trust-footer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .pw-content-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
    }
    .pw-text-card {
        padding: 0 0 20px 0;
        border-left: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .pw-card-header {
        flex-direction: column;
        gap: 5px;
    }
    .pw-trust-footer {
        padding: 30px 20px;
    }
}












/* --- NOWOCZESNY STICKY HEADER (Glassmorphism) --- */

/* 1. Ustawienia głównego paska (Tło i Przyklejanie) */
#masthead {
    position: sticky;       /* Przyklejenie do góry */
    top: 0;                 /* Pozycja 0px od góry */
    z-index: 9999;          /* Zawsze na wierzchu */
    background-color: rgba(15, 23, 42, 0.95); /* Twój Granat z 95% krycia */
    backdrop-filter: blur(12px); /* Rozmycie tła pod spodem (Efekt szkła) */
    -webkit-backdrop-filter: blur(12px); /* Dla Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtelna linia na dole */
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Usunięcie domyślnych białych teł Astry */
.main-header-bar, .ast-primary-header-bar {
    background: transparent !important;
}

/* 2. Logo i Układ */
.site-branding img {
    transition: transform 0.3s ease;
}

/* Efekt pomniejszania logo przy scrollowaniu (opcjonalne, wizualne) */
#masthead:hover .site-branding img {
    transform: scale(1.05);
}

/* 3. Menu Główne (Desktop) */
.main-header-menu .menu-link {
    color: #e2e8f0 !important; /* Jasny szary/biały tekst */
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-transform: none !important; /* Czytelniej bez CapsLocka, ale jak wolisz to daj uppercase */
    letter-spacing: 0.5px;
    padding: 0 20px !important; /* Odstępy między linkami */
    transition: color 0.3s ease;
}

/* Hover na linkach (Niebieski) */
.main-header-menu .menu-item:hover > .menu-link,
.main-header-menu .menu-item.current-menu-item > .menu-link {
    color: #3b82f6 !important; /* Twój jasny niebieski */
}

/* Usuwamy domyślne efekty Astry */
.ast-theme-transparent-header .main-header-menu .menu-link:hover, 
.ast-header-break-point .main-header-bar-navigation .main-header-menu .menu-item .sub-menu .menu-link:hover {
    color: #3b82f6;
}

/* 4. Przycisk Hamburgera (Mobile) */
.ast-mobile-menu-trigger-minimal {
    color: #ffffff !important; /* Biała ikona na granatowym tle */
}

/* 5. Menu Mobilne (Rozwijane) */
.ast-mobile-header-content {
    background-color: #0f172a !important; /* Granatowe tło po rozwinięciu */
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ast-mobile-header-content .menu-link {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* 6. Poprawka wysokości paska (żeby był zgrabny) */
.ast-primary-header-bar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* --- DODATEK: Cień rzucany przez header --- */
/* Ten kod sprawia, że header odcina się od reszty strony */
.site-header {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}







/* --- POPRAWKA MENU (Żeby wszystko było w jednej linii) --- */

.main-header-menu .menu-link {
    font-size: 14px !important;      /* Mniejsza, zgrabniejsza czcionka */
    padding: 0 10px !important;      /* Mniejsze odstępy między linkami (było 20px) */
    line-height: 1.5 !important;     /* Poprawa wysokości linii */
}

/* Jeśli nadal się nie mieści, zmniejszamy logo odrobinę na Desktopie */
@media (min-width: 922px) {
    .site-branding img {
        max-width: 140px; /* Dopasuj jeśli logo wypycha menu */
    }
    
    /* Wymuszenie jednej linii dla menu */
    .main-header-bar-navigation {
        width: 100%;
    }
}

/* Dodatkowy efekt: Pogrubienie aktywnego elementu */
.main-header-menu .menu-item.current-menu-item > .menu-link {
    font-weight: 700 !important;
}










/* --- RESET LAYOUTU DLA STRONY GŁÓWNEJ (FIX HTML) --- */

/* 1. Usuwamy górne i dolne odstępy głównego kontenera */
.home .site-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. Rozciągamy kontener Astry na 100% szerokości */
.home .ast-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important; /* Wyłącza flexboxa, który może ściskać */
}

/* 3. Usuwamy ograniczenia z sekcji głównej treści */
.home #primary, 
.home #main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4. Resetujemy artykuł (ten element article id="post-2") */
.home article.page {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important; /* Usuwa ewentualne białe tło */
    box-shadow: none !important; /* Usuwa cień jeśli jest */
    border: none !important;
}

/* 5. Ukrywamy pusty nagłówek, który widzę w Twoim kodzie */
.home .entry-header {
    display: none !important;
}

/* 6. Wymuszamy pełną szerokość dla treści wpisu */
.home .entry-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* 7. FIX dla kontenerów Spectra (uagb), żeby na pewno dotykały krawędzi */
.home .alignfull {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}




/* --- FIX OSTATECZNY: ROZDZIELENIE NAGŁÓWKA OD TREŚCI --- */

/* 1. Naprawa NAGŁÓWKA: Ściągamy Logo i Menu z powrotem do środka */
#masthead .ast-container {
    max-width: 1200px !important; /* Standardowa szerokość */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
}

/* 2. Naprawa TREŚCI (Hero): Rozciągamy na maksa, usuwamy białe pasy */
#content .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Dodatkowe zabezpieczenie, żeby Hero dotykało krawędzi */
.home #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}








/* --- POPRAWKI KOŃCOWE: KOLORY TEKSTÓW I PRZYCISKÓW --- */

/* 1. Przyciski w Hero (Zacznij tutaj / O portalu) */
.pw-buttons .pw-btn {
    color: #ffffff !important;        /* Wymusza biały kolor tekstu */
    text-decoration: none !important; /* Usuwa podkreślenie linku */
}

/* Zachowanie po najechaniu myszką (Hover) */
.pw-buttons .pw-btn:hover {
    text-decoration: none !important; /* Nadal brak podkreślenia */
}

/* Przycisk "Zacznij tutaj" (niebieski) - po najechaniu tekst zostaje biały */
.pw-buttons .pw-btn-primary:hover {
    color: #ffffff !important;
}

/* Przycisk "O portalu" (przezroczysty) */
/* UWAGA: Skoro tło po najechaniu robi się białe, tekst musi zmienić się na granatowy,
   inaczej zniknie (biały na białym). */
.pw-buttons .pw-btn-outline:hover {
    color: #0f172a !important; 
}

/* 2. Sekcja Zaufania (Ta ciemna na dole z tekstem E-E-A-T) */
/* Wymuszamy biały kolor dla nagłówka, tekstu i pogrubień */
.pw-trust-footer h3,
.pw-trust-footer p,
.pw-trust-footer strong,
.pw-trust-content {
    color: #ffffff !important;
}






















/* 1. Przywracamy "pudełko" 1200px na wpisach i kategoriach (wszędzie gdzie nie Home) */
body:not(.home) #content .ast-container {
    max-width: 1200px !important; 
    width: 100% !important;
    margin-left: auto !important;  /* Centrowanie na środku */
    margin-right: auto !important; /* Centrowanie na środku */
    padding-left: 20px !important; /* Margines od krawędzi ekranu */
    padding-right: 20px !important;
    
    /* To jest kluczowe - przywraca Sidebar obok tekstu! */
    display: flex !important;      
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
}

/* 2. Ustawiamy szerokość tekstu (Lewa kolumna) */
body:not(.home) #primary {
    width: 70% !important;
    max-width: 70% !important;
    padding-right: 40px !important; /* Odstęp od sidebaru */
    margin: 0 !important;
    flex: unset !important; /* Resetuje błędne style Astry */
}

/* 3. Ustawiamy szerokość paska bocznego (Prawa kolumna) */
body:not(.home) #secondary {
    width: 30% !important;
    max-width: 30% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important; /* Upewniamy się, że sidebar jest widoczny */
}

/* 4. Odsunięcie treści od nagłówka (żeby nie wjeżdżała pod menu) */
body:not(.home) .site-content {
    padding-top: 50px !important;
}

/* 5. WERSJA MOBILNA (JEDNA KOLUMNA) */
@media (max-width: 921px) {
    body:not(.home) #content .ast-container {
        flex-direction: column !important; /* Jeden pod drugim */
    }
    
    body:not(.home) #primary, 
    body:not(.home) #secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
    }
    
    body:not(.home) #secondary {
        margin-top: 40px !important; /* Odstęp sidebaru od tekstu na telefonie */
    }
}





















/* --- ZMIENNE (Te same co na głównej dla spójności) --- */
:root {
    --pw-navy: #0f172a;
    --pw-blue: #2563eb;
    --pw-text-main: #334155;
    --pw-text-light: #64748b;
    --pw-bg-light: #f8fafc; /* Tło całej strony */
    --pw-white: #ffffff;
    --pw-border-radius: 16px;
    --pw-shadow-card: 0 4px 20px rgba(0,0,0,0.04);
}

/* Tło całej strony blogowej */
body, .site-content {
    background-color: var(--pw-bg-light);
}

/* --- GLÓWNY ARTYKUŁ (Wygląd Karty) --- */
.ast-article-single {
    background: var(--pw-white);
    border-radius: var(--pw-border-radius);
    box-shadow: var(--pw-shadow-card);
    padding: 50px; /* Duży odstęp wewnętrzny */
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

/* Nagłówek H1 wpisu */
.entry-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pw-navy);
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Meta dane (Autor, data) */
.entry-meta {
    color: var(--pw-text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.entry-meta a {
    color: var(--pw-blue);
    text-decoration: none;
}

/* --- TYPOGRAFIA TREŚCI (Content) --- */
.entry-content p {
    font-size: 1.125rem; /* 18px dla lepszej czytelności */
    line-height: 1.75;
    color: #bfc0c2;
    margin-bottom: 1.5em;
}

/* Śródtytuły H2, H3 */
.entry-content h2 {
    font-size: 1.8rem;
    color: var(--pw-navy);
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.entry-content h3 {
    font-size: 1.4rem;
    color: var(--pw-navy);
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
}




/* Linki w tekście */
.entry-content a {
    color: var(--pw-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content a:hover {
    color: var(--pw-navy);
}

/* --- STICKY SIDEBAR (Pasek boczny) --- */
#secondary {
    /* Kluczowe dla przyklejania */
    position: -webkit-sticky;
    position: sticky;
    top: 120px; /* Odstęp od góry ekranu */
    height: fit-content; /* Wymagane, by sticky działało poprawnie */
}

/* Wygląd widgetów w sidebarze */
.widget {
    background: var(--pw-white);
    padding: 30px;
    border-radius: var(--pw-border-radius);
    box-shadow: var(--pw-shadow-card);
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

/* Nagłówki widgetów */
.widget-title, .wp-block-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pw-navy);
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    display: block;
}

/* Linki w widgetach (Kategorie, Ostatnie wpisy) */
.widget ul li {
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
    list-style: none;
}

.widget ul li a {
    color: var(--pw-text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
}

.widget ul li a:hover {
    color: var(--pw-blue);
    transform: translateX(5px); /* Lekkie przesunięcie w prawo */
}

/* --- KOMENTARZE --- */
.comments-area {
    background: var(--pw-white);
    padding: 40px;
    border-radius: var(--pw-border-radius);
    border: 1px solid #e2e8f0;
    margin-top: 40px;
}

.comment-form textarea, .comment-form input {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    font-family: inherit;
}

.form-submit .submit {
    background-color: var(--pw-navy);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit .submit:hover {
    background-color: var(--pw-blue);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .ast-article-single {
        padding: 25px; /* Mniejszy padding na telefonie */
    }
    
    .entry-title {
        font-size: 1.8rem;
    }
    
    .entry-content ul, .entry-content ol {
        padding: 20px; /* Mniejsze wcięcia list */
    }
}










/* --- ZMIENNE I KOLORYSTYKA --- */
:root {
    --pw-navy: #0f172a;       /* Główny kolor ciemny */
    --pw-blue: #2563eb;       /* Główny kolor akcentowy (niebieski) */
    --pw-blue-hover: #1d4ed8; /* Ciemniejszy niebieski (hover) */
    --pw-bg-light: #f8fafc;   /* Jasne tło */
    --pw-bg-card: #ffffff;    /* Tło kart */
    --pw-text-main: #334155;  /* Tekst główny */
    --pw-text-light: #64748b; /* Tekst poboczny */
    --pw-white: #ffffff;
    --pw-border-radius: 16px; /* Nowoczesne zaokrąglenia */
    --pw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --pw-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

/* Reset i kontenery */
.pw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- SEKCJA HERO --- */
.pw-hero {
    background-color: var(--pw-navy);
    color: var(--pw-white);
    padding: 100px 0 120px 0;
    text-align: center;
    border-bottom-left-radius: 40px; /* Zaokrąglenie sekcji na dole */
    border-bottom-right-radius: 40px;
}

.pw-hero-content { max-width: 800px; margin: 0 auto; }

.pw-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.pw-hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--pw-white);
}

.pw-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- PRZYCISKI (POPRAWIONE HOVERY) --- */
.pw-buttons { display: flex; gap: 20px; justify-content: center; }

.pw-btn {
    padding: 14px 32px;
    border-radius: 50px; /* Pełne zaokrąglenie (pill shape) */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Przycisk Główny */
.pw-btn-primary {
    background-color: var(--pw-blue);
    color: var(--pw-white);
    border-color: var(--pw-blue);
}

.pw-btn-primary:hover {
    background-color: var(--pw-blue-hover); /* Ciemnieje na hover */
    border-color: var(--pw-blue-hover);
    transform: translateY(-2px);
    color: var(--pw-white); /* Tekst pozostaje biały */
}

/* Przycisk Outline (Przezroczysty) */
.pw-btn-outline {
    background: transparent;
    color: var(--pw-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.pw-btn-outline:hover {
    background-color: var(--pw-white); /* Tło robi się białe */
    color: var(--pw-navy); /* Tekst robi się ciemny */
    border-color: var(--pw-white);
    transform: translateY(-2px);
}

/* --- TRUST BAR --- */
.pw-trust {
    text-align: center;
    padding: 40px 0;
    background: transparent;
    margin-top: -20px; /* Lekkie wcięcie pod Hero */
}
.pw-trust p {
    color: var(--pw-text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pw-logos {
    color: var(--pw-text-main);
    font-weight: 600;
    opacity: 0.8;
    font-size: 1rem;
}

/* --- KATEGORIE (GRID) --- */
.pw-categories {
    padding: 60px 0 100px 0;
    background-color: var(--pw-bg-light);
}

.pw-section-header { text-align: center; margin-bottom: 60px; }
.pw-section-header h2 {
    font-size: 2.5rem;
    color: var(--pw-navy);
    font-weight: 800;
    margin-bottom: 10px;
}
.pw-section-header p { font-size: 1.1rem; color: var(--pw-text-light); }

.pw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsywna siatka */
    gap: 30px;
}

.pw-card {
    background: var(--pw-bg-card);
    padding: 40px;
    border-radius: var(--pw-border-radius); /* Nowoczesne zaokrąglenie */
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--pw-shadow);
}

.pw-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pw-shadow-hover);
    border-color: var(--pw-blue);
}

.pw-icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--pw-blue);
    transition: background 0.3s;
}

.pw-card:hover .pw-icon { background: var(--pw-blue); color: var(--pw-white); }

.pw-icon svg { width: 30px; height: 30px; }

.pw-card h3 {
    font-size: 1.35rem;
    color: var(--pw-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.pw-card p {
    color: var(--pw-text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Wypycha link na dół */
}

.pw-link {
    color: var(--pw-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.pw-card:hover .pw-link { gap: 10px; }

/* --- SEKCJA SEO TEXT (E-E-A-T) --- */
.pw-seo-content {
    background-color: var(--pw-white);
    padding: 100px 0;
    border-top: 1px solid #e2e8f0;
}

.pw-seo-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.pw-seo-header { margin-bottom: 50px; }
.pw-seo-header h2 {
    font-size: 2rem;
    color: var(--pw-navy);
    margin-bottom: 20px;
    font-weight: 800;
}
.pw-divider {
    width: 80px;
    height: 4px;
    background: var(--pw-blue);
    border-radius: 2px;
}

.pw-seo-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.pw-seo-content h3 {
    font-size: 1.4rem;
    color: var(--pw-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.pw-seo-content p {
    color: var(--pw-text-main);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.pw-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pw-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--pw-text-main);
    line-height: 1.6;
}
.pw-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pw-blue);
    font-weight: bold;
}

.pw-seo-footer-text {
    background: var(--pw-bg-light);
    padding: 30px;
    border-radius: var(--pw-border-radius);
    border-left: 4px solid var(--pw-blue);
}
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .pw-hero h1 { font-size: 2.2rem; }
    .pw-buttons { flex-direction: column; width: 100%; }
    .pw-btn { width: 100%; text-align: center; }
    .pw-seo-columns { grid-template-columns: 1fr; gap: 30px; }
    .pw-grid { grid-template-columns: 1fr; }
}






/* --- STYLIZACJA STRON KATEGORII (ARCHIWUM) --- */

/* 1. Nagłówek Kategorii (Ten pasek z napisem "Pozycjonowanie") */
body.archive .ast-archive-description {
    background-color: #0f172a; /* Twój Granat */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

body.archive .ast-archive-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

/* 2. Siatka wpisów (Karty artykułów) */
/* Resetujemy style Astry dla karty, żeby zbudować własne */
body.archive article {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px; /* Zaokrąglenia jak na stronie głównej */
    padding: 0 !important; /* Reset paddingu Astry */
    overflow: hidden; /* Żeby nic nie wystawało */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%; /* Równe wysokości kart */
}

/* Efekt uniesienia po najechaniu na kartę */
body.archive article:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563eb; /* Niebieska ramka po najechaniu */
}

/* Wewnętrzny kontener karty (Padding dla treści) */
body.archive .ast-article-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 3. "Badge" Kategorii nad tytułem */
body.archive .cat-links a {
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

body.archive .cat-links a:hover {
    background-color: #2563eb;
    color: #fff;
}

/* 4. Tytuł wpisu na karcie */
body.archive .entry-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

body.archive .entry-title a {
    color: #0f172a; /* Ciemny tekst */
    text-decoration: none;
    transition: color 0.2s;
}

body.archive .entry-title a:hover {
    color: #2563eb; /* Niebieski po najechaniu */
}

/* 5. Meta dane (Data, Autor) */
body.archive .entry-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

body.archive .entry-meta a {
    color: #64748b;
    text-decoration: none;
}

/* 6. Zajawka (Excerpt) */
body.archive .ast-excerpt-container p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 7. Naprawa układu Grid (żeby karty były równe i nie rozjeżdżały się) */
body.archive .ast-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Responsywny grid */
    gap: 30px;
}

/* Wyłączamy stare style float Astry */
body.archive .ast-grid-common-col {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Mobile fix */
@media (max-width: 768px) {
    body.archive .ast-row {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
    }
    body.archive .ast-archive-description {
        padding: 40px 20px;
    }
    body.archive .ast-archive-title {
        font-size: 2rem;
    }
}


/* --- NAPRAWA STRONY KATEGORII (FINALNA) --- */

/* 1. Naprawa koloru nagłówka (Biały tekst na granatowym) */
body.archive .ast-archive-description h1,
body.archive .ast-archive-description .page-title {
    color: #ffffff !important;
    opacity: 1 !important; /* Usuwa ewentualną przezroczystość */
}

/* 2. Centrowanie całej zawartości kategorii (żeby nie uciekało na boki) */
body.archive #content .ast-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* 3. Ustawienie siatki wpisów (Rozciąganie kart) */
body.archive .ast-row {
    display: grid !important;
    /* auto-fit sprawi, że 2 karty wypełnią całą szerokość, a 3 karty podzielą ją na 3 */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important; 
    gap: 30px !important;
    justify-content: center !important;
}

/* 4. Ukrycie paska bocznego na kategoriach (dla pełnej szerokości siatki) */
body.archive #secondary {
    display: none !important;
}

body.archive #primary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 5. Upewnienie się, że karty mają równą wysokość */
body.archive article {
    height: 100% !important;
    width: 100% !important;
}









/* --- CZYTELNOŚĆ TEKSTU NA BLOGU (TYLKO WPISY) --- */

/* 1. Zmieniamy kolor zwykłego tekstu na ciemny i wyraźny */
body.single-post .entry-content p,
body.single-post .entry-content li {
    color: #1e293b !important; /* Ciemny szary/granat - idealny kontrast */
    font-weight: 400 !important; /* Normalna grubość (nie pocieniona) */
    font-size: 18px !important;  /* Optymalna wielkość do czytania */
    line-height: 1.8 !important; /* Wygodny odstęp między liniami */
}

/* 2. Nagłówki w treści (H2, H3) - jeszcze ciemniejsze */
body.single-post .entry-content h2,
body.single-post .entry-content h3,
body.single-post .entry-content h4 {
    color: #0f172a !important; /* Twój główny brandowy granat */
    font-weight: 700 !important;
}

/* 3. Pogrubienia (strong) - żeby się wyróżniały */
body.single-post .entry-content strong,
body.single-post .entry-content b {
    color: #000000 !important; /* Czysta czerń dla najważniejszych słów */
    font-weight: 700 !important;
}















/* --- SEKCJA O NAS (STYLE) --- */

/* 1. Hero O Nas */
.pw-about-hero {
    background-color: var(--pw-navy);
    /* Delikatny gradient w tle dla głębi */
    background-image: linear-gradient(180deg, var(--pw-navy) 0%, #1e293b 100%);
    padding: 100px 0 80px 0;
    color: var(--pw-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pw-about-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--pw-white);
}

.pw-about-hero .pw-lead {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Pasek Statystyk */
.pw-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 50px;
    flex-wrap: wrap;
}

.pw-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pw-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--pw-blue); /* Niebieski akcent */
    line-height: 1;
    margin-bottom: 5px;
}

.pw-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

/* 2. Sekcja Historia (Split Layout) */
.pw-about-content {
    padding: 100px 0;
    background-color: var(--pw-white);
}

.pw-split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.pw-split-text {
    flex: 1;
}

.pw-split-text h2 {
    font-size: 2.2rem;
    color: var(--pw-navy);
    margin-bottom: 25px;
    font-weight: 800;
}

.pw-split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pw-text-main);
    margin-bottom: 20px;
}

.pw-split-text strong {
    color: var(--pw-navy);
}

/* Wizualna karta po prawej */
.pw-split-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pw-visual-card {
    background: var(--pw-bg-light);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: var(--pw-shadow);
    max-width: 400px;
    position: relative;
}

/* Ozdobna ramka */
.pw-visual-card::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--pw-blue);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.pw-visual-icon {
    width: 80px;
    height: 80px;
    background: var(--pw-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--pw-blue);
    box-shadow: var(--pw-shadow);
}
.pw-visual-icon svg { width: 40px; height: 40px; }

.pw-visual-card h3 {
    margin-bottom: 10px;
    color: var(--pw-navy);
}

/* 3. Sekcja Wartości */
.pw-about-values {
    background-color: var(--pw-bg-light);
    padding: 100px 0;
}

.pw-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pw-value-card {
    background: var(--pw-white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.pw-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--pw-blue);
}

.pw-val-num {
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9; /* Bardzo jasny szary numer w tle */
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
    line-height: 1;
}

.pw-value-card h3 {
    font-size: 1.4rem;
    color: var(--pw-navy);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.pw-value-card p {
    color: var(--pw-text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* CTA na dole */
.pw-about-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.pw-about-cta h3 {
    font-size: 2rem;
    color: var(--pw-navy);
    margin-bottom: 30px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .pw-about-header h1 { font-size: 2.5rem; }
    .pw-split-layout { flex-direction: column; gap: 40px; }
    .pw-stats-row { gap: 30px; }
    .pw-visual-card { width: 100%; }
}













/* --- RATUNEK DLA STRON TYPU "O NAS" (Reset kontenerów) --- */

/* 1. Namierzamy główny kontener treści na zwykłych stronach (nie wpisach, nie na głównej) */
body.page:not(.home) .site-content .ast-container {
    max-width: 100% !important;  /* Pozwól na pełną szerokość */
    width: 100% !important;
    padding: 0 !important;       /* Usuń wewnętrzne odstępy motywu */
    margin: 0 !important;        /* Usuń zewnętrzne marginesy motywu */
    display: block !important;   /* Wyłącz flexboxa, który może przesuwać */
}

/* 2. Upewniamy się, że główny obszar treści też nie ma marginesów */
body.page:not(.home) #primary {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* 3. Ostateczne zabezpieczenie dla bloków Gutenberga/Spectry */
/* To sprawia, że bloki wyrównane do "pełnej szerokości" faktycznie dotykają krawędzi */
body.page:not(.home) .entry-content .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}















/* --- FINALNE CZYSZCZENIE STRONY "O NAS" --- */

/* 1. Usuwamy białe pudełko, cienie i odstępy z kontenera strony */
body.page .ast-article-single,
body.page article {
    background: transparent !important; /* Usuwa białe tło pod spodem */
    box-shadow: none !important;        /* Usuwa cień */
    border: none !important;            /* Usuwa ramki */
    padding: 0 !important;              /* Usuwa wewnętrzne odstępy */
    margin: 0 !important;               /* Usuwa zewnętrzne odstępy */
}

/* 2. Podciągamy treść maksymalnie do góry (pod nagłówek) */
body.page .site-content {
    padding-top: 0 !important;
}

body.page .ast-container {
    margin-top: 0 !important;
}

/* 3. Zabezpieczenie, żeby nie było białego paska nad Hero */
body.page .entry-content {
    margin-top: 0 !important;
}

/* 4. Naprawa przycisków (Wymuszenie białego koloru tekstu wszędzie) */
.pw-btn, 
.pw-btn:visited, 
.pw-btn:hover, 
.pw-btn:active,
.pw-btn-primary,
.pw-btn-outline {
    color: #ffffff !important;
}






/* --- NOWOCZESNE ZAOKRĄGLENIA (STYLING PREMIUM) --- */

/* 1. Zaokrąglenie dołu Sekcji Hero (Granatowej) */
.pw-about-hero {
    border-bottom-left-radius: 60px !important;
    border-bottom-right-radius: 60px !important;
    position: relative;
    z-index: 5; /* Musi być wyżej niż sekcja pod nią */
    /* Delikatny cień rzucany na sekcję poniżej */
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

/* 2. Zaokrąglenie dołu Sekcji z Treścią (Białej) */
.pw-about-content {
    border-bottom-left-radius: 60px !important;
    border-bottom-right-radius: 60px !important;
    position: relative;
    z-index: 4;
    /* Odsunięcie minusowe, żeby wsunęła się lekko pod Hero (opcjonalny efekt głębi) */
    margin-top: -40px !important; 
    padding-top: 120px !important; /* Kompensata marginesu */
}

/* 3. Zaokrąglenie dołu Sekcji Wartości (Szarej) */
.pw-about-values {
    border-bottom-left-radius: 60px !important;
    border-bottom-right-radius: 60px !important;
    position: relative;
    z-index: 3;
}

/* 4. Zaokrąglenia Kart i Elementów Wewnętrznych */

/* Karta wizualna (ta z ikoną kodu) */
.pw-visual-card {
    border-radius: 30px !important;
    overflow: hidden; /* Żeby nic nie wystawało */
}

/* Ramka ozdobna wokół karty wizualnej */
.pw-visual-card::before {
    border-radius: 30px !important;
}

/* Karty z wartościami (01, 02, 03) */
.pw-value-card {
    border-radius: 24px !important;
}

/* 5. Przycisk CTA na dole */
.pw-about-cta .pw-btn {
    border-radius: 50px !important;
}

/* --- MOBILE (Mniejsze łuki na telefonie) --- */
@media (max-width: 768px) {
    .pw-about-hero,
    .pw-about-content,
    .pw-about-values {
        border-bottom-left-radius: 30px !important;
        border-bottom-right-radius: 30px !important;
    }
    
    .pw-about-content {
        margin-top: 0 !important;
        padding-top: 60px !important;
    }
}









/* --- STRONA KONTAKT (SIMPLE & CLEAN) --- */

/* Główna sekcja na cały ekran */
.pw-contact-fullscreen {
    background-color: var(--pw-navy);
    /* Subtelny gradient */
    background-image: radial-gradient(circle at top, #1e293b 0%, var(--pw-navy) 60%);
    min-height: 80vh; /* Zajmuje większość ekranu */
    display: flex;
    align-items: center; /* Centrowanie pionowe */
    justify-content: center; /* Centrowanie poziome */
    text-align: center;
    color: var(--pw-white);
    padding: 60px 20px;
    
    /* Twoje firmowe zaokrąglenie na dole */
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-bottom: 40px;
}

.pw-contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Ikona */
.pw-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    color: var(--pw-blue);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.pw-contact-icon svg {
    width: 40px;
    height: 40px;
}

/* Typografia */
.pw-contact-fullscreen h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--pw-white);
}

.pw-contact-desc {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 50px;
}

.pw-contact-desc strong {
    color: var(--pw-white);
}

/* Box z E-mailem */
.pw-email-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s;
}

.pw-email-box:hover {
    transform: translateY(-5px);
    border-color: var(--pw-blue);
    background: rgba(255, 255, 255, 0.08);
}

.pw-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 10px;
    font-weight: 600;
}

.pw-email-link {
    font-size: 2rem; /* Duży, wyraźny font */
    font-weight: 700;
    color: var(--pw-blue) !important;
    text-decoration: none !important;
    word-break: break-all; /* Żeby nie rozwaliło na mobile */
    transition: color 0.3s;
}

.pw-email-link:hover {
    color: var(--pw-white) !important;
}

.pw-contact-sub {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .pw-contact-fullscreen {
        min-height: auto;
        padding: 80px 20px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .pw-contact-fullscreen h1 { font-size: 2.5rem; }
    .pw-email-link { font-size: 1.4rem; }
}









/* --- NAPRAWA MENU MOBILNEGO: NIEBIESKIE LINKI --- */

/* 1. Tło menu mobilnego ustawiamy na BIAŁE */
.ast-mobile-header-wrap .ast-mobile-header-content,
.ast-builder-menu-mobile .main-navigation {
    background-color: #ffffff !important;
}

/* 2. Kolor linków - Twój NIEBIESKI (wyraźny) */
.ast-mobile-header-wrap .menu-link,
#ast-hf-mobile-menu .menu-link {
    color: #2563eb !important; /* Brandowy niebieski */
    font-weight: 600 !important;
    border-bottom: 1px solid #f1f5f9 !important; /* Szara linia oddzielająca */
}

/* 3. Link po najechaniu / kliknięciu - Ciemny Granat */
.ast-mobile-header-wrap .menu-link:hover,
.ast-mobile-header-wrap .menu-link:active {
    color: #0f172a !important;
}

/* 4. Aktywny element (np. E-commerce, gdy tam jesteś) */
.ast-mobile-header-wrap .current-menu-item > .menu-link {
    color: #0f172a !important; /* Ciemny tekst */
    background-color: #eff6ff !important; /* Bardzo jasne niebieskie tło */
    font-weight: 700 !important;
}

















/* WPForms w karcie kontaktu – styl jak customowy formularz */
.az-contact-form--wpforms .wpforms-field-container {
  margin: 0;
}

/* Pojedyncze pola */
.az-contact-form--wpforms .wpforms-field {
  margin: 0 0 14px;
  padding: 0;
}

/* Labelki */
.az-contact-form--wpforms .wpforms-field-label {
  display: block;
  font-size: 0.78rem;      /* jak poprzednio */
  font-weight: 500;
  color: #0f172a;          /* ciemny navy */
  margin: 0 0 4px;
}

/* Gwiazdka required */
.az-contact-form--wpforms .wpforms-required-label {
  color: #ef4444;
  font-weight: 600;
}

/* Pola tekstowe + email + numer + tekst ukryty */
.az-contact-form--wpforms input.wpforms-field-medium,
.az-contact-form--wpforms textarea.wpforms-field-medium {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 9px 11px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #0f172a;
  outline: none;
  box-shadow: 0 0 0 0 transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* Focus – jak w starym formularzu */
.az-contact-form--wpforms input.wpforms-field-medium:focus,
.az-contact-form--wpforms textarea.wpforms-field-medium:focus {
  background: #ffffff;
  border-color: #60a5fa;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.45);
}

/* Textarea wysokość */
.az-contact-form--wpforms .wpforms-field-textarea textarea.wpforms-field-medium {
  min-height: 110px;
  resize: vertical;
}

/* Ukrycie honeypotów (pola anty-spam) */
.az-contact-form--wpforms .wpforms-field[data-field-id="5"],
.az-contact-form--wpforms .wpforms-field[data-field-id="6"] {
  display: none !important;
}

/* Kontener przycisku wysyłki */
.az-contact-form--wpforms .wpforms-submit-container {
  margin-top: 8px;
}

/* Przycisk Wyślij – jak az-btn az-btn-primary */
.az-contact-form--wpforms .wpforms-submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
}

/* Hover / active */
.az-contact-form--wpforms .wpforms-submit:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.az-contact-form--wpforms .wpforms-submit:active {
  transform: scale(0.97);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

/* Info o błędach pod polami – delikatnie, bez rozwalania layoutu */
.az-contact-form--wpforms .wpforms-error {
  font-size: 0.75rem;
  color: #b91c1c;
  margin-top: 3px;
}












/* --- STOPKA (FOOTER) --- */

.pw-footer-section {
    background-color: #0f172a; /* Ciemny granat */
    color: #cbd5e1; /* Jasny szary tekst */
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Układ siatki (3 kolumny) */
.pw-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Pierwsza kolumna szersza */
    gap: 60px;
    margin-bottom: 60px;
}

/* Nagłówki kolumn */
.pw-footer-logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pw-footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Opis w pierwszej kolumnie */
.pw-footer-about p {
    line-height: 1.7;
    opacity: 0.8;
}

/* Listy linków */
.pw-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pw-footer-links li {
    margin-bottom: 12px;
}

.pw-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.pw-footer-links a:hover {
    color: #2563eb; /* Niebieski po najechaniu */
    transform: translateX(5px); /* Lekkie przesunięcie w prawo */
}

/* Separator dla sekcji prawnej */
.pw-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
    width: 50px;
}

/* Pasek Copyright */
.pw-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 900px) {
    .pw-footer-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
        gap: 40px;
        text-align: center;
    }
    
    .pw-separator {
        margin: 15px auto; /* Wyśrodkowanie separatora */
    }
    
    .pw-footer-about p {
        max-width: 400px;
        margin: 0 auto;
    }
}


/* --- NAPRAWA STOPKI (ROZCIĄGNIĘCIE I KOLORY) --- */

/* 1. Malujemy CAŁĄ sekcję stopki Astry na Twój granat */
.site-footer,
.site-below-footer-wrap,
.ast-builder-grid-row-container-inner {
    background-color: #0f172a !important; /* Granat */
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. Usuwamy tło z Twojego kodu HTML (żeby nie było podwójne) */
.pw-footer-section {
    background-color: transparent !important; /* Przezroczyste */
    border-top: none !important;
    padding-top: 60px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* 3. Naprawiamy wyrównanie (na screenie jest wyśrodkowane, co wygląda słabo przy 3 kolumnach) */
.pw-footer-grid {
    text-align: left !important;
    max-width: 1200px !important; /* Trzymamy treść w ryzach */
    margin: 0 auto 40px auto !important; /* Centrujemy samą siatkę na ekranie */
    padding-left: 20px;
    padding-right: 20px;
}

/* 4. Resetujemy dziwne marginesy Astry w sekcji Copyright */
.ast-footer-copyright {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.site-footer-below-section-1 {
    width: 100% !important;
}

/* 5. Mobile - na telefonie może być wyśrodkowane */
@media (max-width: 921px) {
    .pw-footer-grid {
        text-align: center !important;
    }
}
















/* === MODERN LANDING PAGE CSS (2025 STYLE) === */

:root {
    /* Paleta Kolorów - Modern Blue */
    --primary-color: #0F62FE;       /* Intensywny, nowoczesny niebieski (IBM Blue style) */
    --primary-dark: #0043CE;        /* Ciemniejszy odcień dla hover */
    --secondary-color: #001D6C;     /* Granatowy, głęboki */
    --accent-color: #3DDBA8;        /* Akcent (np. mięta/zieleń dla sukcesu) */
    --text-main: #161616;           /* Prawie czarny dla tekstu */
    --text-muted: #525252;          /* Szary dla opisów */
    --bg-light: #F4F7FB;            /* Bardzo jasny niebieski/szary dla tła sekcji */
    --white: #ffffff;
    
    /* Typografia i Spacing */
    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
    --border-radius: 8px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    
    /* Cienie (Soft Shadows) */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(15, 98, 254, 0.12); /* Delikatna niebieska poświata */
}

/* Reset i Baza */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-stack); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* Uniwersalne kontenery */
.lp-section { padding: 80px 0; width: 100%; position: relative; }
.lp-container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.lp-bg-light { background-color: var(--bg-light); }

/* Typografia */
.lp-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; color: var(--white); }
.lp-section-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 16px; color: var(--text-main); }
.lp-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px auto; }
.lp-lead { font-size: 1.25rem; color: #e0e0e0; margin-bottom: 40px; max-width: 600px; }
.lp-highlight { color: var(--accent-color); position: relative; z-index: 1; }
.center { text-align: center; }

/* Przyciski */
.lp-btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.lp-btn { 
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; font-weight: 600; text-decoration: none; 
    border-radius: var(--border-radius); transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.lp-btn-primary { background-color: var(--primary-color); color: var(--white); }
.lp-btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-btn-outline { background-color: transparent; border-color: var(--white); color: var(--white); }
.lp-btn-outline:hover { background-color: rgba(255,255,255,0.1); }
.lp-btn-secondary { background-color: var(--text-main); color: var(--white); font-size: 0.9rem; padding: 12px 24px; }
.lp-btn-white { background-color: var(--white); color: var(--primary-color); }
.lp-btn-white:hover { background-color: #f0f0f0; }

/* Grid Systems */
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* === SEKCJE SZCZEGÓŁOWE === */

/* 1. Hero Section */
.lp-hero { 
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white); padding: 120px 0 100px 0;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); /* Nowoczesne ścięcie */
}
.lp-tag { 
    display: inline-block; padding: 6px 12px; background: rgba(255,255,255,0.15); 
    border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(5px);
}

/* 2. Trust Bar */
.lp-trust { padding: 40px 0; border-bottom: 1px solid #eee; }
.lp-trust-text { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.lp-logos-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; }
.lp-logo-placeholder { font-weight: 700; color: #ccc; font-size: 1.5rem; }

/* 3. Features & Visuals */
.lp-check-list { list-style: none; margin-top: 24px; }
.lp-check-list li { padding-left: 32px; position: relative; margin-bottom: 16px; color: var(--text-muted); }
.lp-check-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary-color); font-weight: bold;
}
.lp-visual-block .lp-img-placeholder {
    width: 100%; height: 400px; background-color: #ddd; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; color: #888;
    background-image: linear-gradient(45deg, #f3f3f3 25%, transparent 25%, transparent 75%, #f3f3f3 75%, #f3f3f3), linear-gradient(45deg, #f3f3f3 25%, transparent 25%, transparent 75%, #f3f3f3 75%, #f3f3f3);
    background-size: 20px 20px; background-position: 0 0, 10px 10px; /* Wzór placeholder */
}

/* 4. Process Cards */
.lp-header-center { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.lp-card { 
    background: var(--white); padding: 40px 32px; border-radius: 16px; 
    box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03);
    position: relative; overflow: hidden;
}
.lp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary-color); }
.lp-card-icon { 
    font-size: 3rem; font-weight: 900; color: rgba(15, 98, 254, 0.1); 
    position: absolute; top: 20px; right: 20px; line-height: 1;
}
.lp-card h3 { margin-bottom: 16px; font-size: 1.25rem; color: var(--text-main); }
.lp-card p { font-size: 0.95rem; color: var(--text-muted); }

/* 5. Local Section */
.lp-locations { 
    background: rgba(15, 98, 254, 0.05); padding: 24px; border-radius: var(--border-radius); 
    margin: 32px 0; border-left: 4px solid var(--primary-color);
}

/* 6. CTA Banner */
.lp-cta-banner { 
    background-color: var(--primary-color); color: var(--white); text-align: center;
    background-image: radial-gradient(circle at top right, var(--accent-color), transparent 40%);
}
.lp-banner-content h2 { color: var(--white); margin-bottom: 16px; }

/* 7. FAQ */
.lp-faq-wrapper { max-width: 800px; margin: 0 auto; }
.lp-faq-item { 
    background: var(--white); border-radius: var(--border-radius); 
    margin-bottom: 16px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.lp-faq-item summary { 
    padding: 24px; cursor: pointer; font-weight: 600; position: relative; list-style: none;
}
.lp-faq-item summary::after {
    content: "+"; position: absolute; right: 24px; font-weight: 300; font-size: 1.5rem;
}
.lp-faq-item[open] summary::after { content: "-"; }
.lp-faq-content { padding: 0 24px 24px 24px; color: var(--text-muted); border-top: 1px solid #f0f0f0; }

/* 8. Contact Form */
.lp-form-wrapper { 
    background: var(--white); padding: 40px; border-radius: 16px; box-shadow: var(--shadow-md);
}
.lp-form-group { margin-bottom: 20px; }
.lp-form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.lp-form-group input { 
    width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 6px; 
    font-size: 1rem; transition: var(--transition);
}
.lp-form-group input:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.1); }
.full-width { width: 100%; }

/* Responsywność (Mobile) */
@media (max-width: 992px) {
    .lp-title { font-size: 2.5rem; }
    .lp-grid-2, .lp-grid-3 { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero { text-align: center; padding: 80px 0; }
    .lp-btn-group { justify-content: center; }
    .lp-hero-content { margin: 0 auto; }
}




















/* === MODERN PREMIUM SEO STYLE (2025) === */

:root {
    /* Paleta Kolorów Premium */
    --color-primary: #0052FF;       /* Intensywny, nowoczesny niebieski */
    --color-primary-dark: #0039CB;  /* Ciemniejszy dla hover */
    --color-secondary: #0A1930;     /* Bardzo ciemny granat (prawie czarny) */
    --color-accent: #00D4FF;        /* Jasny błękitny akcent (gradienty) */
    
    --bg-body: #FFFFFF;
    --bg-light: #F8FAFC;            /* Bardzo jasny szary/niebieski tło */
    --bg-dark: #0A1930;             /* Ciemne tło sekcji */

    --text-main: #111827;           /* Główny tekst */
    --text-muted: #4B5563;          /* Tekst poboczny */
    --text-light: #9CA3AF;          /* Jasny tekst na ciemnym tle */
    --text-white: #FFFFFF;

    /* Gradienty */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-secondary) 0%, #050C18 100%);
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --section-spacing: 100px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -10px rgba(0, 82, 255, 0.15); /* Niebieska poświata */
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }

/* Typography Utility Classes */
.seo-title-xl { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--color-secondary); }
.seo-title-lg { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--color-secondary); }
.seo-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 700px; margin-bottom: 48px; }
.seo-lead { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; max-width: 800px; line-height: 1.6; }
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.text-white { color: var(--text-white) !important; }
.text-blue-100 { color: #DBEAFE !important; }
.text-gray-300 { color: #D1D5DB !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Layout Utility Classes */
.seo-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; }
.seo-container { width: 90%; max-width: var(--container-max); margin: 0 auto; }
.seo-narrow-container { max-width: 800px; }
.seo-bg-light { background-color: var(--bg-light); }
.seo-bg-dark { background: var(--gradient-dark); }

/* Buttons */
.seo-btn-wrapper { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.seo-btn { 
    display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; 
    font-weight: 600; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; font-size: 1rem;
}
.seo-btn-primary { 
    background: var(--color-primary); color: white; box-shadow: var(--shadow-premium);
}
.seo-btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.seo-btn-ghost { 
    background: transparent; color: var(--color-primary); border: 2px solid rgba(0, 82, 255, 0.1);
}
.seo-btn-ghost:hover { background: rgba(0, 82, 255, 0.05); border-color: var(--color-primary); }
.full-width { width: 100%; }
.text-lg { font-size: 1.125rem; }

/* === SEKCJA 1: HERO PREMIUM === */
.seo-hero { 
    padding-top: 120px; padding-bottom: 100px; 
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 82, 255, 0.05) 0%, transparent 50%);
}
.seo-hero-grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
.seo-badge { 
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; 
    background: #EFF6FF; color: var(--color-primary); border-radius: 50px; 
    font-weight: 600; font-size: 0.875rem; margin-bottom: 24px;
}
.seo-stats-grid { 
    display: inline-flex; gap: 40px; padding: 32px; background: white; 
    border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}
.seo-stat-card { display: flex; flex-direction: column; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--color-primary); line-height: 1; }
.stat-label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; margin-top: 8px; max-width: 180px; }

/* === SEKCJA 2: BENTO GRID (Dzielnice) === */
.seo-bento-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 24px; 
}
.bento-card { 
    background: white; padding: 32px; border-radius: var(--border-radius-xl); 
    box-shadow: var(--shadow-sm); transition: all 0.3s ease; position: relative; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento-large { grid-column: span 3; display: flex; align-items: center; justify-content: space-between; }
.bg-blue-dark { background: var(--gradient-primary); color: white; }
.bg-blue-dark h3 { color: white; font-size: 1.75rem; margin-bottom: 16px; }
.bg-blue-dark p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 700px; }
.bento-icon-bg { font-size: 8rem; opacity: 0.2; position: absolute; right: -20px; bottom: -20px; rotate: -15deg; }
.card-icon-small { font-size: 2rem; margin-bottom: 16px; }
.bento-card h4 { font-size: 1.25rem; margin-bottom: 12px; color: var(--color-secondary); }
.bento-card p { font-size: 0.95rem; color: var(--text-muted); }

/* === SEKCJA 3: MODERN CARDS (Filary) === */
.seo-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.seo-card-modern { 
    background: white; padding: 32px; border-radius: var(--border-radius-lg); 
    box-shadow: var(--shadow-sm); transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.03);
}
.seo-card-modern:hover { box-shadow: var(--shadow-premium); border-color: rgba(0, 82, 255, 0.2); }
.card-icon-box { 
    width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.icon-blue { background: #EFF6FF; color: var(--color-primary); }
.icon-purple { background: #F5F3FF; color: #7C3AED; }
.icon-green { background: #ECFDF5; color: #059669; }
.icon-orange { background: #FFF7ED; color: #EA580C; }
.icon-red { background: #FEF2F2; color: #DC2626; }
.icon-cyan { background: #ECFEFF; color: #0891B2; }
.seo-card-modern h3 { font-size: 1.25rem; margin-bottom: 16px; color: var(--color-secondary); }
.seo-card-modern p { font-size: 0.95rem; color: var(--text-muted); }

/* === SEKCJA 4: SPLIT SCREEN (E-commerce) === */
.seo-split-screen { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.seo-tag-small { text-transform: uppercase; letter-spacing: 1px; font-size: 0.875rem; color: var(--color-accent); font-weight: 600; display: block; margin-bottom: 16px; }
.seo-lead-small { font-size: 1.125rem; margin-bottom: 40px; }
.seo-comparison-grid { display: grid; gap: 24px; }
.comp-block { background: rgba(255,255,255,0.05); padding: 24px; border-radius: var(--border-radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.comp-block h4 { color: white; margin-bottom: 8px; font-size: 1.1rem; }
.comp-block p { color: var(--text-light); font-size: 0.95rem; }
.seo-split-visual { height: 500px; background: radial-gradient(circle, rgba(0,82,255,0.2) 0%, transparent 70%); border-radius: var(--border-radius-xl); position: relative; }
/* Placeholder na abstrakcyjną grafikę - można zastąpić SVG */
.abstract-chart-visual { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM32 63c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm57-13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230052FF' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"); }

/* === SEKCJA 5: FAQ (Modern) === */
.seo-faq-wrapper { display: grid; gap: 16px; }
.seo-faq-item { background: white; border-radius: var(--border-radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all 0.3s ease; }
.seo-faq-item:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.seo-faq-item summary { 
    padding: 24px; font-weight: 600; cursor: pointer; position: relative; list-style: none; font-size: 1.1rem; color: var(--color-secondary);
}
.seo-faq-item summary::after { 
    content: "+"; position: absolute; right: 24px; color: var(--color-primary); font-size: 1.5rem; font-weight: 300; transition: transform 0.3s;
}
.seo-faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.seo-faq-content { padding: 0 24px 24px; color: var(--text-muted); border-top: 1px solid var(--bg-light); }

/* === SEKCJA 6: CTA FORM (Final Push) === */
.seo-cta-section { background: var(--gradient-dark); padding: 80px 0; }
.seo-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.seo-checklist-modern { list-style: none; margin-top: 32px; }
.seo-checklist-modern li { 
    color: var(--text-white); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; font-weight: 500;
}
.seo-checklist-modern li::before { 
    content: "✓"; display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; background: var(--color-accent); color: var(--color-secondary);
    border-radius: 50%; font-weight: bold; font-size: 0.875rem;
}
.seo-form-card { 
    background: white; padding: 40px; border-radius: var(--border-radius-xl); box-shadow: var(--shadow-premium);
}
.seo-form-card h3 { text-align: center; margin-bottom: 24px; font-size: 1.5rem; color: var(--color-secondary); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--color-secondary); }
.form-group input { 
    width: 100%; padding: 14px; border: 2px solid var(--border); border-radius: 8px; font-size: 1rem; transition: all 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.1); }
.form-disclaimer { text-align: center; font-size: 0.875rem; color: var(--text-muted); margin-top: 16px; }

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 1024px) {
    .seo-hero-grid, .seo-split-screen, .seo-cta-grid { grid-template-columns: 1fr; gap: 48px; }
    .seo-hero { text-align: center; padding-top: 80px; }
    .seo-btn-wrapper { justify-content: center; }
    .seo-stats-grid { width: 100%; justify-content: space-around; }
    .bento-large { grid-column: span 1; }
    .seo-bento-grid { grid-template-columns: 1fr; }
    .seo-split-visual { height: 300px; order: -1; }
}

@media (max-width: 768px) {
    .seo-title-xl { font-size: 2.5rem; }
    .seo-title-lg { font-size: 2rem; }
    .seo-btn { width: 100%; }
    .seo-stats-grid { flex-direction: column; gap: 24px; text-align: center; }
}



























:root {
    /* Paleta kolorów - Dark Tech Theme */
    --bg-main: #020204;       /* Prawie czarny, lekko wpadający w granat */
    --bg-card: #0c0c0e;       /* Ciemnoszary dla kart */
    --bg-card-hover: #121215; /* Jaśniejszy szary po najechaniu */
    
    --accent-primary: #3b82f6; /* Jasny niebieski */
    --accent-glow: rgba(59, 130, 246, 0.5); /* Poświata */
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    
    --text-white: #ffffff;
    --text-body: #a1a1aa;     /* Szary, czytelny tekst */
    --text-dark: #000000;
    
    --border-subtle: #1f1f23; /* Bardzo delikatna ramka */
    --border-active: #3b82f6;
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- GŁÓWNY WRAPPER --- */
.seo-landing-wrapper {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Wygładzanie czcionek */
}

/* --- SEKCJE I KONTENERY --- */
.ls-section {
    padding: 100px 20px;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

/* Wymuszamy ciemny styl wszędzie, nadpisując poprzednie klasy */
.ls-dark, .ls-light, .ls-blue, .ls-blue-dark {
    background-color: var(--bg-main);
}

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

/* --- TYPOGRAFIA --- */
h2.ls-title, h2.ls-title-center, h2.ls-title-dark, h2.ls-title-white {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 3rem; /* Duże nagłówki */
    letter-spacing: -0.03em;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

/* Gradient na najważniejszych nagłówkach */
.ls-title strong, h2.ls-title strong {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-subtitle, .ls-subtitle-center {
    font-size: 1.25rem;
    color: var(--text-body);
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 40px;
}

.ls-subtitle-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ls-accent-text {
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.ls-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin-top: 30px;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* --- LAYOUTY (GRIDY) --- */
.ls-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.ls-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ls-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Więcej miejsca na tekst */
    gap: 60px;
    align-items: center;
}

/* --- KARTY (NOWOCZESNY LOOK) --- */
.ls-card, .ls-feature-box, .ls-price-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.ls-card:hover, .ls-feature-box:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

/* Dodatkowy efekt "światła" po najechaniu */
.ls-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ls-card:hover::before {
    transform: scaleX(1);
}

/* Ikony w kartach */
.ls-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-primary);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.ls-card h3, .ls-feature-box h4 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* --- IKONA "FACTORY vs GEM" --- */
.ls-icon-feature {
    background: linear-gradient(180deg, rgba(20,20,25,0.5) 0%, rgba(10,10,12,0.5) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ls-icon-lg {
    width: 64px;
    height: 64px;
    stroke: var(--text-white);
    margin-bottom: 20px;
}

.ls-icon-label {
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- LISTY --- */
.ls-list li {
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    color: var(--text-body);
}

.ls-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-primary);
}

.ls-list strong {
    color: var(--text-white);
    font-weight: 600;
}

/* --- SEKCJA E-COMMERCE (GRID 2 FEATURE) --- */
.ls-grid-2-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* --- SEKCJA TECH (Niebieskie tło zastępujemy ciemnym z gradientem) --- */
.ls-tech-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ls-tech-icons svg {
    width: 180px;
    height: 180px;
    stroke: var(--accent-primary);
    opacity: 0.2;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
    100% { opacity: 0.2; transform: scale(1); }
}

.ls-small-note {
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-top: 20px;
    display: block;
    font-family: monospace;
}

/* --- AUDYT (PORÓWNANIE) --- */
.ls-comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 60px;
    border: 1px solid var(--border-subtle);
}

.ls-col { padding: 50px; }
.ls-col-bad {
    background: rgba(255, 50, 50, 0.05); /* Bardzo delikatna czerwień */
    border-right: 1px solid var(--border-subtle);
}
.ls-col-good {
    background: rgba(59, 130, 246, 0.08); /* Delikatny niebieski */
    position: relative;
}
/* Wyróżnienie "Dobrej" kolumny */
.ls-col-good::after {
    content: "REKOMENDOWANE";
    position: absolute;
    top: 0; right: 0;
    background: var(--accent-primary);
    color: white;
    font-size: 0.7rem;
    padding: 5px 10px;
    border-bottom-left-radius: 8px;
    font-weight: 700;
}

.ls-col h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.ls-col ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-body);
}

.ls-col-bad ul li::before { content: "×"; color: #ef4444; position: absolute; left: 0; font-size: 1.2rem; font-weight: bold;}
.ls-col-good ul li::before { content: "✓"; color: #3b82f6; position: absolute; left: 0; font-size: 1.2rem; font-weight: bold;}

/* --- CENNIK --- */
.ls-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ls-price-box {
    text-align: left; /* Bardziej pro */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ls-price-highlight {
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    background: linear-gradient(180deg, #0c0c0e 0%, #080f1e 100%);
}

.ls-price-tier {
    font-size: 0.9rem;
    color: var(--accent-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.ls-price-val {
    font-size: 2.5rem;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 10px;
}

.ls-price-val small {
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 400;
    margin-left: 5px;
}

/* --- PRZYCISKI (CTA) --- */
.ls-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.ls-btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ls-btn-primary {
    background: var(--accent-primary);
    color: #fff;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.ls-btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.ls-btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
}

.ls-btn-outline:hover {
    border-color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

/* --- LINK BUILDING SECTION --- */
.ls-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(12,12,14,0) 100%);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

/* --- RESPONSYWNOŚĆ (MOBILE) --- */
@media (max-width: 900px) {
    .ls-grid-2, .ls-grid-3, .ls-pricing-grid, .ls-comparison-table, .ls-split-layout, .ls-grid-2-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ls-title, h2.ls-title-center {
        font-size: 2.2rem;
    }
    
    .ls-split-visual {
        display: none; /* Ukryj dużą ikonę mapy na mobile */
    }
    
    .ls-col { padding: 30px; }
    
    .ls-section { padding: 60px 20px; }
    
    .ls-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ls-btn { width: 100%; text-align: center; }
}

































/* =========================================
   1. RESET & ZMIENNE (High Contrast)
   ========================================= */
:root {
    /* Główny kolor - Electric Blue */
    --color-primary: #0055FF;
    --color-primary-dark: #003ECC;
    --color-primary-light: #EFF6FF; /* Bardzo jasne tło */

    /* Typografia - Poprawiona czytelność */
    --color-heading: #020617;       /* Prawie czarny - dla nagłówków */
    --color-text: #1E293B;          /* Ciemny grafit - dla zwykłego tekstu (nie szary!) */
    --color-text-muted: #475569;    /* Pomocniczy tekst - ciemniejszy niż wcześniej */

    /* Tła */
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;             /* Tło alternatywne */
    --bg-dark: #0B1120;             /* Ciemne tło sekcji kontakt */

    /* Design System */
    --radius-l: 32px;               /* Duże zaokrąglenia sekcji */
    --radius-m: 16px;               /* Zaokrąglenia kart */
    --radius-btn: 100px;            /* Pigułki */
    
    --container-width: 1200px;
    --section-spacing: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased; /* Wygładzanie czcionek */
}

/* =========================================
   2. TYPOGRAFIA
   ========================================= */
h1, h2, h3, h4 {
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }

/* Kluczowa zmiana dla czytelności paragrafów */
p {
    margin-bottom: 1.5rem;
    color: var(--color-text); /* Używamy ciemnego koloru #1E293B */
    font-size: 1.05rem;
    font-weight: 400;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    background: var(--color-primary-light);
    padding: 6px 12px;
    border-radius: 6px;
}

/* =========================================
   3. LAYOUT & UTILS
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow { max-width: 800px; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mb-large { margin-bottom: 64px; }

.section { padding: var(--section-spacing) 0; }

/* =========================================
   4. PRZYCISKI (Naprawione kolory)
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
}

/* Niebieski przycisk - biały tekst */
.btn--primary {
    background-color: var(--color-primary);
    color: #FFFFFF !important; /* Wymuszamy biel */
    box-shadow: 0 4px 14px 0 rgba(0, 85, 255, 0.3);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Szary przycisk - niebieski tekst */
.btn--secondary {
    background-color: var(--color-primary-light);
    color: var(--color-primary) !important;
}

.btn--secondary:hover {
    background-color: #DBEAFE;
}

/* =========================================
   5. HEADER
   ========================================= */
.site-header {
    padding: 24px 0;
    position: sticky; /* Opcjonalnie */
    top: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--color-heading); }
.main-nav a { 
    margin-left: 32px; 
    color: var(--color-text); 
    font-weight: 500; 
    text-decoration: none;
}
.main-nav .nav-btn {
    background: var(--color-heading);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
}

/* =========================================
   6. SEKCJA HERO
   ========================================= */
.section--hero {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: left; /* Czy na pewno center? Lepiej wygląda left przy dużej ilości tekstu */
}

/* Jeśli wolisz wycentrowane hero, odkomentuj: */
/* .section--hero .container { text-align: center; } */

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text); /* Ciemny tekst */
    margin-bottom: 2rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.check-icon {
    width: 18px; height: 18px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.check-icon::after {
    content: '✓'; color: white; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 10px; font-weight: bold;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-note { font-size: 0.85rem; color: var(--color-text-muted); opacity: 0.8; }

/* =========================================
   7. SEKCJA 2: KONTEKST (Szara z zaokrągleniami)
   ========================================= */
.section--alt-bg {
    /* Tu robimy trick - sekcja nie jest na całą szerokość, tylko kontener ma tło */
    padding: 0 24px; /* Margines od krawędzi ekranu */
    margin-bottom: var(--section-spacing);
}

.section--alt-bg .container {
    background-color: var(--bg-gray);
    border-radius: var(--radius-l);
    padding: 80px 40px;
    /* Opcjonalnie delikatna ramka */
    border: 1px solid #F1F5F9;
}

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

.context-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-m);
    box-shadow: 0 4px 20px -5px rgba(0,0,0,0.05); /* Delikatny cień */
    transition: transform 0.3s;
}

.context-box:hover {
    transform: translateY(-5px);
}

.context-box h3 { font-size: 1.25rem; margin-bottom: 12px; }
.context-box p { font-size: 0.95rem; margin: 0; color: var(--color-text-muted); }

/* =========================================
   8. SEKCJA PROCES
   ========================================= */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 40px;
}

/* Linia łącząca */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px; left: 0; width: 100%; height: 2px;
    background: #E2E8F0;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    background: transparent; /* Brak tła pod kafelkiem, czysto */
}

.step-number {
    width: 60px; height: 60px;
    background: var(--bg-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 0 0 8px var(--bg-white); /* Obwódka maskująca linię */
}

.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--color-text-muted); }

/* =========================================
   9. SEKCJA FEATURE (Dla kogo, Strategia)
   ========================================= */
.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section--reversed .feature-layout { direction: rtl; }
.section--reversed .feature-content { direction: ltr; }

/* Kafelki w liście "Dla kogo" */
.icon-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-gray); /* Szare kafelki pod punkty */
    padding: 16px 24px;
    border-radius: var(--radius-m);
    font-weight: 500;
    color: var(--color-heading);
    transition: 0.3s;
}

.icon-list li:hover {
    background: #F1F5F9;
    transform: translateX(5px);
}

.icon-list .icon { font-size: 1.2rem; }

/* Wizualizacje abstrakcyjne */
.feature-visual {
    height: 450px;
    border-radius: var(--radius-l);
    background: #F1F5F9; /* Placeholder szary */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Tu możesz dodać gradient jeśli wolisz */
.visual--blue-gradient { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); }

.abstract-shape {
    width: 200px; height: 200px;
    background: var(--color-primary);
    opacity: 0.1;
    border-radius: 50%;
}

/* =========================================
   10. CENNIK (Pigułki)
   ========================================= */
.pricing-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-item {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #DBEAFE;
}

/* =========================================
   11. SEKCJA KONTAKT (Rounded Dark Card)
   ========================================= */
.section--dark {
    padding: 0 24px; /* Marginesy boczne */
    margin-bottom: 60px;
}

/* To jest ta ciemna karta */
.section--dark .container {
    background-color: var(--bg-dark);
    border-radius: var(--radius-l); /* Zaokrąglenie całej sekcji */
    padding: 80px 60px;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

.section--dark h2 { color: white; margin-bottom: 24px; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-lead {
    color: #CBD5E1; /* Jasny szary tekst na ciemnym tle */
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.contact-list li {
    color: #E2E8F0;
    margin-bottom: 16px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Ikonka strzałki */
.contact-list li::before {
    content: "→";
    color: var(--color-primary); /* Jasny niebieski */
    font-weight: bold;
}

.contact-note {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #94A3B8;
}

/* Formularz - biała wyspa */
.mock-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-m);
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
}

/* =========================================
   12. MOBILE (RWD)
   ========================================= */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    
    .feature-layout, 
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    
    /* Na tablecie/mobile odwracamy wizualizację żeby była nad/pod tekstem logicznie */
    .section--reversed .feature-layout { direction: ltr; }
    
    .context-grid { grid-template-columns: 1fr; }
    
    .process-timeline { grid-template-columns: 1fr; gap: 40px; }
    .process-timeline::before { display: none; } /* Usuwamy linię na mobile */
    .process-step { display: flex; gap: 20px; text-align: left; }
    .step-number { flex-shrink: 0; margin-bottom: 0; }
    
    .section--dark .container { padding: 40px 24px; }
    .section--alt-bg .container { padding: 40px 24px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-highlights { flex-direction: column; align-items: flex-start; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    
    .header-container { flex-direction: column; gap: 16px; }
    .main-nav { display: none; } /* Ukrywamy menu na mobile (lub dodaj hamburger) */
}











/* ==========================================================================
   ZESTAW NAPRAWCZY CSS (DODAJ NA KOŃCU PLIKU)
   ========================================================================== */

/* --- 1. NAPRAWA KONTRASTU CZCIONEK (Wymuszenie ciemnego koloru) --- */
:root {
    --color-text-fixed: #1e293b; /* Bardzo ciemny szary/granat */
    --color-heading-fixed: #0f172a; /* Niemal czarny */
}

/* Wymuszamy ciemny kolor na wszystkich paragrafach, listach i opisach */
body, p, li, .section-intro, .hero-note, .process-step p, .context-box p {
    color: var(--color-text-fixed) !important;
    font-weight: 400; /* Upewniamy się, że nie są zbyt cienkie */
}

/* Wymuszamy ciemny kolor nagłówków */
h1, h2, h3, h4, h5, h6, .eyebrow {
     color: var(--color-heading-fixed) !important;
}


/* --- 2. NAPRAWA PRZYCISKÓW I ICH SEKCJI --- */
/* Usuwamy przypadkowe podkreślenia z linków będących przyciskami */
.btn, .btn:hover, .btn:focus, .btn:active, a.btn {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Naprawa centrowania sekcji przycisków w Hero */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 24px;
}

/* Upewnienie się, że tekst w Hero jest wycentrowany (jak na screenach 5, 9) */
.section--hero .container,
.hero-highlights {
    text-align: center;
    justify-content: center;
}

.lead-text, .sub-lead {
    margin-left: auto;
    margin-right: auto;
}


/* --- 3. PRZYWRÓCENIE ANIMACJI GRAFIK (Abstrakcyjne Kształty) --- */
.feature-visual {
    position: relative;
    overflow: hidden;
    /* Dodajemy domyślne tło gradientowe, jeśli nie ma obrazka */
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 24px; /* Zaokrąglenie kontenera */
}

/* Przywrócenie elementu i animacji */
.abstract-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #0055FF; /* Kolor główny */
    opacity: 0.15; /* Lekka przezroczystość */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    display: block !important; /* Wymuszenie wyświetlania */
}

/* Definicja animacji morph */
@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}


/* --- 4. POPRAWA SEKCJI KONTAKT (Kolory) --- */
/* Zmiana tła na ciemnoniebieski (elegancki) zamiast czarnego */
.section--dark .container {
    background-color: #0F172A !important; 
    border-radius: 32px;
}

/* Upewnienie się, że tekst na ciemnym tle jest jasny */
.section--dark h2,
.section--dark .eyebrow--light {
    color: white !important;
}

.contact-lead, 
.contact-list li, 
.contact-note {
     color: #CBD5E1 !important; /* Jasny szary dla kontrastu */
}

/* Kolor strzałek w liście kontaktowej */
.contact-list li::before {
    color: #60A5FA !important; /* Jasnoniebieski */
}



/* ==========================================================================
   POPRAWKI ODSTĘPÓW I WYGLĄDU SEKCJI 2 (DODAJ NA KOŃCU PLIKU CSS)
   ========================================================================== */

/* --- 1. GLOBALNE ZMNIEJSZENIE ODSTĘPÓW --- */
:root {
    /* Zmniejszamy główny odstęp między sekcjami ze 100px na 64px */
    --section-spacing: 64px !important;
}

.section {
    /* Stosujemy nowy, mniejszy padding */
    padding: var(--section-spacing) 0 !important;
}

/* Zacieśnienie odstępów wewnątrz nagłówków sekcji (Podejście, Proces) */
.container--narrow.text-center h2 {
    margin-bottom: 16px !important; /* Mniejszy odstęp pod tytułem H2 */
}

.section-intro {
    margin-bottom: 32px !important; /* Mniejszy odstęp pod paragrafem wprowadzającym */
}

/* Klasa mb-large (używana np. przed osią czasu procesu) też musi być mniejsza */
.mb-large {
    margin-bottom: 40px !important; /* Zamiast 64px */
}


/* --- 2. NOWY WYGLĄD SEKCJI "KONTEKST RYNKU" (Usunięcie szarego tła) --- */

/* Resetujemy style kontenera, żeby usunąć to szare tło */
.section--alt-bg {
    padding: var(--section-spacing) 0 !important; /* Reset paddingu */
    margin-bottom: 0 !important;
}

.section--alt-bg .container {
    background-color: transparent !important; /* USUWA SZARE TŁO */
    border-radius: 0 !important;
    padding: 0 24px !important;
    border: none !important;
}

/* Zacieśniamy odstęp między nagłówkiem a boksami w tej sekcji */
.section--alt-bg .text-center {
    margin-bottom: 40px;
}

/* Nowy styl dla boksów, żeby dobrze wyglądały na białym tle */
.context-box {
    /* Dodajemy wyraźniejszą, nowoczesną ramkę */
    border: 2px solid #E2E8F0 !important;
    /* Bardziej miękki cień */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08) !important;
    padding: 32px !important; /* Zoptymalizowany padding wewnętrzny */
}

/* Zacieśnienie odstępów wewnątrz samych boksów */
.context-box h3 {
    margin-bottom: 12px !important;
}
.context-box p {
    margin-bottom: 0 !important;
}

/* Stopka pod boksami też bliżej */
.context-footer {
    margin-top: 32px !important;
}


/* --- 3. DODATKOWE ZACIEŚNIENIA W INNYCH SEKCJACH --- */

/* Sekcja Hero - mniejsze odstępy */
.section--hero {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.lead-text {
    margin-bottom: 24px !important;
}
.hero-highlights {
    margin-bottom: 32px !important;
}

/* Sekcja Proces - mniejszy odstęp nad osią czasu */
.process-timeline {
    margin-top: 24px !important;
}









































/* ROOT SCOPE – nic nie ucieka poza .azure-landing */
.azure-landing {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --navy: #020617;
  --text: #475569;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.05);
  --transition: all 0.25s ease;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.azure-landing *,
.azure-landing *::before,
.azure-landing *::after {
  box-sizing: border-box;
}

/* LAYOUT */
.azure-landing .az-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.azure-landing .az-section {
  padding: 3.5rem 0;
}

@media (min-width: 960px) {
  .azure-landing .az-section {
    padding: 4.5rem 0;
  }
}

.azure-landing .az-section--alt {
  background: var(--bg-alt);
}

/* TYPOGRAFIA */
.azure-landing .az-eyebrow {
  font-size: 7;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.azure-landing .az-heading-xl {
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0 0 0.8rem;
}

.azure-landing .az-heading-lg {
  font-size: clamp(1.6rem, 2.4vw + 0.9rem, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0 0 0.6rem;
}

.azure-landing .az-heading-md {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}

.azure-landing .az-body-lg {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.azure-landing .az-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.azure-landing .az-body-sm {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}

/* UTILITIES */
.azure-landing .az-mt-xs { margin-top: 0.35rem; }
.azure-landing .az-mt-sm { margin-top: 0.6rem; }
.azure-landing .az-mt-md { margin-top: 0.9rem; }
.azure-landing .az-max-w-3 { max-width: 680px; }

/* HERO GRID */
.azure-landing .az-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .azure-landing .az-hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 3.5rem;
  }
}

/* HERO BADGE & PILLS */
.azure-landing .az-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--blue-100);
  background: #f9fafb;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.azure-landing .az-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue-600);
}

.azure-landing .az-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.7rem 0 1.2rem;
}

.azure-landing .az-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fafc;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: var(--transition);
}

.azure-landing .az-pill--primary {
  border-color: var(--blue-200);
  background: var(--blue-50);
  color: var(--blue-700);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.azure-landing .az-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-600);
}

.azure-landing .az-pill:hover {
  transform: translateY(-1px);
  border-color: var(--blue-200);
  background: #eff6ff;
}

/* BUTTONS – w pełni odseparowane od innych .btn w serwisie */
.azure-landing .az-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.5rem;
}

.azure-landing .az-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
}

.azure-landing .az-btn-primary {
  background: var(--blue-600);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.3);
}

.azure-landing .az-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.azure-landing .az-btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.azure-landing .az-btn-secondary {
  background: #ffffff;
  color: var(--text);
  border-color: var(--border);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.16);
}

.azure-landing .az-btn-secondary:hover {
  border-color: var(--blue-200);
  background: #f9fafb;
  transform: translateY(-1px);
}

.azure-landing .az-hero-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* HERO RIGHT CARD */
.azure-landing .az-hero-card-wrap {
  position: relative;
}

.azure-landing .az-hero-card-bg {
  position: absolute;
  inset: -32px -24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 219, 254, 0.7), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.04), transparent 60%);
  filter: blur(2px);
  opacity: 0.9;
}

.azure-landing .az-hero-card {
  position: relative;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.7rem 1.8rem;
}

.azure-landing .az-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
}

.azure-landing .az-hero-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  border: 1px solid var(--blue-100);
  background: var(--blue-50);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.azure-landing .az-hero-tag {
  border-radius: 999px;
  background: #f1f5f9;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.azure-landing .az-hero-card-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.azure-landing .az-hero-item {
  display: flex;
  gap: 0.7rem;
}

.azure-landing .az-hero-item-index {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-600);
}

.azure-landing .az-hero-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.12rem;
}

.azure-landing .az-hero-item-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.azure-landing .az-hero-card-footer {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* 2-COLUMN GRID */
.azure-landing .az-grid-two {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .azure-landing .az-grid-two {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 3rem;
  }
}

/* SHAPE CARD */
.azure-landing .az-shape-card {
  border-radius: 32px;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.azure-landing .az-shape-blob {
  width: 190px;
  height: 190px;
  border-radius: 44% 56% 60% 40% / 52% 44% 56% 48%;
  background: #bfdbfe;
  opacity: 0.8;
}
@media (min-width: 960px) {
  .azure-landing .az-shape-blob {
    width: 230px;
    height: 230px;
  }
}

/* HIGHLIGHT BOX + LIST (wymuszenie stylu list – bez wpływu globalnych styli) */
.azure-landing .az-highlight-box {
  margin-top: 1.3rem;
  border-radius: 20px;
  border: 1px solid var(--blue-100);
  background: #ffffff;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 14px 35px rgba(148, 163, 184, 0.14);
}

.azure-landing .az-highlight-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.azure-landing .az-highlight-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.azure-landing .az-highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue-600);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.azure-landing .az-highlight-list li:last-child {
  margin-bottom: 0;
}

/* PROCESS */
.azure-landing .az-process-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .azure-landing .az-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.azure-landing .az-process-step {
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #f8fafc;
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(148, 163, 184, 0.14);
  transition: var(--transition);
}

.azure-landing .az-process-step:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  background: #eff6ff;
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.22);
}

.azure-landing .az-step-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.azure-landing .az-step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--blue-200);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-600);
}

.azure-landing .az-step-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.azure-landing .az-step-text {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.7;
}

/* CLIENT CARDS */
.azure-landing .az-client-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.azure-landing .az-client-card {
  border-radius: 22px;
  border: 1px solid var(--blue-100);
  background: #ffffff;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 16px 38px rgba(148, 163, 184, 0.16);
  display: flex;
  gap: 0.7rem;
}

.azure-landing .az-client-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.azure-landing .az-client-text-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.18rem;
}

.azure-landing .az-client-text-body {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* TAGI / CHIPS */
.azure-landing .az-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.azure-landing .az-chip-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--muted);
}

.azure-landing .az-chip-pill--primary {
  border-color: var(--blue-100);
  background: var(--blue-50);
  color: var(--blue-700);
}

/* PRICING GRID + LISTY */
.azure-landing .az-pricing-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 960px) {
  .azure-landing .az-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.azure-landing .az-pricing-card {
  border-radius: 20px;
  border: 1px solid var(--blue-100);
  background: #ffffff;
  padding: 1.2rem 1.25rem 1.35rem;
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.azure-landing .az-pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.azure-landing .az-pricing-title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.azure-landing .az-pricing-intro {
  font-size: 0.86rem;
  color: var(--text);
}

.azure-landing .az-pricing-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0.2rem 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.azure-landing .az-pricing-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.azure-landing .az-pricing-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue-600);
  margin-top: 0.38rem;
  flex-shrink: 0;
}

/* CONTACT BOX + LISTY */
.azure-landing .az-contact-wrap {
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 2rem 1.6rem 2.2rem;
  background: linear-gradient(135deg, #f1f5f9, #ffffff 26%, #eff6ff);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 960px) {
  .azure-landing .az-contact-wrap {
    padding: 2.4rem 2.2rem 2.5rem;
  }
}

.azure-landing .az-contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .azure-landing .az-contact-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    gap: 2.4rem;
  }
}

.azure-landing .az-contact-benefits {
  margin-top: 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--blue-100);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(8px);
}

.azure-landing .az-contact-benefits-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.azure-landing .az-contact-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.azure-landing .az-contact-list li {
  display: flex;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.azure-landing .az-contact-list li:last-child {
  margin-bottom: 0;
}

/* FORM */
.azure-landing .az-contact-form {
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  padding: 1.4rem 1.35rem 1.6rem;
  box-shadow: 0 20px 40px rgba(148, 163, 184, 0.18);
}

.azure-landing .az-field {
  margin-bottom: 0.9rem;
}

.azure-landing .az-field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.azure-landing .az-field-input,
.azure-landing .az-field-textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f8fafc;
  padding: 0.6rem 0.8rem;
  font-size: 0.86rem;
  color: var(--navy);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.azure-landing .az-field-textarea {
  min-height: 110px;
}

.azure-landing .az-field-input:focus,
.azure-landing .az-field-textarea:focus {
  background: #ffffff;
  border-color: #60a5fa;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.45);
}

.azure-landing .az-contact-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.azure-landing .az-contact-hint {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.6;
}

/* INFO / CZYTAJ DALEJ */
.azure-landing .az-info-section {
  background: #ffffff;
}

.azure-landing .az-info-block {
  max-width: 100%;
  margin: 0 auto;
}

.azure-landing .az-info-block p {
  margin: 0 0 0.75rem;
}

.azure-landing .az-info-content {
  position: relative;
  padding-bottom: 4.2rem;
}

.azure-landing .az-info-intro {
  margin-top: 1rem;
}

.azure-landing .az-info-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.azure-landing .az-info-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.azure-landing .az-info-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.1rem;
  height: 64px;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0), #ffffff);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.azure-landing .az-info-toggle-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: var(--blue-600);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
  transition: var(--transition);
}

.azure-landing .az-info-toggle-btn:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.azure-landing .az-info-toggle-btn:active {
  transform: scale(0.97);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.azure-landing .az-info-toggle-more { display: inline; }
.azure-landing .az-info-toggle-less { display: none; }

.azure-landing .az-info-toggle:checked ~ .az-info-more {
  max-height: 2000px;
}
.azure-landing .az-info-toggle:checked ~ .az-info-fade {
  opacity: 0;
}
.azure-landing .az-info-toggle:checked
  ~ .az-info-toggle-btn
  .az-info-toggle-more {
  display: none;
}
.azure-landing .az-info-toggle:checked
  ~ .az-info-toggle-btn
  .az-info-toggle-less {
  display: inline;
}











/* PRZYCISKI – bez podkreśleń */
.az-btn,
.az-btn:hover,
.az-btn:focus,
.az-hero-ctas a,
.az-hero-ctas a:hover,
.az-hero-ctas a:focus,
.az-mini-cta {
  text-decoration: none !important;
}





/* CHIPSY NAD PLANAMI */
.az-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.3rem 0 1.6rem;
}

.az-chip-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.az-chip-pill--primary {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.az-chip-pill:hover {
  transform: translateY(-1px);
  border-color: #bfdbfe;
  background: #eff6ff;
}









/* GRID 3 KART */
.az-pricing-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 960px) {
  .az-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* POJEDYNCZA KARTA */
.az-pricing-card {
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.3rem 1.4rem 1.5rem;
  box-shadow: 0 18px 42px rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.az-pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.az-pricing-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #020617;
}

.az-pricing-intro {
  font-size: 0.88rem;
  color: #475569;
}

.az-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.84rem;
  color: #64748b;
}

.az-pricing-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.az-pricing-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #2563eb;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

















/* KARTA DLA OSTATNIEJ SEKCJI */
.az-info-block {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 2.1rem 1.9rem 2.7rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

/* jeśli sekcja ma osobny wrapper – tło jak wyżej */
.az-info-section {
  background: #f8fafc;
}

/* zawartość + toggle */
.az-info-content {
  position: relative;
  padding-bottom: 4.1rem; /* miejsce na przycisk */
}

.az-info-intro {
  margin-top: 1rem;
}

.az-info-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.az-info-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.az-info-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.1rem;
  height: 64px;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0), #ffffff);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

/* przycisk "Czytaj dalej" */
.az-info-toggle-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
  transition: all 0.25s ease;
  text-decoration: none;
}

.az-info-toggle-btn:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.az-info-toggle-more {
  display: inline;
}

.az-info-toggle-less {
  display: none;
}

/* stan po rozwinięciu */
.az-info-toggle:checked ~ .az-info-more {
  max-height: 2000px;
}

.az-info-toggle:checked ~ .az-info-fade {
  opacity: 0;
}

.az-info-toggle:checked ~ .az-info-toggle-btn .az-info-toggle-more {
  display: none;
}

.az-info-toggle:checked ~ .az-info-toggle-btn .az-info-toggle-less {
  display: inline;
}








/* === STRATEGIA SEO – SEKCJA Z ROZWIJANYM TEKSTEM === */

/* 1. Sekcja bez osobnego tła */
.az-section.az-info-section {
  background: transparent;
}

/* 2. Karta w środku na pełną szerokość kontenera */
.az-info-block {
  max-width: 100%;
}

/* 3. Paragrafy w tej sekcji – font 12.3px */
.az-info-block .az-body p {
  font-size: 12.3px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* 4. Logika rozwijania + fade + przycisk */
.az-info-content {
  position: relative;
  padding-bottom: 4.1rem; /* miejsce na przycisk */
}

.az-info-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.az-info-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.az-info-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.1rem;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

/* Przycisk "Czytaj dalej / Zwiń opis" */
.az-info-toggle-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
  transition: all 0.25s ease;
}

.az-info-toggle-btn:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.az-info-toggle-more {
  display: inline;
}

.az-info-toggle-less {
  display: none;
}

/* Stan po rozwinięciu */
.az-info-toggle:checked ~ .az-info-more {
  max-height: 2000px;
}

.az-info-toggle:checked ~ .az-info-fade {
  opacity: 0;
}

.az-info-toggle:checked ~ .az-info-toggle-btn .az-info-toggle-more {
  display: none;
}

.az-info-toggle:checked ~ .az-info-toggle-btn .az-info-toggle-less {
  display: inline;
}










/* === 1. Przyciski – bez podkreślenia === */
.az-btn,
.az-btn:hover,
.az-btn:focus,
.az-hero-ctas a,
.az-hero-ctas a:hover,
.az-hero-ctas a:focus,
.az-info-toggle-btn {
  text-decoration: none !important;
}

/* === 2. Sekcja "Strategia SEO" – karta + mniejsza czcionka + rozwijanie === */

.az-info-section {
  background: transparent; /* sekcja bez dodatkowego tła */
}

.az-info-block {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  padding: 2.1rem 1.9rem 2.8rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

/* paragrafy w środku – ~12.3px */
.az-info-block .az-body p {
  font-size: 12.3px;
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.az-info-content {
  position: relative;
  padding-bottom: 4rem; /* miejsce na przycisk */
}

.az-info-intro {
  margin-top: 1rem;
}

/* checkbox sterujący */
.az-info-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* część rozwijana – domyślnie schowana */
.az-info-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* fade na dole tekstu */
.az-info-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.1rem;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

/* przycisk "Czytaj dalej / Zwiń opis" */
.az-info-toggle-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
  transition: all 0.25s ease;
}

.az-info-toggle-btn:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.az-info-toggle-more {
  display: inline;
}

.az-info-toggle-less {
  display: none;
}

/* stan po rozwinięciu */
.az-info-toggle:checked ~ .az-info-more {
  max-height: 2000px;
}

.az-info-toggle:checked ~ .az-info-fade {
  opacity: 0;
}

.az-info-toggle:checked ~ .az-info-toggle-btn .az-info-toggle-more {
  display: none;
}

.az-info-toggle:checked ~ .az-info-toggle-btn .az-info-toggle-less {
  display: inline;
}

/* === 3. Sekcja "Modele współpracy" – 3 karty w gridzie === */

.az-pricing-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 960px) {
  .az-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.az-pricing-card {
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  padding: 1.25rem 1.35rem 1.5rem;
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.az-pricing-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.22);
}

.az-pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.az-pricing-title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.35rem;
}

.az-pricing-intro {
  font-size: 0.86rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 0.35rem;
}

.az-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #64748b;
}

.az-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.az-pricing-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #2563eb;
  margin-top: 0.42rem;
  flex-shrink: 0;
}

































.az-pricing-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 960px) {
  .az-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.az-pricing-card {
  border-radius: 20px;
  border: 1px solid var(--blue-100);
  background: #ffffff;
  padding: 1.2rem 1.25rem 1.35rem;
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: var(--transition);
}

.az-pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.22);
  background: #f9fbff;
}

.az-pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.az-pricing-title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}

.az-pricing-intro {
  font-size: 0.86rem;
  color: var(--text);
  margin: 0;
}

.az-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.az-pricing-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.az-pricing-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue-600);
  margin-top: 0.38rem;
  flex-shrink: 0;
}

































/* Sekcja Hero */
    .pw-hero-content h1, 
    .pw-hero-content p {
        color: #ffffff !important;
    }

    /* Sekcja Footer / O nas */
    .pw-footer-about h3, 
    .pw-footer-about p {
        color: #ffffff !important;
    }

    /* Sekcja DNA / About Header */
    .pw-about-header h1, 
    .pw-about-header p {
        color: #ffffff !important;
    }

    /* Pasek Copyright */
    .pw-copyright-bar p {
        color: #ffffff !important;
    }

    /* Sekcja Kontakt */
    .pw-contact-wrapper h1,
    .pw-contact-wrapper p,
    .pw-contact-wrapper .pw-label,
    .pw-contact-wrapper .pw-contact-sub {
        color: #ffffff !important;
    }
    
    /* Dodatkowo: ikona w kontakcie też na biało */
    .pw-contact-icon svg {
        stroke: #ffffff !important;
    }
















    /* GŁÓWNY KONTENER SEKCYJNY */
    .custom-contact-section {
        /* ZMIANA TŁA Z CZARNEGO NA BARDZO JASNY SZARY */
        background-color: #f8f9fa !important; 
        padding: 80px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 60px; /* Odstęp między kolumnami */
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    /* --- LEWA KOLUMNA (TEKST) --- */
    .contact-text-col {
        flex: 1;
        max-width: 500px;
        color: #333; /* Ciemny tekst */
    }

    /* Nadpisujemy H1 żeby było ciemne i duże */
    .contact-text-col h1 {
        color: #111 !important; 
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    /* Nadpisujemy główny opis żeby był ciemny */
    .contact-text-col > p {
         color: #555 !important;
         font-size: 1.1rem;
         line-height: 1.6;
         margin-bottom: 40px;
    }

    /* Lista zalet z niebieskim akcentem */
    .contact-features {
        border-left: 4px solid #2563eb; /* Twój niebieski kolor */
        padding-left: 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contact-features p {
        color: #444;
        margin: 0;
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Wyróżnienie nagłówków (Strong) na niebiesko */
    .contact-features strong {
        color: #2563eb; 
        display: block;
        margin-bottom: 5px;
        font-size: 1.15rem;
    }

    /* --- PRAWA KOLUMNA (FORMULARZ) --- */
    .contact-form-col {
        flex: 0 0 450px;
        width: 100%;
        max-width: 450px;
        background-color: #ffffff; /* Czysta biel pod formularz */
        padding: 40px;
        /* ZAOKRĄGLENIE I CIEŃ */
        border-radius: 16px; 
        box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.15); /* Miękki, lekko niebieski cień */
        box-sizing: border-box;
    }

    /* --- DODATKOWE STYLOWANIE WPFORMS (Żeby pasował do reszty) --- */
    /* Etykiety pól na ciemno */
    .contact-form-col .wpforms-field-label {
        color: #222 !important;
        font-weight: 600 !important;
    }
    /* Pola tekstowe zaokrąglone */
    .contact-form-col input, 
    .contact-form-col textarea {
        border-radius: 8px !important;
        border: 1px solid #e2e8f0 !important;
        padding: 12px !important;
    }
    /* Aktywne pole świeci na niebiesko */
    .contact-form-col input:focus, 
    .contact-form-col textarea:focus {
        border-color: #2563eb !important;
        outline: none;
    }
    /* Przycisk wysyłania zaokrąglony i mocno niebieski */
    .contact-form-col button.wpforms-submit {
        border-radius: 8px !important;
        background-color: #2563eb !important;
        font-weight: bold !important;
        padding: 15px 30px !important;
        width: 100%;
        transition: background-color 0.3s;
    }
     .contact-form-col button.wpforms-submit:hover {
         background-color: #1e40af !important;
     }


    /* --- RESPANSYWNOŚĆ (TELEFONY) --- */
    @media (max-width: 960px) {
        .custom-contact-section {
            flex-direction: column;
            align-items: center;
            padding: 60px 20px;
            gap: 40px;
        }
        .contact-text-col {
            text-align: center;
            max-width: 100%;
        }
        /* Na telefonie zmieniamy akcent z bocznego na górny */
        .contact-features {
            border-left: none;
            border-top: 4px solid #2563eb;
            padding-left: 0;
            padding-top: 25px;
            text-align: left;
            max-width: 500px;
            margin: 30px auto 0;
        }
        .contact-form-col {
            width: 100%;
            max-width: 500px;
        }
    }

































































/* --- ZMIENNE I RESET --- */
:root {
    --pw-blue: #2563eb;
    --pw-blue-hover: #1d4ed8;
    --pw-dark: #111111;
    --pw-gray: #4b5563;
    --pw-light-bg: #f8f9fa;
    --pw-white: #ffffff;
}

/* Kontener główny - zabezpieczenie przed uciekaniem treści */
.pw-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--pw-dark);
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.pw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- PRZYCISKI (POPRAWIONE KOLORY) --- */
.pw-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important; /* Usuwa podkreślenie z motywu */
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    box-shadow: none !important;
}

/* Przycisk Pełny (Niebieski) */
.pw-btn-primary {
    background-color: #2563eb !important;
    color: #ffffff !important;
    border: 2px solid #2563eb !important;
}

.pw-btn-primary:hover {
    background-color: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    transform: translateY(-2px);
}

/* Przycisk Obrysowy (Outline) - POPRAWIONY KOLOR TEKSTU */
.pw-btn-outline {
    background-color: transparent !important;
    /* TU JEST ZMIANA: Wymuszony kolor niebieski przed najechaniem */
    color: #2563eb !important; 
    border: 2px solid #2563eb !important;
}

.pw-btn-outline:hover {
    background-color: #2563eb !important;
    color: #ffffff !important; /* Biały tekst po najechaniu */
    transform: translateY(-2px);
}

/* Link tekstowy (z strzałką) */
.pw-link-text {
    color: #2563eb !important;
    font-weight: 600;
    text-decoration: none !important;
    margin-left: 15px;
    display: inline-block;
    transition: transform 0.2s;
}
.pw-link-text:hover {
    transform: translateX(5px);
    text-decoration: underline !important;
}

/* --- SEKCJA 1: WYNIKI (Wykres) --- */
.pw-section-results {
    padding: 80px 0;
    background-color: var(--pw-white);
}

.pw-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pw-results-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--pw-dark);
}

.pw-results-sub {
    font-size: 1.15rem;
    color: var(--pw-gray);
    margin-bottom: 35px;
}

/* Lista z "ptaszkami" */
.pw-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    margin-bottom: 40px;
}

.pw-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
}

.pw-feature-icon {
    color: var(--pw-blue);
    font-weight: 900;
}

/* Mockup Wykresu (Ciemny) */
.pw-mockup-wrapper {
    background: #0f172a;
    border-radius: 24px !important;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pw-mockup-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.pw-mockup-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ade80;
    line-height: 1;
    margin-top: 5px;
}

.pw-mockup-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pw-chart-visual {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 40px;
}

.pw-bar {
    background: #3b82f6;
    flex: 1;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
}

.pw-tool-stack {
    margin-top: 25px;
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- SEKCJA 2: KAFELKI (Modele) --- */
.pw-section-models {
    padding: 100px 0;
    background-color: var(--pw-light-bg);
}

.pw-models-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pw-models-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--pw-dark);
}

.pw-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* KARTA - STYLIZACJA */
.pw-card {
    background: var(--pw-white);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: var(--pw-blue);
}

.pw-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.pw-card-target {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.5;
    min-height: 45px;
}

.pw-benefit-note {
    background: #eff6ff;
    color: var(--pw-blue);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.pw-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.pw-card-list li {
    margin-bottom: 14px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: #444;
}

.pw-card-list li::before {
    content: "•";
    color: var(--pw-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* --- SEKCJA 3: PARTNERSTWO (Tekstowa) --- */
.pw-section-agency {
    padding: 80px 0;
    background-color: var(--pw-white);
}

.pw-agency-header {
    text-align: center;
    margin-bottom: 70px;
}

.pw-agency-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pw-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.pw-value-item {
    text-align: left;
    padding-left: 20px;
    border-left: 3px solid var(--pw-blue);
}

.pw-value-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: block;
    color: var(--pw-dark);
}

.pw-value-desc {
    font-size: 1rem;
    color: var(--pw-gray);
    line-height: 1.6;
}

.pw-agency-footer {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.pw-trust-note {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

/* --- RESPANSYWNOŚĆ --- */
@media (max-width: 960px) {
    .pw-results-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .pw-features-grid {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    .pw-cards-grid, 
    .pw-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pw-results-text h2, 
    .pw-models-header h2,
    .pw-agency-header h2 {
        font-size: 2rem;
    }
    .pw-btn, .pw-link-text {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    .pw-mockup-wrapper {
        padding: 20px;
    }
}







/* Wymuszenie niebieskiej czcionki w przyciskach z obrysem */
.pw-btn-outline {
    color: #2563eb !important;
}

/* Po najechaniu zmiana na białą */
.pw-btn-outline:hover {
    color: #ffffff !important;
}


/* Fix dla niewidocznego tekstu w przyciskach */
a.pw-btn-outline,
a.pw-btn-outline:link,
a.pw-btn-outline:visited {
    color: #2563eb !important; /* Wymusza niebieski kolor tekstu */
}

/* Zmiana na biały dopiero po najechaniu */
a.pw-btn-outline:hover,
a.pw-btn-outline:active {
    color: #ffffff !important;
}






































/* --- SEKCJA MIAST (LOKALIZACJE) --- */
.pw-cities-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* Bardzo jasne tło dla kontrastu z białymi "pastylkami" */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
}

.pw-cities-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.pw-cities-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.pw-cities-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* KONTENER NA LINKI (FLEXBOX) */
.pw-cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Wyśrodkowanie linków */
    gap: 12px; /* Odstępy między miastami */
    max-width: 1100px;
    margin: 0 auto;
}

/* STYL POJEDYNCZEGO LINKU (PASTYLKA) */
a.pw-city-tag {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #e5e7eb; /* Delikatna szara ramka */
    border-radius: 50px; /* Mocne zaokrąglenie (pastylka) */
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563; /* Ciemnoszary tekst */
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* EFEKT PO NAJECHANIU (HOVER) */
a.pw-city-tag:hover {
    border-color: #2563eb; /* Twój niebieski */
    color: #2563eb !important;
    transform: translateY(-3px); /* Lekkie uniesienie */
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.15); /* Niebieska poświata */
    background-color: #ffffff;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 600px) {
    .pw-cities-header h2 {
        font-size: 2rem;
    }
    .pw-cities-grid {
        gap: 8px;
    }
    a.pw-city-tag {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}













/* --- GŁÓWNY KONTENER SIATKI --- */
.wp-block-uagb-post-grid {
    grid-gap: 30px !important; /* Odstępy między kartami */
    padding: 20px 10px;
}

/* --- WYGLĄD KARTY (WPISU) --- */
.uagb-post__inner-wrap {
    background-color: #ffffff;
    /* Estetyczna szara ramka na start */
    border: 1px solid #e2e8f0; 
    /* Mocno zaokrąglone rogi (jak na inspiracji) */
    border-radius: 16px; 
    padding: 30px; /* Przestrzeń wewnątrz ramki */
    box-shadow: 0 4px 6px rgba(0,0,0,0.03); /* Bardzo delikatny cień */
    transition: all 0.3s ease-in-out; /* Płynna animacja */
    
    /* Ustawienie Flexbox, aby przyciski były równo na dole */
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- EFEKT NAJECHANIA MYSZKĄ (HOVER) --- */
.uagb-post__inner-wrap:hover {
    /* Zmiana ramki na niebieską po najechaniu */
    border-color: #2563eb; 
    /* Uniesienie karty */
    transform: translateY(-5px); 
    /* Niebieskawa poświata cienia */
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15); 
}

/* --- TYTUŁY WPISÓW --- */
h4.uagb-post__title {
    margin-top: 0;
    margin-bottom: 15px !important;
}

h4.uagb-post__title a {
    color: #1e293b; /* Ciemny, elegancki kolor tekstu */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
}

h4.uagb-post__title a:hover {
    color: #2563eb; /* Niebieski tytuł po najechaniu */
}

/* --- DATA I META DANE --- */
.uagb-post-grid-byline {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9; /* Linia oddzielająca */
}

/* Ikonki przy dacie na niebiesko */
.uagb-post-grid-byline .dashicons {
    color: #2563eb; 
}

/* --- TREŚĆ ZAJAWKI (Excerpt) --- */
.uagb-post__excerpt {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Wypycha przycisk na sam dół */
}

/* --- PRZYCISK "DOWIEDZ SIĘ WIĘCEJ" --- */
/* Kontener przycisku */
.uagb-post__cta {
    margin-top: auto;
    text-align: left; /* Przycisk po lewej stronie */
}

/* Sam wygląd przycisku */
.uagb-post__cta a.wp-block-button__link,
.uagb-post__cta a.uagb-text-link {
    display: inline-block;
    background-color: #2563eb !important; /* Niebieskie tło */
    color: #ffffff !important; /* BIAŁA CZCIONKA */
    padding: 10px 24px;
    border-radius: 50px; /* Zaokrąglenie "pastylka" */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

/* Przycisk po najechaniu */
.uagb-post__cta a.wp-block-button__link:hover,
.uagb-post__cta a.uagb-text-link:hover {
    background-color: #1d4ed8 !important; /* Ciemniejszy niebieski */
    color: #ffffff !important;
    transform: scale(1.02); /* Lekkie powiększenie */
}





.uagb-popup-builder {
    display: none !important;
}















/* =========================================
   ZMIENNE (Konfiguracja kolorów)
   ========================================= */
:root {
    --brand-primary: #2563eb;       /* Twój niebieski */
    --brand-light: #eff6ff;         /* Bardzo jasny niebieski (tło) */
    --text-main: #334155;           /* Ciemny szary (nie czarny!) dla czytelności */
    --text-heading: #0f172a;        /* Prawie czarny dla nagłówków */
    --border-radius: 12px;          /* Nowoczesne zaokrąglenia */
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); /* Miękki cień */
}

/* =========================================
   GŁÓWNA TYPOGRAFIA I TREŚĆ
   ========================================= */

/* Poprawa czytelności tekstu głównego */
.entry-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1.8em;
}

/* Pogrubienia w kolorze marki (Twoje życzenie) */
.entry-content strong, 
.entry-content b {
    color: var(--brand-primary);
    font-weight: 700;
}

/* Linki w treści */
.entry-content a {
    color: var(--brand-primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.entry-content a:hover {
    border-bottom-color: var(--brand-primary);
}

/* Nagłówki */
.entry-content h2 {
    color: var(--text-heading);
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    padding-left: 20px; /* Miejsce na pasek ozdobny */
}

/* Ozdobny pasek przy H2 w kolorze marki */
.entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--brand-primary);
    border-radius: 4px;
}

.entry-content h3 {
    color: var(--text-heading);
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* =========================================
   SIDEBAR (Prawa kolumna)
   ========================================= */

/* Styl kart dla widgetów w sidebarze */
#secondary .widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

/* Nagłówki w sidebarze */
#secondary .widget-title, 
#secondary h2.wp-block-heading {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-primary);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Listy wpisów w sidebarze */
#secondary ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

#secondary ul li:last-child {
    border-bottom: none;
}

#secondary ul li a {
    color: var(--text-heading);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

#secondary ul li a:hover {
    color: var(--brand-primary);
}

/* =========================================
   DODATKI (Spis treści, Tabele, Cytaty)
   ========================================= */

/* Spis treści (EZ TOC) - totalna metamorfoza */
#ez-toc-container {
    background: var(--brand-light) !important; /* Jasne tło w kolorze marki */
    border: none !important;
    border-radius: var(--border-radius);
    padding: 25px !important;
    width: 100% !important;
    box-shadow: none !important;
    margin-bottom: 40px;
}

.ez-toc-title {
    font-weight: 700 !important;
    color: var(--brand-primary) !important;
}

.ez-toc-list a {
    color: var(--text-main) !important;
    font-weight: 500;
}

.ez-toc-list a:hover {
    color: var(--brand-primary) !important;
    text-decoration: underline;
}

/* Tabele - nowoczesny styl */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden; /* Żeby rogi były zaokrąglone */
}

.entry-content table thead th {
    background-color: var(--brand-primary);
    color: #ffffff;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.entry-content table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-main);
}

.entry-content table tr:last-child td {
    border-bottom: none;
}

.entry-content table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Cytaty (Blockquote) */
.entry-content blockquote {
    background: #f8fafc;
    border-left: 5px solid var(--brand-primary);
    margin: 40px 0;
    padding: 30px;
    font-style: italic;
    color: #475569;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Listy punktowane w treści */
.entry-content ul:not(.ez-toc-list) {
    padding-left: 20px;
    margin-bottom: 30px;
}

.entry-content ul:not(.ez-toc-list) li {
    margin-bottom: 10px;
    list-style: none; /* Ukrywamy standardowe kropki */
    position: relative;
    padding-left: 25px;
}

/* Niestandardowy punkt listy (check lub kropka w kolorze marki) */
.entry-content ul:not(.ez-toc-list) li::before {
    content: '•';
    color: var(--brand-primary);
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

/* =========================================
   ELEMENTY AUTORA I NAWIGACJA
   ========================================= */

/* Box autora */
.saboxplugin-wrap {
    border: 1px solid #e2e8f0 !important;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 20px;
}

/* Poprzedni / Następny wpis */
.post-navigation .nav-links {
    display: flex;
    gap: 20px;
}

.post-navigation .nav-previous, 
.post-navigation .nav-next {
    flex: 1;
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: transform 0.2s;
}

.post-navigation .nav-previous:hover, 
.post-navigation .nav-next:hover {
    transform: translateY(-5px);
    background: var(--brand-light);
}

/* =========================================
   1. STICKY SIDEBAR (Przyklejony pasek boczny)
   ========================================= */

@media (min-width: 922px) { /* Działa tylko na Desktopie, na mobile sidebar spada na dół */
    #secondary {
        /* Włączenie trybu sticky */
        position: -webkit-sticky;
        position: sticky;
        
        /* Odstęp od góry (np. na nagłówek menu) */
        top: 180px; 
        
        /* Ważne: Zapobiega rozciąganiu sidebaru do wysokości treści, 
           co zepsułoby efekt sticky w kontenerach Flexbox */
        align-self: flex-start; 
        height: auto;
    }
}

/* =========================================
   2. ZWIJANY WIDGET (Accordion CSS dla #block-6)
   ========================================= */

/* Domyślny stan zwinięty */
#block-6 {
    /* Ustawiamy maksymalną wysokość tak, by widać było tylko nagłówek.
       Dostosuj 75px, jeśli Twój nagłówek jest wyższy/niższy */
    max-height: 75px; 
    overflow: hidden; /* Ukrywa zawartość listy */
    cursor: pointer; /* Pokazuje rączkę, sugerując klikalność */
    transition: max-height 0.5s ease-in-out, background-color 0.3s;
    position: relative;
}

/* Stan po najechaniu myszką (lub kliknięciu na mobile) - Rozwinięcie */
#block-6:hover {
    /* Ustawiamy dużą wartość, żeby pomieścić całą listę. 
       Auto nie działa z animacją transition, dlatego używamy max-height */
    max-height: 1000px; 
    border-color: var(--brand-primary); /* Podświetlenie ramki (korzysta ze zmiennej z poprzedniego kodu) */
}

/* Dodanie strzałki do nagłówka w tym konkretnym widgecie */
#block-6 h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; /* Reset marginesu, żeby wysokość była przewidywalna */
    padding-bottom: 20px; /* Dopasowanie do stylów karty */
    border-bottom: none !important; /* Ukrywamy linię oddzielającą w stanie zwiniętym dla czystości */
}

/* Ikona strzałki */
#block-6 h2::after {
    content: '❯'; /* Znak strzałki */
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(90deg); /* Strzałka w dół */
    color: var(--brand-primary);
}

/* Obrót strzałki po rozwinięciu */
#block-6:hover h2::after {
    transform: rotate(-90deg); /* Strzałka do góry */
}

/* Opcjonalnie: Przywrócenie linii oddzielającej po rozwinięciu */
#block-6:hover h2 {
    border-bottom: 2px solid #f1f5f9 !important;
    margin-bottom: 20px;
}
	
	
/* =========================================
   POPRAWKA: USUNIĘCIE PUNKTORÓW Z TOC
   ========================================= */

/* Usuwamy standardowe style list wewnątrz spisu treści */
#ez-toc-container ul,
#ez-toc-container li {
    list-style-type: none !important;
    background: none !important;
    padding-left: 0 !important; /* Opcjonalnie: resetuje wcięcia, jeśli są za duże */
}

/* Kluczowe: Usuwamy "nasze" niebieskie kropki (::before), 
   które dodałem w poprzednim kodzie dla reszty wpisu */
#ez-toc-container li::before {
    content: none !important;
    display: none !important; 
}

/* Korekta marginesów dla zagnieżdżonych elementów (np. 2.1, 2.2),
   żeby były ładnie wcięte, ale bez kropek */
#ez-toc-container ul ul {
    margin-left: 1.5em !important; 
}







/* =========================================
   NOWOCZESNE MENU MOBILNE (ASTRA)
   ========================================= */

/* 1. Tło i kontener menu */
.ast-mobile-header-content {
    background-color: #ffffff !important;
    padding: 30px 20px !important; /* Więcej oddechu dookoła */
}

/* 2. Usuwamy stare, brzydkie obramowania */
.ast-mobile-header-content .main-header-menu,
.ast-mobile-header-content .menu-item {
    border: none !important;
    box-shadow: none !important;
}

/* 3. Stylizacja linków (pozycji menu) */
.ast-mobile-header-content .menu-link {
    color: var(--text-heading, #0f172a) !important; /* Ciemny kolor dla czytelności */
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important; /* Duże pole dotyku */
    margin-bottom: 8px; /* Odstęp między kafelkami */
    border-radius: 12px; /* Nowoczesne zaokrąglenie */
    transition: all 0.3s ease;
    display: block;
    position: relative;
    border: 1px solid transparent !important; /* Rezerwacja miejsca na border */
}

/* 4. Efekt Hover (najazd) i Active (aktualna strona) */
.ast-mobile-header-content .menu-link:hover,
.ast-mobile-header-content .current-menu-item .menu-link {
    background-color: #eff6ff !important; /* Twój brandowy jasny niebieski */
    color: #2563eb !important; /* Twój brandowy główny niebieski */
    padding-left: 25px !important; /* Lekkie przesunięcie w prawo - efekt ruchu */
    font-weight: 700 !important;
}

/* 5. Ikona zamykania (X) */
.ast-mobile-popup-drawer .ast-mobile-popup-header .ast-close-svg {
    background: #eff6ff; /* Tło pod iksem */
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    fill: #2563eb !important; /* Kolor iksa */
    transition: transform 0.3s ease;
}

.ast-mobile-popup-drawer .ast-mobile-popup-header .menu-toggle-close:hover .ast-close-svg {
    transform: rotate(90deg); /* Obrót przy kliknięciu/najechaniu */
    background: #2563eb;
    fill: #ffffff !important;
}

/* 6. Usunięcie zbędnych odstępów Astry */
.ast-builder-menu-mobile .main-navigation {
    margin-top: 20px !important;
}










/* =========================================
   FIX: MENU DESKTOPOWE (COMPACT - JEDNA LINIA)
   ========================================= */

/* 1. Linki w menu - Mniejsze i ciaśniejsze */
#ast-desktop-header .main-header-menu .menu-item .menu-link {
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 14px !important; /* Zmniejszono z 15px */
    padding: 8px 10px !important; /* Zmniejszono odstępy boczne z 16px na 10px */
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap; /* Zapobiega łamaniu tekstu wewnątrz przycisku */
}

/* 2. Efekt Hover (Najazd) */
#ast-desktop-header .main-header-menu .menu-item:hover > .menu-link {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* 3. Aktywny element */
#ast-desktop-header .main-header-menu .current-menu-item > .menu-link {
    background-color: #ffffff !important;
    color: var(--brand-primary, #2563eb) !important;
    font-weight: 700 !important;
}

/* Usuwamy kropkę */
#ast-desktop-header .main-header-menu .current-menu-item > .menu-link::after {
    display: none !important;
}

/* 4. Przycisk "Kontakt" - Zoptymalizowany rozmiar */
#ast-desktop-header .main-header-menu .menu-item:last-child .menu-link {
    background-color: var(--brand-primary, #2563eb) !important;
    color: #ffffff !important;
    padding: 8px 20px !important; /* Mniejszy padding przycisku */
    font-size: 14px !important;
    border-radius: 50px;
    margin-left: 5px; /* Mniejszy odstęp od reszty menu */
    border: 1px solid rgba(255,255,255,0.1);
}

#ast-desktop-header .main-header-menu .menu-item:last-child .menu-link:hover {
    background-color: #1d4ed8 !important;
    transform: translateY(-2px);
}

/* 5. (OPCJONALNIE) Poszerzenie kontenera nagłówka */
/* Jeśli nadal brakuje miejsca, to pozwoli menu zająć więcej szerokości ekranu */
.ast-main-header-wrap .ast-primary-header-bar .site-primary-header-wrap {
    max-width: 1400px; /* Zwiększamy szerokość roboczą */
    width: 100%;
}
