/* --- 1. PODSTAWOWY RESET I KONFIGURACJA BODY (Bez zmian) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; 
    height: auto; 
    min-height: 100vh;
    overflow-y: auto; 
    
    padding-top: 60px;

    /* FIOLETOWA SIATKA W TLE */
    background-image: 
        linear-gradient(to right, rgba(128, 0, 128, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 0, 128, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #1a0033; 
}

/* --- 2. PANEL NAWIGACYJNY (Bez zmian) --- */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 0, 50, 0.95);
    padding: 10px 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(163, 102, 255, 0.5);
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 25px;
    transition: transform 0.3s ease-in-out;
}

.logo-link:hover .logo-img {
    transform: scale(1.08);
}

.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
}

.nav-link {
    color: #e0b0ff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 5px 10px;
    transition: color 0.3s, transform 0.3s;
    display: block;
}

.nav-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.client-panel-button {
    position: relative; 
    overflow: hidden; 
    padding: 12px 25px; 
    border-radius: 8px; 
    background: #5e00b3; 
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.4s ease-in-out;
    border: 1px solid #a366ff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.client-panel-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.7s ease-in-out;
    opacity: 0;
}

.client-panel-button:hover {
    background: #7c4dff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 102, 255, 0.6), 0 0 30px rgba(163, 102, 255, 0.4);
}

.client-panel-button:hover::before {
    transform: rotate(45deg) scale(1.1);
    opacity: 1;
}

.client-panel-button .fas {
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.client-panel-button:hover .fas {
    transform: translateX(5px);
}

/* --- 3. SEKCJA POWITALNA (HERO) --- */
.hero-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; 
    height: calc(100vh - 60px);
    width: 100%;
    padding-top: 80px; 
    padding-left: 50px; 
}

.hero-box {
    width: 90%; 
    max-width: 600px; 
    
    background-color: rgba(30, 0, 50, 0.7); 
    padding: 40px;
    border-radius: 12px; 
    text-align: left; 
    
    border: 1px solid rgba(163, 102, 255, 0.6); 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
    
    transition: none; 
}

.hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #e0b0ff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    color: #f0f0f0;
    max-width: none;
    margin: 0;
}

/* --- 4. SEKCJA OFERTA (Napis Nasza Oferta) --- */
.offer-section {
    width: 100%;
    text-align: center;
    margin-top: -30vh; 
    padding-bottom: 50px; 
}

.offer-title {
    font-size: 2.5em;
    color: #a366ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    cursor: default;
    user-select: none;
}

/* --- 5. SIATKA KART OFERTOWYCH --- */
.offers-grid {
    display: flex;
    justify-content: center; 
    gap: 30px; 
    padding: 20px 50px;
    max-width: 1300px; 
    margin: 0 auto; 
}

