/* Style specyficzne dla strony głównej */

/* Sekcja Hero */
.hero-section {
    padding: 100px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Sekcja Funkcje */
.features-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}
.features-grid {
    display: grid;
    gap: 40px;
    text-align: left;
    grid-template-columns: 1fr; /* Domyślnie 1 kolumna */
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-item p { color: var(--text-muted); }

/* Sekcja Cennik */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}
.pricing-card {
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card.recommended {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}
.pricing-card header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.pricing-card h3 { font-size: 1.5rem; margin: 0; }
.pricing-card .price { font-size: 3rem; font-weight: 700; margin: 20px 0 10px 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .features-list { list-style: none; padding: 0; margin: 30px 0; }
.pricing-card .features-list li { margin-bottom: 15px; }
.pricing-card .features-list li::before { content: '✓'; color: var(--primary); margin-right: 10px; }
.pricing-card [role="button"] { width: 100%; text-align: center; display: block; padding: 12px; font-size: 1.1em; }
/* Responsywność dla strony głównej */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr; /* Zawsze jedna kolumna na mobilkach */
    }

    .pricing-card.recommended {
        transform: none; /* Wyłączamy powiększenie na mobilkach */
    }
}

