.fd-plan-selector{
    margin:30px 0;
}

.fd-plan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.fd-plan-card{
    background:#fff;
    border:2px solid #e5e5e5;
    border-radius:12px;
    padding:25px;
    cursor:pointer;
    transition:.25s ease;
    position:relative;
}

.fd-plan-card:hover{
    border-color:#2271b1;
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.fd-plan-card.active{
    border-color:#2271b1;
    background:#f5fbff;
}

.fd-plan-name{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.fd-plan-price{
    font-size:30px;
    font-weight:700;
    color:#2271b1;
    margin-bottom:15px;
}

.fd-plan-validity{
    color:#666;
    margin-bottom:20px;
}

.fd-plan-features{
    list-style:none;
    margin:0;
    padding:0;
}

.fd-plan-features li{
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.fd-plan-features li:last-child{
    border-bottom:none;
}

.fd-plan-selected{
    position:absolute;
    top:15px;
    right:15px;
    background:#2271b1;
    color:#fff;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    display:none;
}

.fd-plan-card.active .fd-plan-selected{
    display:block;
}