/* ================================================================= */
/* */
/* KLASY GLOBALNE (Do użycia w całym serwisie)              */
/* */
/* ================================================================= */

.content-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-zinc);
}

.global-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

/* Podstawowy Grid używany w wielu sekcjach */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


/* ================================================================= */
/* */
/* SEKCJA 2: SOCIAL PROOF / INFINITE MARQUEE                */
/* */
/* ================================================================= */

.social-proof-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
    /* --- POPRAWKI --- */
    text-align: center;
    /* Twarde wyśrodkowanie tekstu */
    padding: 0 1rem;
    /* Zabezpieczenie, by tekst nie przyklejał się do brzegów ekranu */
    line-height: 1.5;
    /* Lepsza czytelność, gdy złamie się na 2 linie */
    max-width: 600px;
    /* Trzyma tekst w zgrabnym bloku na większych ekranach */
}

.marquee-container {
    display: flex;
    /* --- POPRAWKA --- */
    width: 100%;
    /* Zmienione z 100vw, aby uniknąć paska bocznego na telefonach */
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-container {
    display: flex;
    width: 100vw;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    padding: 0 2rem;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    cursor: default;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--accent-purple);
}

.marquee-separator {
    color: var(--accent-purple);
    opacity: 0.5;
    font-size: 1.2rem;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* ================================================================= */
/* */
/* SEKCJA 3: EDUKACJA (PROBLEM BIZNESOWY)                   */
/* */
/* ================================================================= */

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.stat-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.5;
    display: block;
}


/* ================================================================= */
/* */
/* SEKCJA 4: EKOSYSTEM (KARTY USŁUG)                        */
/* */
/* ================================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--accent-purple);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-link {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
}

/* Hover na karcie usługi */
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(123, 44, 191, 0.15);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover .service-link {
    color: var(--accent-purple);
}


/* ================================================================= */
/* */
/* SEKCJA 5: INTERAKTYWNA MAPA (HUB SEO)                             */
/* */
/* ================================================================= */

.map-text-content {
    padding-right: 2rem;
}

.seo-region-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    list-style: none;
    margin-top: 2.5rem;
}

.seo-region-list a {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.seo-region-list a:hover {
    color: var(--accent-purple);
    transform: translateX(4px);
}

.map-visual-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stylowanie zewnętrznego pliku SVG (ładowanego przez JS) */
#svg-map-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#svg-map-wrapper svg {
    width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transform: scale(1.05);
}

/* Wymuszamy luksusowe style na każdym pojedynczym województwie (<path>) */
#svg-map-wrapper svg path {
    fill: rgba(255, 255, 255, 0.04) !important;
    stroke: rgba(255, 255, 255, 0.15) !important;
    stroke-width: 1.5 !important;
    stroke-linejoin: round;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Efekt najechania myszką (Hover - Neon Fiolet) */
#svg-map-wrapper svg path:hover {
    fill: rgba(157, 78, 221, 0.35) !important;
    stroke: #a855f7 !important;
    stroke-width: 2.5 !important;
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.6)) !important;
    paint-order: stroke;
}


/* ================================================================= */
/* */
/* DYMEK TOOLTIP (LATAJĄCY ZA KURSOREM NA MAPIE)                     */
/* */
/* ================================================================= */

.map-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(157, 78, 221, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    /* To sprawia, że kursor przenika przez dymek prosto do mapy pod spodem */
    pointer-events: none;
    transform: translate(-50%, -130%);
    /* Dymek lekko wyżej, żeby nie zasłaniał kursora */
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 50;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(157, 78, 221, 0.15);
    white-space: nowrap;
}

.map-tooltip.active {
    opacity: 1;
    visibility: visible;
}

.tooltip-region {
    display: block;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-size: 1.15rem;
}

.tooltip-cta {
    display: block;
    color: var(--accent-purple);
    font-size: 0.85rem;
    font-weight: 600;
}


/* ================================================================= */
/* */
/* RESPONSYWNOŚĆ (MEDIA QUERIES) DLA CAŁEGO PLIKU                    */
/* */
/* ================================================================= */

@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 2rem;
        /* Zmniejszamy przerwę między kolumnami */
    }

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

    .map-text-content {
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* --- POPRAWKA DLA LISTY WOJEWÓDZTW NA TELEFONY --- */
    /* Zmieniamy długą listę pionową na kompaktowe przyciski (pills) */
    .seo-region-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .seo-region-list li {
        width: auto;
        /* Pozwala elementom dopasować się do długości tekstu */
    }

    .seo-region-list a {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.8rem;
        text-align: center;
        /* Reset transformacji - na telefonie nie chcemy najeżdżania na bok */
        transform: none !important;
    }

    /* Wygląd po dotknięciu w przycisk palcem */
    .seo-region-list a:hover,
    .seo-region-list a:active {
        background: rgba(157, 78, 221, 0.15);
        border-color: var(--accent-purple);
        color: var(--text-white);
    }

    /* Ograniczenie wielkości samej mapy na telefonie, żeby nie trzeba było za dużo scrollować */
    .map-visual-container {
        max-height: 450px;
        margin-top: 2rem;
    }

    #svg-map-wrapper svg {
        max-height: 400px;
    }
}



