/* public_html/css/pricing.css */

.pricing-hero {
    padding: 80px 0;
    background-color: #f9faff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card .card-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card .card-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.pricing-card .card-price {
    margin-bottom: 30px;
}

.pricing-card .card-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: #5a54d8;
}

.pricing-card .card-price .currency {
    font-size: 20px;
    font-weight: 500;
    color: #5a54d8;
    margin-left: 5px;
}

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

.pricing-card .card-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card .card-features li i {
    color: #2ee5b5;
    margin-right: 10px;
}

.pricing-card .btn-block {
    display: block;
    width: 100%;
}