/* ==========================
   INVESTMENT PLANS
   ========================== */

.plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.plan-card{
    background:#111;
    border:1px solid #222;
    border-radius:16px;
    padding:25px;
    position:relative;
}

.plan-card h3{
    color:#00ffcc;
    font-size:22px;
}

.plan-card .rate{
    font-size:20px;
    font-weight:700;
    margin:15px 0;
}

.plan-range{
    font-size:14px;
    color:#aaa;
    margin-bottom:15px;
}

.plan-form input{
    width:100%;
    padding:14px;
    border-radius:10px;
    background:#0b0b0b;
    border:1px solid #222;
    color:#fff;
    font-size:15px;
    outline:none;
}

.plan-form input:focus{
    border-color:#00ffcc;
}

.plan-error{
    font-size:13px;
    color:#ff4d4d;
    margin-top:8px;
    display:none;
}

.plan-form button{
    width:100%;
    margin-top:15px;
}
p{
    font-size: small;
}

/* Mobile */
@media(max-width:900px){
    .plan-grid{
        grid-template-columns:1fr;
    }
}
