﻿/* ------------------------------------
         PRICING CARDS (new, isolated)
      -------------------------------------*/
.pricing-card {
    border: 1px solid #e2e5ec;
    border-radius: 0.75rem;
    background-color: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 1rem 2rem rgba(13, 110, 253, 0.18);
    }

.pricing-card-header {
    padding: 2rem 1.5rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

    .plan-price small {
        font-size: 1rem;
        font-weight: 400;
        color: #6c757d;
    }

.pricing-card-body {
    padding: 1.5rem 1.75rem 2rem;
}

.plan-features-plain {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .plan-features-plain li {
        position: relative;
        margin-bottom: 0.6rem;
    }

       


.plan-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .plan-features li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.6rem;
    }

        .plan-features li::before {
            content: "\f272"; /* bootstrap icon: check-lg */
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: 0.15rem;
            font-size: 0.9rem;
            color: #198754;
        }
