/* Pricing Styles - Style sekcji cennika */

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--color-main);
    background-size: auto;
    background-repeat: round;
    position: relative;
    margin: 80px 0;
    border-radius: 0;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-section .section-headline,
.pricing-section .section-kicker {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-orange);
}

.pricing-section .section-title {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.pricing-section .section-description {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border-color: var(--color-orange);
    box-shadow: 0px 0px 20px 14px rgba(255, 107, 53, 0.35)
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-main-2);
    font-family: var(--h1-font-face);
}

.currency {
    font-size: 1.2rem;
    font-weight: 700;
}

.package-features {
    margin: 20px 0;
    flex-grow: 1;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    position: relative;
    padding-left: 25px;
    color: var(--color-dark);
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.package-features li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-weight: normal;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-orange);
    font-size: 14px;
}

.package-image {
    text-align: center;
    margin-bottom: 20px;
}

.package-image img {
    height: 118px;
    width: auto;
    border-radius: 10px;
}

.price-prefix {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-right: 5px;
}

.package-button {
    margin-top: auto;
    align-self: center;
}

.package-button:hover {
    transform: translateY(-2px);
}

li.default {
    border-bottom: #5858874f 1px dashed;
}

/* More Info Section */
.more-info {
    margin-top: 60px;
    color: var(--color-white);
    font-size: 0.95rem;
}

.more-info-content {
    color: var(--color-white);
}

.more-info ol {
    color: var(--color-white);
    counter-reset: list-counter;
    list-style: none;
    padding-left: 0;
}

.more-info ol li {
    color: var(--color-white);
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    counter-increment: list-counter;
}

.more-info ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    color: var(--color-white);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 30px 20px;
    }
}

