h1{
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: var(--color-paragraph);
}
.heading{
    text-align: center;
    margin-top: 50px;
}
.heading p{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-heading);
}
.card-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 1px 4px 0px var(--color-light-1);
    width: 300px;
    padding: 24px;
    text-align: left;
    border: 1px solid var(--color-stroke);
}
.card.active{
    border: 1px solid #D145BF80;
    box-shadow: 0px 0px 0px 4px #D145BF1A;
    cursor: unset;
}
.card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-heading);
    text-align: start;
    line-height: 28px;
}
.price {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}
.billing {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.features {
    margin-bottom: 24px;
}
.features h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}
.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features li {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.checkout-btn {
    display: block;
    width: 100%;
    background: white;
    border: 1px solid var(--color-stroke);
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px;
    text-align: center;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
}
.checkout-btn:hover {
    background-color: var(--color-light-1);
    cursor: pointer;
}
.active-btn{
    background: var(--color-paragraph) !important;
    color: white !important;
}
.active-btn:hover{
    background: radial-gradient(54.24% 100% at 49.86% 100%, #12104A 0%, #D145BF 0.01%, #060318 100%) !important;
}
