.why-us{
    background:var(--secondary);
}
.why-us-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}
.why-card{
    padding:40px 25px;
    text-align:center;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(214,177,95,.15);
    border-radius:var(--radius);
    backdrop-filter:blur(20px);
    transition:var(--transition-slow);
}
.why-card:hover{
    transform:translateY(-15px);
}
.why-card i{
    font-size:42px;
    color:var(--gold);
    margin-bottom:22px;
}
.why-card h3{
    color:var(--white);
    margin-bottom:12px;
    font-size:20px;
}
.why-card p{
    color:var(--text);
    font-size:14px;
    line-height:1.9;
}
