/* RESET I USTAWIENIA GŁÓWNE (High-Tech Marka Keydoktor) */
:root {
    --bg-dark: #050a10; /* Głęboka czerń technologiczna */
    --primary: #0a2540; /* Ciemny granat zaufania */
    --accent-blue: #00d4ff;  /* Neonowy błękit techniczny */
    --accent-green: #28a745; /* Zielony kontaktowy 'trust' */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-dark: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', 'Roboto', sans-serif; background-color: var(--bg-dark); color: var(--text-white); line-height: 1.6; scroll-behavior: smooth; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* HEADER & LOGO (Ciemny Tech) */
header { padding: 15px 0; background-color: var(--bg-dark); border-bottom: 2px solid var(--accent-blue); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(5px); }
nav { display: flex; align-items: center; justify-content: space-between; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 40px; width: auto; }
.logo-text { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.logo-text span { color: var(--accent-blue); }

.nav-links { display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text-white); font-size: 14px; font-weight: 400; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-blue); }

.contact-header { display: flex; align-items: center; gap: 10px; }
.phone-link { color: #fff; text-decoration: none; font-weight: bold; font-size: 16px; border: 1px solid #fff; padding: 5px 15px; border-radius: 5px; }

/* HERO (SEO H1 Tech) */
.hero { padding: 100px 0; background: radial-gradient(circle at center, rgba(0,212,255,0.05) 0%, rgba(5,10,16,1) 60%); }
h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; text-shadow: 0 0 10px var(--accent-blue); }
.highlight { color: var(--accent-blue); }
.hero .lead { font-size: 18px; color: var(--accent-blue); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 600; }
.cta-group { display: flex; gap: 15px; justify-content: center; }