.offer-card {
    flex-basis: 300px; 
    flex-grow: 0; 
    flex-shrink: 1;
    
    background-color: #2b0050; 
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    
    border: 1px solid rgba(163, 102, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.offer-card.popular {
    transform: scale(1.05); 
    border: 2px solid #a366ff;
    box-shadow: 0 15px 30px rgba(163, 102, 255, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-name {
    font-size: 2em;
    color: #e0b0ff; 
}

.icon-placeholder {
    background-color: rgba(163, 102, 255, 0.1); 
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.card-icon-img {
    width: 70%; 
    height: 70%; 
    object-fit: contain; 
    filter: invert(100%) sepia(100%) saturate(700%) hue-rotate(250deg) brightness(120%) contrast(100%); 
}

.card-description {
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.card-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffffff;
    padding: 15px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-price .period {
    font-size: 0.4em;
    font-weight: normal;
    color: #ccc;
}

.card-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.card-specs li {
    font-size: 1em;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.card-specs .fas {
    color: #a366ff; 
    margin-right: 10px;
}

.buy-button {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    
    background: #000; 
    color: #a366ff; 
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.buy-button:hover {
    background: #1a1a1a; 
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* --- 6. SEKCJA OPINIE KLIENTÓW --- */
.review-section {
    width: 100%;
    text-align: center; 
    padding: 50px 0 80px; 
}

.review-title {
    font-size: 2.5em;
    color: #e0b0ff; 
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    cursor: default;
    user-select: none;
    margin-bottom: 40px; /* Dodatkowy margines pod tytułem */
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.review-card {
    flex-basis: 33%;
    background-color: #2b0050; /* Ciemne tło karty */
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    
    /* Subtelny obrys/cień pasujący do reszty */
    border: 1px solid rgba(163, 102, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Okrągły awatar */
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #a366ff; /* Fioletowy obrys */
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #e0b0ff;
    margin-bottom: 5px;
}

.stars .fas, .stars .far {
    color: #ffd700; /* Złoty kolor gwiazdek */
    font-size: 0.9em;
}

.review-text {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.review-source {
    font-size: 0.9em;
    color: #a366ff; /* Zielony kolor potwierdzenia */
    font-weight: bold;
}

.review-source .fas {
    margin-right: 8px;
}

/* --- 1 do 5 (Bez zmian) --- */
/* ... (Nawigacja, Hero, Oferta są takie same) ... */

/* --- 6. SEKCJA OPINIE KLIENTÓW (Bez zmian) --- */
.review-section {
    width: 100%;
    text-align: center; 
    padding: 50px 0 80px; 
}

.review-title {
    font-size: 2.5em;
    color: #e0b0ff; 
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    cursor: default;
    user-select: none;
    margin-bottom: 40px; 
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.review-card {
    flex-basis: 33%;
    background-color: #2b0050; 
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    
    border: 1px solid rgba(163, 102, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #a366ff; 
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #e0b0ff;
    margin-bottom: 5px;
}

.stars .fas, .stars .far {
    color: #ffd700; 
    font-size: 0.9em;
}

.review-text {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.review-source {
    font-size: 0.9em;
    color: #28a745; 
    font-weight: bold;
}

.review-source .fas {
    margin-right: 8px;
}

/* --- 7. NOWA SEKCJA FAQ --- */
.faq-section {
    width: 100%;
    text-align: center;
    padding: 40px 0 100px;
}

.faq-title {
    font-size: 2.5em;
    color: #a366ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    cursor: default;
    user-select: none;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 900px; /* Ograniczenie szerokości do centrum */
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.faq-item {
    background-color: #1a1a38; /* Ciemniejszy, granatowy kolor tła (jak na wzorze) */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s;
    border: 1px solid #2b0050; /* Delikatny obrys */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Styl dla nagłówka pytania */
.faq-question {
    display: block;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    color: #e0b0ff; /* Jasny fiolet */
    position: relative;
    list-style: none; /* Ukrywa domyślny trójkąt */
}

/* Pseudo-element dla strzałki w dół/góra */
.faq-question::after {
    content: '\f078'; /* Strzałka w dół (chevron-down) z Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease, color 0.3s;
    color: #a366ff; /* Fioletowa strzałka */
    font-size: 0.8em;
}

/* Zmiana strzałki po otwarciu (akordeon) */
.faq-item[open] > .faq-question::after {
    content: '\f077'; /* Strzałka w górę (chevron-up) */
    transform: translateY(-50%) rotate(0deg);
}

/* Styl dla odpowiedzi */
.faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
    /* Płynne przejście przy otwieraniu/zamykaniu */
    animation: fadein 0.3s ease-in-out; 
}

/* Animacja dla płynniejszego otwierania (tylko wizualne) */
@keyframes fadein {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dodatkowe style na hover (opcjonalne, dla lepszej interakcji) */
.faq-question:hover {
    color: #ffffff;
}

.faq-question:hover::after {
    color: #ffffff;
}
/* --- 1 do 6 (Bez zmian) --- */
/* ... (Nawigacja, Hero, Oferta, Opinie, FAQ są takie same) ... */

/* --- 7. SEKCJA FAQ (Bez zmian) --- */
.faq-section {
    width: 100%;
    text-align: center;
    padding: 40px 0 100px;
}

.faq-title {
    font-size: 2.5em;
    color: #a366ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    cursor: default;
    user-select: none;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 900px; 
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.faq-item {
    background-color: #1a1a38; 
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s;
    border: 1px solid #2b0050; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: block;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    color: #e0b0ff; 
    position: relative;
    list-style: none; 
}

.faq-question::after {
    content: '\f078'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease, color 0.3s;
    color: #a366ff; 
    font-size: 0.8em;
}

.faq-item[open] > .faq-question::after {
    content: '\f077'; 
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
    animation: fadein 0.3s ease-in-out; 
}

/* --- 8. NOWA SEKCJA CECHY/KORZYŚCI --- */
.features-section {
    width: 100%;
    text-align: center;
    padding: 50px 0 100px;
}

.features-title {
    font-size: 2.5em;
    color: #e0b0ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    cursor: default;
    user-select: none;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background-color: #1a1a38; /* Ciemne tło karty (jak na wzorze) */
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(163, 102, 255, 0.2);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(163, 102, 255, 0.2);
}

.feature-icon-wrapper {
    background-color: rgba(163, 102, 255, 0.15); /* Jasne tło ikony */
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #a366ff;
}

.feature-icon {
    color: #a366ff; /* Fioletowa ikona */
    font-size: 1.5em;
}

.feature-name {
    font-size: 1.3em;
    color: #e0b0ff; /* Jasny fioletowy tytuł */
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.5;
}
/* --- 1 do 7 (Bez zmian) --- */
/* ... (Nawigacja, Hero, Oferta, Opinie, FAQ są takie same) ... */

/* --- 8. SEKCJA CECHY/KORZYŚCI (Bez zmian) --- */
.features-section {
    width: 100%;
    text-align: center;
    padding: 50px 0 100px;
}

.features-title {
    font-size: 2.5em;
    color: #e0b0ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    cursor: default;
    user-select: none;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background-color: #1a1a38; 
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(163, 102, 255, 0.2);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(163, 102, 255, 0.2);
}

.feature-icon-wrapper {
    background-color: rgba(163, 102, 255, 0.15); 
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #a366ff;
}

.feature-icon {
    color: #a366ff; 
    font-size: 1.5em;
}

.feature-name {
    font-size: 1.3em;
    color: #e0b0ff; 
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.5;
}

/* --- 9. NOWA SEKCJA STOPKA (FOOTER) --- */
.main-footer {
    background-color: #0d0d21; /* Bardzo ciemne tło (jak na wzorze) */
    color: #f0f0f0;
    padding-top: 50px;
    border-top: 1px solid rgba(163, 102, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Podział kolumn */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    gap: 30px;
}

.footer-col {
    padding: 0 15px;
}

/* Kolumna 1 - Info i Logo */
.footer-info {
    padding-right: 30px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo {
    height: 30px;
    /* Prawdopodobnie trzeba będzie dostosować kolor/filtr, by był biały/jasny */
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(163, 102, 255, 0.5));
    margin-right: 10px;
}

.footer-brand {
    font-size: 1.5em;
    font-weight: bold;
    color: #e0b0ff;
}

.footer-description {
    font-size: 0.9em;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-status {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #28a745; /* Zielony dla statusu online */
    font-weight: bold;
}

.status-icon {
    margin-right: 8px;
}

/* Kolumny 2, 3, 4 - Linki */
.footer-heading {
    font-size: 1.2em;
    color: #a366ff; /* Fioletowy nagłówek */
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e0b0ff;
}

.footer-links .fas {
    color: #7c4dff; /* Ikony w kolorze fioletowym */
    margin-right: 8px;
    width: 15px; /* Ujednolicenie szerokości ikon */
    text-align: center;
}

/* Dolny pasek */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 50px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    color: #888888;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-meta a {
    color: #888888;
    text-decoration: none;
    margin-left: 20px;
}

.footer-meta a:hover {
    color: #e0b0ff;
}

.footer-meta span {
    color: #a366ff;
}