/* ================================================================= */
/*                                                                   */
/* SEKCJA 6: CASE STUDIES (WYNIKI I DOWODY)                          */
/*                                                                   */
/* ================================================================= */

.case-study-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    /* 1 kolumna na telefon, 1.5 na tekst, żeby proporcje były idealne */
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.case-study-card:hover {
    border-color: rgba(157, 78, 221, 0.4);
    transform: translateY(-5px);
}

/* Klasa odwracająca układ (obraz z prawej, tekst z lewej) */
.reverse-layout {
    grid-template-columns: 1.5fr 1fr;
}

.reverse-layout .phone-mockup {
    order: 2;
}

.reverse-layout .case-study-data {
    order: 1;
}

/* --- MOCKUP SMARTFONA Z CSS --- */
.phone-mockup {
    background-color: #000;
    border: 8px solid #27272a;
    border-radius: 36px;
    aspect-ratio: 9 / 19;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(123, 44, 191, 0.1);
    overflow: hidden;
}

/* Wycięcie na aparat u góry ekranu telefonu */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 24px;
    background-color: #27272a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #121214;
    position: relative;
}

/* Placeholder imitujący wideo */
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Lekkie urozmaicenie kolorystyczne pod tła branżowe */
.detailing-bg {
    background: linear-gradient(135deg, #0e1a2b 0%, #000 100%);
}

.beauty-bg {
    background: linear-gradient(135deg, #2b0e25 0%, #000 100%);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    padding-left: 4px;
    /* Centruje optycznie trójkąt */
}

/* Pigułki z napisami na wideo (np. "Przed", "Po") */
.video-labels {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.video-labels span {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- DANE CASE STUDY (PRAWA STRONA) --- */
.case-study-data {
    display: flex;
    flex-direction: column;
}

.niche-tag {
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.case-study-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.case-study-desc {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.results-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.results-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-zinc);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
}

.result-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-purple);
    line-height: 1;
    min-width: 100px;
    /* Trzyma równe wcięcie dla tekstu obok */
}

.result-text {
    font-size: 0.95rem;
    color: var(--text-white);
    line-height: 1.5;
    font-weight: 500;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 992px) {
    .case-study-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem;
    }

    .reverse-layout {
        grid-template-columns: 1fr;
    }

    /* Na telefonach obraz zawsze u góry, tekst pod spodem */
    .reverse-layout .phone-mockup,
    .phone-mockup {
        order: 1;
    }

    .reverse-layout .case-study-data,
    .case-study-data {
        order: 2;
    }

    .results-list li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem;
    }

    .result-number {
        min-width: auto;
    }
}

/* ================================================================= */
/*                                                                   */
/* SEKCJA 7: PROCES WSPÓŁPRACY (TIMELINE / JAK DZIAŁAMY)             */
/*                                                                   */
/* ================================================================= */

.process-section {
    position: relative;
    background-color: var(--bg-absolute);
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
}

/* Pozioma linia łącząca kroki (tylko na desktopie) */
.timeline-line {
    position: absolute;
    top: 32px;
    /* Połowa wysokości kółka z numerem (64px / 2) */
    /* Zmniejszamy szerokość, by linia nie wychodziła poza skrajne kółka */
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-zinc);
    z-index: 0;
}

/* Subtelny gradient nałożony na linię dla efektu luksusu */
.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    z-index: 1;
    /* Musi być nad linią w tle */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

/* Kółko z numerem kroku */
.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--bg-card);
    border: 2px solid var(--border-zinc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-gray);
    margin-bottom: 2rem;
    transition: all var(--transition-smooth);
    /* Twardy cień w kolorze czarnego tła (odcina poziomą linię wokół kółka) */
    box-shadow: 0 0 0 12px var(--bg-absolute);
}

