﻿.plan-card {
    position: relative;
    padding: 48px 42px;
    border-radius: 26px;
    background: linear-gradient(180deg,#2b2344 0%, #070012 100%);
    border: 1px solid rgba(140,170,255,.35);
    box-shadow: 0 40px 100px rgba(0,0,0,.7);
    color: white;
    transition: .35s;
}




    .plan-card:hover {
        transform: translateY(-14px);
    }


    .plan-card.highlight {
        transform: scale(1.04);
        border: 1.5px solid #7ea2ff;
        box-shadow: 0 0 60px rgba(126,162,255,.35), 0 40px 120px rgba(0,0,0,.9);
    }



.plan-badge {
    position: absolute;
    top: -14px;
    right: 26px;
    background: #79a6ff;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}




.plan-title {
    font-size: 26px;
    margin-bottom: 6px;
}

.plan-subtitle {
    color: #aab;
    margin-bottom: 22px;
}


.plan-divider {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 22px 0;
}




.plan-price {
    font-size: 52px;
    font-weight: 800;
    margin: 18px 0;
}

.vat {
    font-size: 16px;
    color: #aab;
    margin-left: 6px;
}



.plan-description {
    color: #cfd3ff;
    line-height: 1.6;
    margin-bottom: 24px;
}




.features-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

    .plan-features li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
        color: #d6d8f0;
    }

        .plan-features li:last-child {
            border: none;
        }

    .plan-features .disabled {
        opacity: .35;
    }




.plan-card .btn-primary {
    width: 100%;
    padding: 18px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg,#6ea8ff,#4c6fff);
    letter-spacing: 2px;
    font-weight: 600;
}
@media(max-width:1100px) {

    #payment-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:700px) {

    #payment-form {
        grid-template-columns: 1fr;
    }

    .plan-card.highlight {
        transform: none;
    }
}