.btn { padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 16px; transition: 0.3s; }
.btn-main { background-color: var(--accent-green); color: #fff; border: 1px solid var(--accent-green); box-shadow: 0 0 15px rgba(40,167,69,0.3); }
.btn-alt { background-color: transparent; color: #fff; border: 1px solid #fff; }
.btn:active { transform: scale(0.98); }

/* SEKCJE MODULARNE */
.section { padding: 80px 0; border-top: 1px solid var(--border-dark); }
.section-title { text-align: center; font-size: 28px; color: #fff; margin-bottom: 40px; text-transform: uppercase; border-bottom: 2px solid var(--accent-blue); display: inline-block; padding-bottom: 5px; margin-left: auto; margin-right: auto; width: fit-content; text-shadow: 0 0 5px var(--accent-blue); }

/* TABELA CENNIKA (Tech) */
.table-container { background: rgba(255,255,255,0.02); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-dark); margin-bottom: 20px; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border-dark); }
.pricing-table th { background-color: var(--primary); color: #fff; font-size: 14px; text-transform: uppercase; color: var(--accent-blue); }
.disclaimer { font-size: 12px; color: #888; font-style: italic; }

/* FAQ - ROZWIJANE KAFELKI (Tech Akkordeon - POPRAWIONY) */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.02); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-dark); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; color: #fff; text-align: left; padding: 20px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; transition: 0.3s; }
.faq-question:hover, .faq-question.active { color: var(--accent-blue); background-color: rgba(255,255,255,0.01); }
.faq-question::after { content: "+"; font-size: 20px; transition: 0.3s; }
.faq-question.active::after { transform: rotate(45deg); color: var(--accent-blue); }

.faq-answer { 
    max-height: 0; /* Kluczowe dla animacji */
    overflow: hidden; 
    transition: max-height 0.3s ease-out; /* Płynna animacja */
    color: #aaa; 
    font-size: 14px; 
}
/* Dodatkowy wrapper dla zachowania paddingu wewnątrz animacji */
.faq-answer-content {
    padding: 0 20px 20px;
}

/* OBSZAR DZIAŁANIA I MAPA (SEO MIENNIE) */
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.map-info p { color: #fff; margin-bottom: 10px; }
.map-info strong { color: var(--accent-blue); }
.satellites-list { font-size: 13px; color: #aaa; font-style: italic; }
.map-wrapper { border-radius: 12px; border: 2px dashed rgba(0,212,255,0.2); background-color: #0c141e; overflow: hidden; }
.map-placeholder { padding: 40px; color: #555; }

/* FORMULARZ WYCENY */
.dark-card { background: var(--primary); border-radius: 16px; padding: 50px; border: 2px solid var(--accent-blue); box-shadow: 0 0 20px rgba(0,212,255,0.1); }
.quote-form input, .quote-form textarea { width: 100%; background-color: #050a10; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 15px; border-radius: 8px; margin-bottom: 15px; font-family: inherit; }
.quote-form input:focus, .quote-form textarea:focus { outline: none; border-color: var(--accent-blue); }

/* FOOTER */
footer { padding: 60px 0 20px; background-color: var(--dark); border-top: 1px solid var(--border-dark); }
.footer-dark p { font-size: 13px; color: #aaa; margin-bottom: 5px; }
.copyright { margin-top: 20px; opacity: 0.6; color: #555; }

/* PULS ACCTION ANIMATION */
.emergency-pulse { width: 10px; height: 10px; background: var(--accent-green); border-radius: 50%; display: inline-block; box-shadow: 0 0 0 0 rgba(40,167,69,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(40,167,69,0.7); } 70% { box-shadow: 0 0 0 10px rgba(40,167,69,0); } 100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); } }

/* MOBILNOŚĆ (POZYCJONOWANIE NA TELEFONACH) */
@media (max-width: 768px) {
    header { padding: 10px 0; }
    .logo-text { font-size: 18px; }
    .nav-links { display: none; } /* Ukrywamy menu na telefonach dla SEO */
    .phone-link { font-size: 14px; }
    
    h1 { font-size: 24px; }
    .hero .lead { font-size: 14px; }
    .cta-group { flex-direction: column; gap: 10px; }
    .pricing-table th, .pricing-table td { padding: 10px; font-size: 12px; }
    .faq-question { font-size: 14px; }
    .map-grid { grid-template-columns: 1fr; gap: 20px; }
    .dark-card { padding: 25px; }
}/* --- NOWA SEKCJA OPINIE KLIENTÓW (Społeczny Dowód) --- */

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Subtelny neonowy blask po najechaniu (High-Tech Trust) */
.review-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.client-info strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.client-info span {
    display: block;
    color: var(--text-gray);
    font-size: 13px;
    font-style: italic;
}

.rating {
    color: #ffd700; /* Złoty kolor gwiazdek ⭐ */
    font-size: 14px;
}

.review-content {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

.mt-40 {
    margin-top: 40px;
}

.google-trust-info {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* MOBILNOŚĆ SEKCJI OPINIE (Media Query) */
@media (max-width: 992px) {
    .reviews-wrapper {
        grid-template-columns: 1fr; /* Jedna kolumna na średnich ekranach */
        gap: 20px;
    }
}/* Sticky Mobile CTA */
.mobile-sticky-cta {
    display: none; /* Domyślnie ukryty */
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 10px 20px;
        z-index: 2000;
        border-top: 1px solid var(--accent-blue);
        box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    }
    /* Zapobieganie nachodzeniu stopki na przycisk */
    footer { padding-bottom: 80px; }
}/* --- NOWE STYLE DLA SOCIAL MEDIÓW --- */

/* Styl dla ikon w Nagłówku */
.header-social {
    display: flex;
    gap: 12px;
    margin-right: 15px; /* Odstęp od pulsu i telefonu */
}

.header-social a {
    color: #fff; /* Domyślny biały */
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
    opacity: 0.8;
}

.header-social a:hover {
    color: var(--accent-blue); /* Neonowy błękit tech */
    opacity: 1;
    transform: translateY(-2px); /* Delikatne uniesienie */
}

/* Styl dla ikon w Stopce */
.footer-social {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-social a {
    color: var(--text-gray); /* Domyślny szary stopki */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px; /* Odstęp między ikoną a tekstem */
    transition: 0.3s;
}

/* Duża ikona w stopce */
.footer-social a i {
    font-size: 28px;
}

/* Neonowy efekt w stopce */
.footer-social a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-blue); /* Neonowy blask text-shadow */
}

/* Poprawka dla centrowania logo w stopce */
.flex-center-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* MOBILNOŚĆ SEKCJI SOCIAL MEDIA */
@media (max-width: 768px) {
    .header-social {
        display: none; /* Ukrywamy małe ikony na telefonie, zostawiamy w stopce */
    }
}