/* Efekt najechania myszką (Rozświetlenie numeru) */
.timeline-step:hover .step-number {
    border-color: var(--accent-purple);
    color: var(--text-white);
    background: var(--gradient-primary);
    box-shadow: 0 0 0 12px var(--bg-absolute), 0 0 30px rgba(157, 78, 221, 0.4);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- RESPONSYWNOŚĆ PROCESU WSPÓŁPRACY --- */
@media (max-width: 992px) {

    /* Na tablecie łamiemy siatkę na dwa rzędy po dwa kroki */
    .timeline-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    /* Ukrywamy ciągłą, poziomą linię, by nie przecinała tekstów */
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        /* Zmniejszony odstęp między kartami */
        margin-top: 3rem;
        padding-left: 0;
        /* Usuwamy lewy margines, odzyskujemy miejsce na tekst */
    }

    /* Ukrywamy pionową linię - na telefonach tylko zabiera cenną szerokość */
    .timeline-wrapper::before {
        display: none;
    }

    .timeline-step {
        flex-direction: column;
        /* Układ pionowy: numer na górze, tekst pod nim */
        align-items: flex-start;
        text-align: left;
        /* Zmieniamy krok w elegancką szklaną kartę */
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        gap: 0;
    }

    /* Numer kroku staje się dyskretnym akcentem na górze karty */
    .step-number {
        min-width: 44px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        /* Daje oddech przed tytułem */
        box-shadow: none;
        /* Usuwamy obramowanie cienia */
        flex-shrink: 0;
        /* Domyślnie lekko podświetlamy numer na mobile, żeby karta nie była nudna */
        background: rgba(157, 78, 221, 0.1);
        border-color: rgba(157, 78, 221, 0.4);
        color: var(--text-white);
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        width: 100%;
        /* Pełna szerokość dla tytułu */
    }

    .step-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        width: 100%;
        /* Pełna szerokość dla opisu */
    }
}

/* ================================================================= */
/*                                                                   */
/* SEKCJA 8: DOLNE CALL TO ACTION (FINAL PUSH)                       */
/*                                                                   */
/* ================================================================= */

.cta-bottom-section {
    position: relative;
    background-color: var(--bg-absolute);
    /* Mocne odcięcie od poprzedniej sekcji */
    border-top: 1px solid var(--border-zinc);
    overflow: hidden;
    /* Extra padding, by sekcja oddychała i wydawała się premium */
    padding: 8rem 0;
}

/* Subtelna fioletowa poświata centralnie za tekstem i przyciskiem */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 900px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    /* Zapewnia, że tekst jest nad poświatą */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-bottom-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cta-bottom-desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* Duży, dominujący przycisk konwersji */
.cta-btn {
    padding: 1.25rem 3.5rem;
    /* Zwiększony padding poziomy dla masywności */
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    /* Domyślny cień, który lekko unosi przycisk */
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
    transition: all var(--transition-smooth);
}

.cta-btn:hover {
    transform: translateY(-4px);
    /* Agresywniejsze rozświetlenie po najechaniu */
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.6);
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .cta-bottom-section {
        padding: 5rem 0;
    }

    .cta-btn {
        width: 100%;
        /* Na smartfonach przycisk na pełną szerokość ułatwia kliknięcie kciukiem */
        padding: 1.25rem 0;
    }
}

/* ================================================================= */
/*                                                                   */
/* ANIMACJE SCROLLOWANIA (INTERSECTION OBSERVER)                     */
/*                                                                   */
/* ================================================================= */

/* Stan początkowy: Element przezroczysty i opuszczony o 40px w dół */
.scroll-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    /* Optymalizacja renderowania GPU w przeglądarce */
    will-change: opacity, transform;
}

/* Stan końcowy (dodawany przez JS): Element w pełni widoczny i na swoim miejscu */
.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* --- KASKADOWE OPÓŹNIENIA DLA KART (Stagger Effect) --- */

/* Nasz Ekosystem (Karty wjeżdżają po kolei) */
.services-grid .service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Proces Współpracy (Kroki wjeżdżają po kolei) */
/* (Zaczynamy od :nth-child(2), bo pierwszym dzieckiem w .timeline-wrapper jest linia łącząca w tle) */
.timeline-wrapper .timeline-step:nth-child(2) {
    transition-delay: 0.1s;
}

.timeline-wrapper .timeline-step:nth-child(3) {
    transition-delay: 0.2s;
}

.timeline-wrapper .timeline-step:nth-child(4) {
    transition-delay: 0.3s;
}

.timeline-wrapper .timeline-step:nth-child(5) {
    transition-delay: 0.4s;
}

/* Na smartfonach wyłączamy opóźnienia, by użytkownik nie czekał przy szybkim scrollowaniu */
@media (max-width: 768px) {

    .services-grid .service-card,
    .timeline-wrapper .timeline-step {
        transition-delay: 0s !important;
    }
}

/* ================================================================= */
/*                                                                   */
/* SEKCJA ZIG-ZAG (UGC BRANŻE)                                       */
/*                                                                   */
/* ================================================================= */

.ugc-industries-section {
    background-color: var(--bg-absolute);
}

.zigzag-row {
    margin-top: 6rem;
    align-items: center;
}

.zigzag-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zigzag-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.zigzag-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.zigzag-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsywność dla Zig-Zag (wymuszamy poprawne ułożenie na mobile) */
@media (max-width: 992px) {
    .zigzag-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        margin-top: 5rem;
    }

    /* Wyśrodkowanie tagu niszowego na telefonach */
    .zigzag-text .niche-tag {
        display: inline-block;
        margin: 0 auto 1rem auto;
    }

    /* Na telefonach obraz zawsze jest na górze, a tekst pod nim (ignorujemy odwrotny układ) */
    .zigzag-row .zigzag-visual,
    .zigzag-row.reverse-layout .zigzag-visual {
        order: 1;
    }

    .zigzag-row .zigzag-text,
    .zigzag-row.reverse-layout .zigzag-text {
        order: 2;
    }
}

