/* ==========================================================================
   1. ZMIENNE (VARIABLES) I RESET
   ========================================================================== */
:root {
    --primary-color: #b94dff;
    --primary-color-dim: rgba(185, 77, 255, 0.2);
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    /* Głęboki kosmos jako baza/fallback — widoczny zanim wczyta się WebGL
       oraz na urządzeniach bez obsługi WebGL. Granatowo-fioletowy gradient. */
    background-color: #03020a;
    background-image:
        radial-gradient(ellipse at 50% 32%, rgba(60, 30, 110, 0.45) 0%, rgba(8, 5, 22, 0) 55%),
        linear-gradient(180deg, #06030f 0%, #080418 48%, #04020c 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* ==========================================================================
   2. LAYOUT GŁÓWNY I TŁO (THREE.JS)
   ========================================================================== */
.webgl {
    position: fixed;
    inset: 0;            /* top/right/bottom/left = 0 → pełny ekran */
    width: 100%;
    height: 100%;
    z-index: -1;         /* cały content strony leży NA tle */
    outline: none;
    pointer-events: none;/* tło nigdy nie przechwytuje kliknięć */
}

.content {
    position: relative;
    z-index: 1;
    /* Zwiększono z 800px na 1100px, aby napis miał miejsce na PC */
    max-width: 1100px; 
    margin: 0 auto;
    padding: 100px 20px 150px 20px;
}

/* ==========================================================================
   3. TYPOGRAFIA I NAGŁÓWEK (NAPRAWIONY DESKTOP)
   ========================================================================== */
header {
    text-align: center;
    /* Drastycznie zmniejszona dziura pod guzikiem z 250px na 80px */
    margin-bottom: 80px; 
    padding: 20px;
    perspective: 1000px; 
}

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Elastyczny rozmiar czcionki na PC */
    font-size: clamp(3rem, 7vw, 6rem); 
    white-space: nowrap; /* Tytuł na PC nigdy nie pęknie na dwie linie */
    margin-bottom: 10px;
    color: var(--text-main);
    text-shadow: 0 0 15px var(--primary-color), 0 0 40px var(--primary-color);
    opacity: 0; 
    animation: flyFromDeep 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    animation: flyFromDeep 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

/* Efekt mrugania kursora dla maszyny do pisania */
.subtitle::after {
    content: '█';
    color: var(--primary-color);
    animation: blink 1s infinite;
    margin-left: 5px;
}

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

p, li {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

ul {
    margin-left: 20px;
    list-style-type: none;
    margin-top: 15px;
}

ul li {
    margin-bottom: 10px;
}

ul li::before {
    content: ">>";
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 15px;
    font-family: monospace;
}

/* ==========================================================================
   4. SEKCJE (GLASSMORPHISM / OSTATECZNA IZOLACJA CIENI)
   ========================================================================== */
.seo-section {
    position: relative;
    opacity: 0;
    transform: scale(0.9) translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    scroll-margin-top: 50px;
    
    margin: 80px auto;
    padding: 60px;
    max-width: 900px;
    border-radius: 20px; 
    
    /* CZYTELNOŚĆ: ciemne, matowe szkło nad ruchomym tłem 3D.
       Przyciemnia i rozmywa kosmos pod spodem → tekst i cennik pozostają
       w pełni czytelne (kontrast > 4.5:1), a całość ma premium „glass" look. */
    background: rgba(6, 5, 16, 0.62) !important;
    backdrop-filter: blur(5px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(5px) saturate(120%) !important;

    border: 1px solid var(--primary-color-dim);
    
    /* USUWA CAŁKOWICIE ZWYKŁY CIEŃ Z KONTENERA */
    box-shadow: none !important;
    z-index: 1; /* Utrzymuje zawartość nad cieniem */
}

.seo-section.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* TWÓRCA CIENIA - NIEWIDZIALNA WARSTWA POD SPODEM */
.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none; /* Nie blokuje klikania w linki i tabele */
    z-index: -1; /* Chowa cień pod tekstem */
    
    /* Twój mniejszy, elegancki Glow */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),             
                0 0 15px rgba(185, 77, 255, 0.08),           
                inset 0 0 10px rgba(185, 77, 255, 0.03); 
                
    /* Sprzętowa akceleracja jest teraz włączona TYLKO dla pustego, lekkiego pudełka */
    transform: translateZ(0);
    will-change: transform;
}

/* ==========================================================================
   5. UI: PRZYCISKI
   ========================================================================== */
.pricing-buttons-container {
    margin-top: 50px;
    opacity: 0;
    animation: fadeUpButtons 1s ease-out forwards;
    animation-delay: 1.2s; 
}

.pricing-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    /* Cień pod tekstem dla czytelności nad świecącym tłem */
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.buttons-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;      /* więcej marek = przyciski zawijają się do kolejnych rzędów */
    gap: 18px;
    margin-bottom: 25px;
}

.cyber-button {
    display: inline-block;
    padding: 12px 35px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    /* Ciemne szkło zamiast prawie-przezroczystego tła — białe etykiety
       pozostają czytelne nawet nad jasną poświatą orbu. */
    background: rgba(8, 12, 20, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--primary-color-dim);
    border-radius: 25px;
    /* Wyraźny purpurowy glow już w stanie spoczynku */
    box-shadow: 0 0 22px rgba(185, 77, 255, 0.5), 0 0 7px rgba(185, 77, 255, 0.35), inset 0 0 10px rgba(185, 77, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cyber-button:hover {
    background: var(--primary-color-dim);
    border-color: var(--primary-color);
    box-shadow: 0 0 35px rgba(185, 77, 255, 0.8), 0 0 12px rgba(185, 77, 255, 0.5), inset 0 0 14px rgba(185, 77, 255, 0.25);
    transform: translateY(-3px);
}

.other-brands-note {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
    /* Cień pod tekstem dla czytelności nad świecącym tłem */
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.other-brands-note strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* NEONOWY PRZYCISK TELEFONU */
.neon-phone-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 23px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
    background: linear-gradient(135deg, rgba(185, 77, 255, 0.15) 0%, rgba(90, 30, 150, 0.05) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(185, 77, 255, 0.4), inset 0 0 8px rgba(185, 77, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
}

.neon-phone-btn:hover {
    transform: scale(1.03) translateY(-3px);
    background: linear-gradient(135deg, rgba(185, 77, 255, 0.3) 0%, rgba(120, 50, 180, 0.1) 100%);
    box-shadow: 0 0 25px rgba(185, 77, 255, 0.6), inset 0 0 15px rgba(185, 77, 255, 0.4);
    color: #ffffff;
    text-shadow: 0 0 10px #fff, 0 0 20px var(--primary-color);
}

/* ==========================================================================
   6. UI: TABELE
   ========================================================================== */
.price-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th, .price-table td {
    padding: 15px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(185, 77, 255, 0.1); 
}

.price-table td { color: #cccccc; }
.price-table td:first-child { color: var(--text-main); font-weight: 600; }
.price-table tbody tr:hover { background-color: rgba(185, 77, 255, 0.08); }

/* ==========================================================================
   7. SEKCJA STATYSTYK ZAUFANIA
   ========================================================================== */
.stats-bar {
    position: relative;
    /* Ciemna baza + delikatny teal + rozmycie tła → liczby czytelne nad kosmosem */
    background:
        linear-gradient(90deg, rgba(185,77,255,0.04) 0%, rgba(185,77,255,0.08) 50%, rgba(185,77,255,0.04) 100%),
        rgba(6, 5, 16, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid rgba(185,77,255,0.3);
    padding: 40px 20px;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px rgba(185,77,255,0.4);
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(185,77,255,0.6);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-color-dim), transparent);
}

@media (max-width: 768px) {
    .stat-divider { display: none; }
    .stat-number { font-size: 2rem; }
    .stats-container { gap: 25px; }
}

/* ==========================================================================
   8. SEKCJA KONTAKTOWA I LASER
   ========================================================================== */
.contact-section {
    background: rgba(8, 6, 16, 0.95);
    padding: 70px 20px;
    position: relative;
    width: 100%;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    margin-top: -15px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-form-wrapper, .contact-info-wrapper { flex: 1; min-width: 300px; }

.contact-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-form input, .contact-form textarea {
    padding: 14px 18px;
    background: rgba(18, 12, 26, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(185, 77, 255, 0.2);
    color: white;
    border-radius: 12px;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(160,160,160,0.6);
}

.contact-form textarea { height: 110px; resize: none; }

/* Kompaktowa zgoda na politykę prywatności (zajmuje mało miejsca) */
.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-muted);
    margin: -2px 0 2px;
}
.privacy-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}
.privacy-consent a { color: var(--primary-color); text-decoration: underline; }

.contact-form input:focus, .contact-form textarea:focus {
    background: rgba(185, 77, 255, 0.04);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(185, 77, 255, 0.15);
}

.cyber-button-solid {
    padding: 16px;
    background: var(--primary-color);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 30px rgba(185,77,255,0.6), 0 0 10px rgba(185,77,255,0.45);
}

.cyber-button-solid:hover {
    background: #fff;
    box-shadow: 0 0 45px rgba(185, 77, 255, 0.85), 0 0 14px rgba(185, 77, 255, 0.6), 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.contact-details { margin-bottom: 25px; }
.contact-details p { color: #ddd; margin-bottom: 10px; font-size: 1rem; }
.contact-details strong { color: var(--primary-color); font-family: var(--font-heading); font-size: 1.2rem; }

.contact-address {
    color: var(--text-muted) !important;
    line-height: 1.7;
}

.contact-phone {
    display: inline-block;
    margin: 12px 0 10px;
    text-decoration: none;
}

.contact-email-line {
    color: var(--text-muted) !important;
    font-size: 0.95rem !important;
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: text-shadow 0.3s;
}

.email-link:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

.map-container {
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(185,77,255,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.88) contrast(1.15) hue-rotate(270deg);
    opacity: 0.75;
}

/* ==========================================================================
   9. PŁYWAJĄCY PRZYCISK TELEFONU
   ========================================================================== */
.float-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(185,77,255,0.4);
    /* Stały, neonowy glow przycisku słuchawki (niezależny od animacji pulsowania) */
    filter: drop-shadow(0 0 14px rgba(185, 77, 255, 0.95));
    animation: pulse-ring 2s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.float-call-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(185,77,255,0.7);
    animation: none;
}

.float-call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(185,77,255,0.5); }
    70%  { box-shadow: 0 0 0 18px rgba(185,77,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(185,77,255,0); }
}

@media (max-width: 768px) {
    .float-call-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .float-call-icon { font-size: 1.4rem; }
}

/* ==========================================================================
   8. ANIMACJE BAZOWE
   ========================================================================== */
@keyframes flyFromDeep {
    0% { opacity: 0; transform: translateZ(-1000px) scale(0.01); filter: blur(20px); }
    100% { opacity: 1; transform: translateZ(0) scale(1); filter: blur(0px); }
}

@keyframes fadeUpButtons {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   9. NOWE EFEKTY PREMIUM (PASEK I KURSOR)
   ========================================================================== */
/* Pasek postępu scrollowania */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color), 0 0 5px #fff;
    z-index: 9999;
    width: 0%;
}

/* Cyber Kursor (ukrywamy domyślny tylko tam, gdzie jest myszka) */
@media (pointer: fine) {
    body {
        cursor: none; 
    }
  .cyber-cursor {
        position: fixed;
        width: 30px;
        height: 30px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        pointer-events: none; 
        
        /* OTO ZMIANA: Zmieniamy 9999 na 99999999 (osiem dziewiątek) */
        z-index: 99999999; 
        
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
        box-shadow: 0 0 10px var(--primary-color), inset 0 0 5px var(--primary-color);
    }
}
/* ==========================================================================
   14. MAŁE PRZYCISKI W TABELI I POPUP (MODAL)
   ========================================================================== */
.cyber-button-small {
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
    /* Purpurowy glow także na małych przyciskach „Kup teraz" */
    box-shadow: 0 0 16px rgba(185, 77, 255, 0.7), 0 0 5px rgba(185, 77, 255, 0.5);
}

.cyber-button-small:hover {
    box-shadow: 0 0 26px rgba(185, 77, 255, 0.95), 0 0 9px rgba(185, 77, 255, 0.7);
    transform: scale(1.05);
    background: #fff;
}

/* OKIENKO POPUP */
.cyber-modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.cyber-modal-content {
    background: rgba(16, 10, 24, 0.95);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px rgba(185, 77, 255, 0.2);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.cyber-modal.show .cyber-modal-content {
    transform: translateY(0);
}

#modal-model-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.close-modal {
    color: var(--primary-color);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #fff;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* ==========================================================================
   10. POPRAWKI DLA TELEFONÓW (MOBILE / RWD) - PANCERNA WERSJA iOS
   ========================================================================== */
@media (max-width: 768px) {
    /* Resetujemy całe body, upewniając się, że nie ma marginesów systemowych */
    html, body {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
        -webkit-text-size-adjust: 100%;
    }

    header {
        perspective: none !important;
        padding: 15px 5px;
        margin-bottom: 50px !important; 
    }

/* GŁÓWNY TYTUŁ - BRUTALNA SIŁA DLA ANDROID & iOS */
    h1 {
        /* Zmniejszamy na 6.8vw - to bezpieczna wartość, która zmieści się nawet na starszych, węższych Androidach */
        font-size: 6.8vw !important; 
        line-height: 1.1 !important;
        
        /* Absolutna blokada łamania na kropce */
        white-space: nowrap !important; 
        word-break: normal !important; 
        overflow-wrap: normal !important;
        -webkit-hyphens: none !important; /* Blokada dla Safari */
        hyphens: none !important; /* Blokada dla Androida */
        
        letter-spacing: -1px !important; 
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important; /* Usuwamy padding, zyskujemy cenne milimetry po bokach */
        box-sizing: border-box !important;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-top: 15px;
    }

    .content {
        padding: 40px 0 !important; 
        width: 100% !important;
        margin: 0 !important;
        overflow-x: hidden !important;
    }

    /* PANCERNE FOLIE OD BRZEGU DO BRZEGU (PEŁNY EKRAN) */
    .seo-section {
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        padding: 30px 15px !important; 
        box-sizing: border-box !important;
    }
    
    .seo-section h2 { font-size: 1.5rem !important; }
    .seo-section p, .seo-section li { font-size: 0.95rem !important; line-height: 1.6 !important; }
    
    .price-table-wrapper { width: 100% !important; margin: 0 !important; }
    .price-table th, .price-table td { padding: 10px 5px !important; font-size: 0.85rem !important; }

    .neon-phone-btn {
        font-size: 1.2rem;
        padding: 10px 20px;
        margin-top: 15px;
    }
}
/* ==========================================================================
   15. PRZEŁĄCZNIK JĘZYKÓW (LANGUAGE SWITCHER)
   ========================================================================== */
.lang-switcher {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 100;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    background: rgba(16, 10, 24, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--primary-color-dim);
    backdrop-filter: blur(5px);
}

.lang-switcher a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 5px;
}

.lang-switcher a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--primary-color);
}

.lang-switcher a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.lang-switcher .separator {
    color: #444;
}

@media (max-width: 768px) {
    .lang-switcher {
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   16. DOSTĘPNOŚĆ: REDUKCJA RUCHU (prefers-reduced-motion)
   Tło 3D jest wyciszane w JS; tutaj uspokajamy też animacje CSS.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    /* Elementy startujące z opacity:0 przez animację — pokaż je od razu */
    h1, .subtitle, .pricing-buttons-container { opacity: 1 !important; }
    .float-call-btn { animation: none !important; }
}

/* ==========================================================================
   17. BANER ZGODY NA COOKIES
   ========================================================================== */
.cookie-bar {
    position: fixed;
    left: 20px;
    bottom: 20px;
    right: 110px;              /* zostawiamy miejsce na pływający przycisk telefonu */
    max-width: 720px;
    z-index: 99998;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    background: rgba(10, 8, 20, 0.94);
    border: 1px solid var(--primary-color-dim);
    border-radius: 14px;
    box-shadow: 0 0 26px rgba(185, 77, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
    transform: translateY(160%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s;
}
.cookie-bar.show { transform: translateY(0); opacity: 1; }
.cookie-bar a { color: var(--primary-color); text-decoration: underline; }
.cookie-accept {
    flex-shrink: 0;
    padding: 9px 22px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    background: var(--primary-color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(185, 77, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-accept:hover { background: #fff; box-shadow: 0 0 26px rgba(185, 77, 255, 0.95); transform: translateY(-2px); }

@media (max-width: 768px) {
    .cookie-bar {
        left: 10px;
        right: 10px;
        bottom: 84px;          /* nad pływającym przyciskiem telefonu */
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }
}

/* ==========================================================================
   18. KOMUNIKAT WYSYŁKI FORMULARZA (AJAX – sukces / błąd)
   ========================================================================== */
.form-status {
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
    margin-top: 2px;
}
.form-status.success,
.form-status.error {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 500;
}
.form-status.success {
    color: #7dffc0;
    background: rgba(18, 60, 42, 0.45);
    border: 1px solid rgba(125, 255, 192, 0.45);
    box-shadow: 0 0 18px rgba(125, 255, 192, 0.18);
}
.form-status.error {
    color: #ff8aa6;
    background: rgba(60, 18, 30, 0.45);
    border: 1px solid rgba(255, 138, 166, 0.45);
    box-shadow: 0 0 18px rgba(255, 138, 166, 0.18);
}
/* Wyróżniony panel po udanej wysyłce (zastępuje formularz) */
.form-status.big {
    padding: 34px 24px;
    font-size: 1.1rem;
    line-height: 1.6;
    animation: fadeUpButtons 0.5s ease-out;
}
.form-status.big strong {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}