/* Pricing Modal Styles */
/* Pricing Modal Styles */
#pricing-content {
    width: 95% !important;
    max-width: 1200px !important;
    padding: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #8e44ad;
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #8e44ad;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-header {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.price-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    height: 32px;
    /* Fixed height for alignment */
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13px;
    color: #444;
}

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

.price-features li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.price-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.price-btn:hover {
    background: #f5f5f7;
    border-color: #ccc;
}

.price-btn.primary {
    background: #8e44ad;
    border-color: #8e44ad;
    color: white;
}

.price-btn.primary:hover {
    background: #732d91;
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 20px;
    }

    #pricing-modal-overlay {
        padding-top: 20px;
    }

    .pricing-card.popular {
        transform: none;
    }
    
    .price-amount {
        font-size: 28px;
    }
}
