/* Pricing Page Styles */

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(40, 120, 235, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #F14D5D 0%, #ff6b7a 100%);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(241, 77, 93, 0.3);
    z-index: 10;
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-header i {
    display: block;
}

.pricing-header h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-body {
    padding: 30px;
}

.pricing-price {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px dashed #ECF4FF;
    margin-bottom: 30px;
}

.pricing-price h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #ECF4FF;
    color: #120F2D;
}

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

.pricing-features li i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-features li.text-muted {
    color: #6B6A75 !important;
}

/* FAQ Styles */
.accordion .card {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion .card-header {
    background: white;
    border: none;
    padding: 0;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 20px;
    color: #120F2D;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion .btn-link:hover {
    color: var(--primary);
    background: #ECF4FF;
}

.accordion .btn-link:focus {
    text-decoration: none;
    box-shadow: none;
}

.accordion .card-body {
    padding: 20px;
    color: #6B6A75;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-price h2 {
        font-size: 2.5rem;
    }

    .popular-badge {
        padding: 5px 30px;
        font-size: 0.75rem;
    }
}