.ww-why-visit{
    padding:90px 0;
    background:#f8fafc;
}
 
.ww-why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin-top:45px;
}
 
.ww-why-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid var(--line);
}
 
.ww-why-card:hover{
        transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(15,23,42,.14);
    border-color:var(--primary);
}

.ww-why-card::before{
    content:"";
    display:block;
    width:70px;
    height:4px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--primary),var(--primary-dark));
    margin-bottom:24px;
}
 
.ww-why-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:44px;
    margin-bottom:22px;
}
 
.ww-why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--text);
}
 
.ww-why-card p{
    color:var(--muted);
    line-height:1.8;
}