/* ================================================================= */
/*                                                                   */
/* SEKCJA 3 UGC: LICZBY I LOGIKA                                     */
/*                                                                   */
/* ================================================================= */

.ugc-logic-section {
    /* Minimalnie ciemniejsze tło dla odcięcia sekcji */
    background-color: #09090B;
    border-top: 1px solid var(--border-zinc);
    border-bottom: 1px solid var(--border-zinc);
}

.logic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.logic-card {
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    border-radius: 16px;
    padding: 3rem 2rem;
    transition: transform var(--transition-smooth), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logic-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    /* Delikatny fioletowy blask od wewnątrz karty */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(123, 44, 191, 0.05);
}

.logic-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.5rem;
    color: var(--accent-purple);
    background: rgba(157, 78, 221, 0.1);
    /* Tło ikony pod kolor akcentu */
    padding: 12px;
    border-radius: 14px;
}

.logic-icon svg {
    width: 100%;
    height: 100%;
}

.logic-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.logic-desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pogrubienia liczb w tekstach */
.logic-desc strong {
    color: var(--text-white);
    font-weight: 700;
}

/* --- RESPONSYWNOŚĆ DLA SEKCJI LOGIKI --- */
@media (max-width: 992px) {
    .logic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .logic-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ================================================================= */
/*                                                                   */
/* SEKCJA PAKIETÓW (PRICING UGC)                                     */
/*                                                                   */
/* ================================================================= */

.pricing-section {
    background-color: var(--bg-absolute);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-zinc);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

/* Wyróżniona karta (Pakiet Ads) */
.pricing-card.popular {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(123, 44, 191, 0.08);
}

/* Plakietka "Rekomendowany" na górze karty */
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.35rem 1.25rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
}

.pricing-title {
    font-size: 1.8rem;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-align: center;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    /* Gwarantuje równe wyrównanie przycisków na dole nawet jak tekst ma różną długość */
    min-height: 3em;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
    /* Popycha przycisk na sam dół karty */
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.pricing-features li strong {
    color: var(--text-white);
    font-weight: 600;
}

.pricing-features .feature-icon {
    color: var(--accent-purple);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Przyciski w kartach cenowych */
.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    text-decoration: none;
    transition: all var(--transition-fast);
}

/* Obrysowy przycisk dla pakietów bocznych */
.pricing-btn.btn-outline {
    border: 1px solid var(--border-zinc);
    color: var(--text-white);
}

.pricing-btn.btn-outline:hover {
    border-color: var(--accent-purple);
    background: rgba(157, 78, 221, 0.1);
}

/* Responsywność pakietów */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pakiet Dominacja spada na pełną szerokość na tablecie */
    .pricing-card:nth-child(3) {
        grid-column: span 2;
    }
}

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

    .pricing-card:nth-child(3) {
        grid-column: span 1;
    }
}


/* ================================================================= */
/*                                                                   */
/* DODATKI DLA SEKCJI SMM (Tła i etykiety dla problemów)             */
/*                                                                   */
/* ================================================================= */

