/* --- Page Banner --- */
.page-banner.pricing-banner {
    background: url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

/* --- Pricing Cards Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--bg-light);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: #555;
}

.pricing-card.popular {
    background-color: #222;
    border-color: var(--accent-primary);
    transform: scale(1.05);
    /* slightly bigger */
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.popular .plan-name {
    color: var(--accent-primary);
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.plan-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #444;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.plan-features li.disabled {
    color: #666;
}

.plan-features li.disabled i {
    color: #666;
}

/* Overriding button width for pricing cards */
.pricing-card .btn {
    width: 100%;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pricing-card.popular {
        order: -1;
        /* Make standard card appear first on mobile */
        transform: none;
        /* remove scale on mobile to fit nicely */
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}