.top-container{
    background-color: white;
}
.container{
    min-height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 0 16px;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    gap: 32px;
}
.top-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.header{
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.plans-section{
    display: flex;
    gap: 24px;
    min-height: 412px;
    max-width: 900px;
    margin: auto;
}
.flexc{
    display: flex;
    flex-direction: column;
    min-width: 240px;
    max-width: 290px;
    justify-content: space-between;
}
.mt-52{
    margin-top: 52px;
}
.card{
    width: 100%;
    background: #FFFFFFBF;
    border: 2px solid #FFFFFF;
    backdrop-filter: blur(4px);
    box-shadow: 0px 4px 15px 0px #406EF31A, 0px 1px 4px 0px #406EF30F;
    padding: 24px;
    border-radius: 16px;
}
.plan-heading{
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--color-paragraph);
}
.prem-heading,
.free-plan-price,
.plan-price{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--color-paragraph);
}
.prem-heading{
    margin-top: 32px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}
.free-plan-price{
    font-size: 36px;
    margin-top: 32px;
    line-height: 40px;
}
.features {
    margin-top: 32px;
}
.features h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}
.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}
.d-column{
    flex-direction: column;
}
.features li {
    font-size: 0.95rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
}
.u-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;
}
.u-btn:hover {
    background-color: var(--color-light-1);
    cursor: pointer;
}
.active-btn{
    width: unset !important;
    background: var(--color-paragraph) !important;
    color: white !important;
    min-width: 136px;
}
.active-btn:hover{
    background: radial-gradient(54.24% 100% at 49.86% 100%, #12104A 0%, #D145BF 0.01%, #060318 100%) !important;
}
.plans{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}
.plan {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.plan:hover {
    border-color: #D145BF80;
}

.plan input[type="radio"] {
    display: none;
}

.plan label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    flex-direction: column;
    padding: 12px;
}

.plan .price {
    font-size: 18px;
    font-weight: bold;
    color: #0f172a;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 4px;
}

.plan .name {
    font-size: 14px;
    color: #475569;
    margin-top: 20px;
}

/* Active (Selected) Plan */
.plan:has(input[type="radio"]:checked) {
    border: 2px solid #D145BF80;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 0px 0px 3px #D145BF1A;
}

/* Custom Radio Circle */
.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
}

input[type="radio"]:checked+label .radio-circle {
    border-color: #d946ef;
}

input[type="radio"]:checked+label .radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #d946ef;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.plan-h{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20PX;
    border-bottom: 1px solid var(--color-stroke);
}
.short-detail{
    font-size: 12px;
    color: var(--color-disable);
    margin-top: 8px;
    line-height: 16px;
    width: 100%;
}
.popular {
    margin-left: 12px;
    color: var(--color-primiary);
    border-radius: 6px;
    padding: 4px 8px;
    border-width: 0.5px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    border: 0.5px solid var(--color-primiary, #D145BF);
    background-color: rgba(209, 69, 191, 0.05);
}
.plan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.plan-features li {
    list-style: none;
    box-sizing: border-box;
    flex-wrap: wrap;
    width: 47%;
}
.upgrade{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 12px;
}
.upgrade > div{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-family: Nunito;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--Disable, #7A7B8E);
    gap: 8px;
}

@media (width <= 1000px) {
    .plans-section{
        flex-direction: column;
        width: 100%;
    }
    .flexc{
        max-width: unset;
        min-width: unset;
    }
}
@media (width <= 768px) {
    .plans{
        flex-direction: column;
    }

}

@media (width <= 568px) {
    .plan-features li {
        width: 100%;
    }
    .upgrade{
        flex-direction: column;
        gap: 24px;
    }

}