/* Ekran "Brak Czasu" (Zgaszona czerwień) */
.smm-time-bg {
    background: linear-gradient(135deg, #2a0808 0%, #000 100%);
}

.label-alert {
    background: rgba(220, 38, 38, 0.15) !important;
    color: #fca5a5 !important;
    border-color: rgba(248, 113, 113, 0.3) !important;
}

/* Ekran "Martwe Grafiki" (Zimny szary) */
.smm-dead-bg {
    background: linear-gradient(135deg, #1f2937 0%, #000 100%);
}

.label-error {
    background: rgba(156, 163, 175, 0.15) !important;
    color: #9ca3af !important;
    border-color: rgba(156, 163, 175, 0.3) !important;
}

/* Ekran "Lokalny Zasięg" (Głęboki granat) */
.smm-local-bg {
    background: linear-gradient(135deg, #0f172a 0%, #000 100%);
}

/* ================================================================= */
/*                                                                   */
/* SIATKA 2x2 DLA KART EKOSYSTEMU (SMM)                              */
/*                                                                   */
/* ================================================================= */

.smm-ecosystem-section {
    background-color: #09090B;
    border-top: 1px solid var(--border-zinc);
    border-bottom: 1px solid var(--border-zinc);
}

.smm-grid-2x2 {
    display: grid;
    /* Dwie równe kolumny na dużych ekranach */
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Stagger Effect dla wjazdu 4 kart */
.smm-grid-2x2 .logic-card:nth-child(1) {
    transition-delay: 0.1s;
}

.smm-grid-2x2 .logic-card:nth-child(2) {
    transition-delay: 0.2s;
}

.smm-grid-2x2 .logic-card:nth-child(3) {
    transition-delay: 0.3s;
}

.smm-grid-2x2 .logic-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Responsywność dla siatki 2x2 */
@media (max-width: 768px) {
    .smm-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ================================================================= */
/*                                                                   */
/* DODATKI DLA SEKCJI WIZYTY LOKALNE (Tła i etykiety w telefonach)   */
/*                                                                   */
/* ================================================================= */

/* Ekran "Gastronomia" (Ciepły, elegancki brąz/pomarańcz) */
.local-gastro-bg {
    background: linear-gradient(135deg, #431407 0%, #000 100%);
}

.label-fomo {
    background: rgba(249, 115, 22, 0.15) !important;
    color: #fdba74 !important;
    border-color: rgba(249, 115, 22, 0.3) !important;
}

/* Ekran "Beauty" (Stonowany róż/burgund) */
.local-beauty-bg {
    background: linear-gradient(135deg, #38112a 0%, #000 100%);
}

.label-trust {
    background: rgba(236, 72, 153, 0.15) !important;
    color: #f472b6 !important;
    border-color: rgba(236, 72, 153, 0.3) !important;
}

/* Ekran "Usługi/Moto" (Głęboki, warsztatowy błękit/granat) */
.local-service-bg {
    background: linear-gradient(135deg, #082f49 0%, #000 100%);
}

.label-inquiry {
    background: rgba(14, 165, 233, 0.15) !important;
    color: #7dd3fc !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
}

/* ================================================================= */
/*                                                                   */
/* SEKCJA 3 WIZYTY LOKALNE: LICZBY I LOGIKA                          */
/*                                                                   */
/* ================================================================= */

.local-logic-section {
    /* Utrzymujemy delikatnie przyciemnione tło, by stworzyć "pasiasty" układ sekcji na stronie */
    background-color: #09090B;
    border-top: 1px solid var(--border-zinc);
    border-bottom: 1px solid var(--border-zinc);
}


/* ================================================================= */
/*                                                                   */
/* LEWITUJĄCE PANELE UI DLA TWÓRCÓW (Zamiast telefonów)              */
/*                                                                   */
/* ================================================================= */

/* Główna klasa szklanej karty */
.glass-ui-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    /* Pływająca animacja, by karty nie były statyczne */
    animation: floatUI 6s ease-in-out infinite;
}

@keyframes floatUI {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Teksty wewnątrz kart */
.ui-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-label {
    font-size: 0.85rem;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ui-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.ui-status {
    font-size: 0.9rem;
    font-weight: 600;
}

/* KARTA 1: Przelew (Zielona) */
.pay-ui {
    border-top: 2px solid #22c55e;
}

.pay-ui::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(34, 197, 94, 0.2);
    filter: blur(40px);
    border-radius: 50%;
}

.ui-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pay-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pay-amount {
    color: #4ade80;
}

.ui-status.success {
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ui-status.success::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

/* KARTA 2: Lokalność (Błękitna) */
.geo-ui {
    border-top: 2px solid #38bdf8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.radar-animation {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.geo-pin {
    width: 32px;
    height: 32px;
    color: #38bdf8;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.8));
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 50%;
    animation: radarPulseGeo 3s linear infinite;
}

.rc-1 {
    width: 20px;
    height: 20px;
}

.rc-2 {
    width: 20px;
    height: 20px;
    animation-delay: 1.5s;
}

@keyframes radarPulseGeo {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(8);
        opacity: 0;
    }
}

/* KARTA 3: Decyzja / Brief (Fioletowa) */
.brief-ui {
    border-top: 2px solid var(--accent-purple);
}

.brief-header {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brief-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.b-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.w-90 {
    width: 90%;
}

.ui-actions-row {
    display: flex;
    gap: 10px;
}

.ui-btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.ui-decline {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ui-accept {
    background: rgba(157, 78, 221, 0.2);
    color: #fff;
    border: 1px solid rgba(157, 78, 221, 0.5);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

/* ================================================================= */
/*                                                                   */
/* LUKSUSOWY FORMULARZ DLA TWÓRCÓW                                   */
/*                                                                   */
/* ================================================================= */

.creator-form-section {
    position: relative;
    padding-bottom: 100px;
}

/* Szklana karta otulająca formularz */
.form-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(157, 78, 221, 0.05);
}

.form-header-wrapper {
    margin-bottom: 40px;
}

.form-card-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.form-card-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Układy wierszy w formularzu */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.grid-2-col-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3-col-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

/* Pola tekstowe i select */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e4e4e7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-zinc);
    padding: 14px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
    background: rgba(10, 10, 12, 0.8);
}

.input-group input::placeholder {
    color: #52525b;
}

/* Checkboxy z niestandardowym designem */
.checkbox-row {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    margin-top: 10px;
}

.checkbox-label-main {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e4e4e7;
    margin-bottom: 16px;
}

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

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-zinc);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input~.checkmark {
    border-color: rgba(157, 78, 221, 0.5);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.checkmark::after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark::after {
    display: block;
}

.check-text {
    font-size: 0.95rem;
    color: #a1a1aa;
    transition: color 0.2s ease;
}

.custom-checkbox input:checked~.check-text {
    color: #fff;
    font-weight: 600;
}

/* Neonowy Przycisk Submit */
.form-submit-row {
    margin-top: 20px;
}

.btn-neon {
    padding: 16px 40px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-neon:hover {
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.6);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #71717a;
}

/* Responsywność Formularza */
@media (max-width: 992px) {
    .form-card {
        padding: 30px 20px;
    }

    .grid-3-col-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .grid-2-col-form,
    .grid-3-col-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }

    .w-100-mobile {
        width: 100%;
    }
}

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

/* ================================================================= */
/* */
/* SEKCJA REALIZACJI: MODUŁY WYNIKÓW I KOSTKI ANALITYCZNE            */
/* */
/* ================================================================= */

.cases-why-section {
    background-color: #09090B;
    border-top: 1px solid var(--border-zinc);
    border-bottom: 1px solid var(--border-zinc);
}

/* Kontener dla tagów realizowanych projektów */
.case-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.case-tags .niche-tag {
    margin: 0;
}

/* Ekskluzywny boks podsumowujący efekt końcowy strategii */
.case-result-box {
    margin-top: 2rem;
    background: rgba(157, 78, 221, 0.03);
    border-left: 3px solid var(--accent-purple);
    padding: 1.25rem 1.5rem;
    border-radius: 0 16px 16px 0;
    border-top: 1px solid rgba(157, 78, 221, 0.05);
    border-right: 1px solid rgba(157, 78, 221, 0.05);
    border-bottom: 1px solid rgba(157, 78, 221, 0.05);
}

.case-result-box .result-label {
    display: block;
    font-weight: 800;
    color: var(--text-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.case-result-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- SZKLANE KARTY METRYK (WIZUALIZACJE DANYCH) --- */
.metric-display-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: floatCaseUI 6s ease-in-out infinite alternate;
}

@keyframes floatCaseUI {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.metric-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* KARTA 1: Beauty Split Ads Manager View */
.cp-beauty {
    border-top: 2px solid var(--accent-purple);
}

.metric-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.metric-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-block .m-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.metric-block .m-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #52525b;
}

.metric-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

.highlighted-green {
    color: #4ade80 !important;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
}

.metric-footer-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* KARTA 2: Gastro TikTok ROI Panel */
.cp-gastro {
    border-top: 2px solid #ec4899;
}

.giant-metric-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.giant-metric-row .g-num {
    font-size: 3.6rem;
    font-weight: 900;
    color: #fff;
}

.giant-metric-row .g-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 44px;
    gap: 6px;
    margin-bottom: 24px;
    padding: 0 24px;
}

.mg-line {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px 4px 0 0;
}

.ripple-active {
    background: linear-gradient(to top, #db2777, #ec4899);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

/* KARTA 3: Detailing CRM Pipeline */
.cp-services {
    border-top: 2px solid #3b82f6;
}

.lead-counter {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.lc-count {
    font-size: 3.4rem;
    font-weight: 900;
    color: #3b82f6;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.lc-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}

.mini-leads-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

/* ================================================================= */
/*                                                                   */
/* ŚCIANA WIDEO (WALL OF PROOF - TIKTOK/REELS UI)                    */
/*                                                                   */
/* ================================================================= */

.video-wall-section {
    background-color: #050508;
    border-top: 1px solid var(--border-zinc);
}

.video-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 4rem;
}

/* Pojedyncza ramka wideo */
.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    /* Format pionowy wideo */
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-frame:hover {
    transform: translateY(-10px);
    border-color: rgba(157, 78, 221, 0.6);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.2), 0 0 20px rgba(157, 78, 221, 0.1);
}

/* Wewnętrzny kontener wideo (zastępcze tła) */
.video-inner {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.wall-bg-1 {
    background: linear-gradient(135deg, #2d1b4e 0%, #09090b 100%);
}

.wall-bg-2 {
    background: linear-gradient(135deg, #431407 0%, #09090b 100%);
}

.wall-bg-3 {
    background: linear-gradient(135deg, #082f49 0%, #09090b 100%);
}

.wall-bg-4 {
    background: linear-gradient(135deg, #38112a 0%, #09090b 100%);
}

/* Nakładka przyciemniająca dla czytelności UI */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

/* Centralny przycisk Play */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.video-frame:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

/* Prawy panel akcji (Lajki, komentarze) */
.video-ui-right {
    position: absolute;
    right: 12px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 5;
}

.ui-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ui-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.ui-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Dolny panel tekstowy (Opis wideo) */
.video-ui-bottom {
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 50px;
    z-index: 5;
}

.v-tag {
    display: inline-block;
    background: var(--accent-purple);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.v-desc {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsywność Siatki Wideo */
@media (max-width: 1024px) {
    .video-wall-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .video-wall-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ================================================================= */
/*                                                                   */
/* SEKCJA KONTAKTOWA: SPLIT LAYOUT (Dane + Formularz)                */
/*                                                                   */
/* ================================================================= */

.contact-split-section {
    padding-top: 20px;
    padding-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* --- LEWA STRONA: DANE KONTAKTOWE --- */
.contact-info-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cm-icon {
    width: 50px;
    height: 50px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    flex-shrink: 0;
}

.cm-icon svg {
    width: 24px;
    height: 24px;
}

.cm-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cm-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cm-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cm-value:hover {
    color: var(--accent-purple);
}

.text-green {
    color: #4ade80 !important;
}

.cm-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cm-social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cm-social-links a:hover {
    color: var(--accent-purple);
}

.cm-separator {
    color: #52525b;
}

/* --- PRAWA STRONA: FORMULARZ BIZNESOWY --- */
.business-form-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(157, 78, 221, 0.05);
}

/* Uzupełnienie stylów dla textarea (korzystamy z klasy .luxury-form i .input-group z poprzednich kroków) */
.input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-zinc);
    padding: 14px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
    /* Pozwala na powiększanie w dół */
    min-height: 100px;
}

.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
    background: rgba(10, 10, 12, 0.8);
}

.input-group textarea::placeholder {
    color: #52525b;
}

.w-100 {
    width: 100%;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-col {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-method-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .business-form-card {
        padding: 30px 20px;
    }
}


/* ================================================================= */
/*                                                                   */
/* SEKCJA FAQ (NATYWNY AKORDEON HTML5)                               */
/*                                                                   */
/* ================================================================= */

.faq-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Stan otwarty akordeonu */
.faq-item[open] {
    border-color: rgba(157, 78, 221, 0.4);
    background: rgba(15, 15, 20, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Ukrywa natywny trójkąt w Firefox/Chrome */
    transition: color 0.3s ease;
}

/* Ukrywa natywny trójkąt w Safari/Chrome */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--accent-purple);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-purple);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    margin-left: 16px;
}

/* Obrót strzałki po otwarciu */
.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    animation: slideDownFade 0.4s ease-out forwards;
}

.faq-answer p {
    margin: 0;
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================= */
/*                                                                   */
/* MINIMALISTYCZNE CTA (DOLNY ZAMYKACZ)                              */
/*                                                                   */
/* ================================================================= */

.minimal-cta-section {
    padding-top: 60px;
    padding-bottom: 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.05) 0%, transparent 60%);
}

.minimal-cta-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.4;
    color: #e4e4e7;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.minimal-cta-text .text-gradient {
    font-style: normal;
    /* Gradient wygląda lepiej bez kursywy */
}


/* ================================================================= */
/* */
/* SIATKA LOKALIZACJI (KLIKALNE KAFELKI SZKLANE)                     */
/* */
/* ================================================================= */

.locations-grid-section {
    padding-top: 20px;
    padding-bottom: 80px;
    position: relative;
    z-index: 5;
}

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

/* Karta jako link (<a>) */
.location-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    text-decoration: none;
    /* Usuwa podkreślenie linku */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 78, 221, 0.5);
    background: rgba(20, 15, 30, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(157, 78, 221, 0.15);
}

/* Czysta ikona Pina ładowana z CSS */
.loc-pin-icon {
    width: 36px;
    height: 36px;
    background-color: var(--accent-purple);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>') no-repeat center;
    filter: drop-shadow(0 0 12px rgba(157, 78, 221, 0.6));
    transition: transform 0.3s ease;
}

.location-card:hover .loc-pin-icon {
    transform: scale(1.15) translateY(-3px);
}

.loc-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.location-card:hover .loc-name {
    color: var(--accent-purple);
}

.loc-status {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Klasa ukrywająca elementy podczas wyszukiwania */
.location-card.hidden {
    display: none !important;
}

/* --- Responsywność --- */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .location-card {
        padding: 24px 16px;
    }

    .loc-name {
        font-size: 1.1rem;
    }
}

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


/* ================================================================= */
/* */
/* SEKCJA ZBIJANIA OBIEKCJI (MNIEJSZE MIASTA - KARTA)                */
/* */
/* ================================================================= */

.location-objection-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

.objection-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(157, 78, 221, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtelny blask wewnątrz karty */
.objection-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.objection-content {
    position: relative;
    z-index: 1;
}

.objection-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.objection-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 750px;
}

/* Responsywność dla karty obiekcji */
@media (max-width: 768px) {
    .objection-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .objection-desc {
        font-size: 1rem;
    }
}

/* ================================================================= */
/* */
/* SEKCJA 2: LOKALNA EKIPA TWÓRCÓW (KARTY)                           */
/* */
/* ================================================================= */

.local-team-section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* Wyśrodkowanie nagłówka */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
    margin-bottom: 3rem;
}

/* Siatka 2-kolumnowa */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    /* Zatrzymujemy szerokość, by karty nie były karykaturalnie wielkie */
    margin: 0 auto;
}

/* Szklana Karta Twórcy */
.creator-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.creator-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(157, 78, 221, 0.1);
}

/* Kontener na zdjęcie */
.creator-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Panoramiczne zdjęcie eksponujące twórcę w akcji */
    overflow: hidden;
    background: #111;
    /* Kolor zastępczy, póki nie ma zdjęć */
}

.creator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.creator-card:hover .creator-img {
    transform: scale(1.05);
}

/* Pigułka "Dostępny" na zdjęciu */
.creator-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    /* Zielona kropka aktywności */
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

/* Dolna sekcja informacyjna */
.creator-info {
    padding: 2rem;
}

.creator-name {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Tagi umiejętności */
.creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.ui-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ui-tag.highlight {
    background: rgba(157, 78, 221, 0.15);
    border-color: var(--accent-purple);
    color: #fff;
}

.creator-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 992px) {
    .creators-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .creators-grid {
        grid-template-columns: 1fr;
        /* Na telefonach zrzucamy na 1 kolumnę */
    }

    .creator-info {
        padding: 1.5rem;
    }
}

/* ================================================================= */
/* */
/* SEKCJA 3: BANER CROSS-SELL UGC (PRZEŁAMANIE)                      */
/* */
/* ================================================================= */

.ugc-cross-sell-section {
    position: relative;
    z-index: 2;
    padding: 40px 0 80px 0;
}

/* Wrapper baneru z efektem neonowej ramki */
.ugc-banner-wrapper {
    position: relative;
    border-radius: 24px;
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Fioletowe obramowanie i potężne cienie */
    border: 1px solid rgba(157, 78, 221, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(157, 78, 221, 0.15);
    overflow: hidden;
}

/* Subtelny blask wewnątrz baneru w prawym górnym rogu */
.ugc-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.25), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.ugc-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    gap: 4rem;
}

.ugc-banner-text {
    flex: 1;
    max-width: 650px;
}

.ugc-banner-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.ugc-banner-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Wyróżnienie nazwy województwa w opisie */
.ugc-banner-desc strong {
    color: var(--text-white);
    font-weight: 700;
}

/* Akcent wizualny (Zastępuje puste miejsce po prawej) */
.ugc-banner-visual {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(157, 78, 221, 0.05) 100%);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.2);
}

.ugc-globe-icon {
    font-size: 4rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 992px) {
    .ugc-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2.5rem;
    }

    .ugc-banner-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ugc-banner-visual {
        order: -1;
        /* Przenosi ikonę nad tekst na telefonach */
        width: 100px;
        height: 100px;
    }

    .ugc-globe-icon {
        font-size: 2.5rem;
    }
}

/* ================================================================= */
/* */
/* SEKCJA 4: USP HYBRYDOWE (3 KOLUMNY)                               */
/* */
/* ================================================================= */

.usp-section {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Szklane Karty USP */
.usp-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.usp-card:hover {
    transform: translateY(-8px);
    background: rgba(20, 15, 30, 0.6);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(157, 78, 221, 0.05);
}

/* Kwadrat z ikoną z neonowym blaskiem */
.usp-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(157, 78, 221, 0.05) 100%);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.15);
    transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(157, 78, 221, 0.6);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.3);
}

