.featured-tools{

    padding:90px 0;

    background:#0b1220;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:45px;

}

.featured-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

    text-align:center;

    text-decoration:none;

    transition:.35s;

}

.featured-card:hover{

    transform:translateY(-8px);

    border-color:#3b82f6;

    box-shadow:0 20px 50px rgba(59,130,246,.25);

}

.featured-card i{

    font-size:48px;

    color:#3b82f6;

    margin-bottom:20px;

}

.featured-card h3{

    color:#fff;

    margin-bottom:12px;

}

.featured-card p{

    color:#94a3b8;

}