.usp-icon {
    width: 30px;
    height: 30px;
    color: var(--accent-purple);
}

/* Teksty wewnątrz kart */
.usp-card-title {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.usp-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 992px) {
    .usp-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: 1fr;
        /* 1 kolumna na małych ekranach */
    }

    .usp-card {
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}


/* ================================================================= */
/* */
/* SEKCJA 5: LOKALNE CTA (FINAL PUSH)                                */
/* */
/* ================================================================= */

.local-cta-section {
    position: relative;
    z-index: 2;
    padding: 40px 0 100px 0;
    /* Zapewnia ładny odstęp przed stopką */
}

/* Luksusowy kontener Call to Action */
.cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 15, 30, 0.7) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: 24px;
    padding: 4.5rem 2rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(157, 78, 221, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Subtelny blask w centrum, za tekstem */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Przenosimy zawartość nad blask */
.cta-title,
.cta-desc,
.cta-btn {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto 2.5rem auto;
}

.cta-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .cta-box {
        padding: 3rem 1.5rem;
    }
}

/* ================================================================= */
/* */
/* BANNER COOKIES (LEWITUJĄCY GLASSMORPHISM)                         */
/* */
/* ================================================================= */

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    /* Wyśrodkowanie i zrzucenie poniżej ekranu (ukryty) */
    transform: translate(-50%, 150%);
    width: calc(100% - 2rem);
    max-width: 900px;

    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 9999;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(157, 78, 221, 0.1);
    /* Płynna animacja wyjazdu z dołu */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Klasa aktywująca wyjazd bannera */
.cookie-banner.show {
    transform: translate(-50%, 0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.4));
}

.cookie-title {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cookie-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #fff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 1rem;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}