/* Cyclone Hosting V5 - Shared Hosting Sprint 3A Why Choose */

.sh-why-choose{
    position:relative;
    padding:95px 22px;
    overflow:hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(19,223,255,.12), transparent 34%),
        linear-gradient(180deg,#061229,#040a18);
}

.sh-why-choose:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(126,218,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,218,255,.055) 1px, transparent 1px);
    background-size:72px 72px;
    opacity:.36;
    mask-image:radial-gradient(circle at 50% 40%, black, transparent 76%);
}

.sh-why-grid{
    position:relative;
    z-index:2;
    width:min(1180px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.sh-why-card{
    position:relative;
    min-height:260px;
    padding:30px;
    border-radius:28px;
    background:
        linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035)),
        radial-gradient(circle at 50% 0%,rgba(19,223,255,.10),transparent 42%);
    border:1px solid rgba(126,218,255,.16);
    box-shadow:0 28px 80px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.07);
    transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    overflow:hidden;
}

.sh-why-card:before{
    content:"";
    position:absolute;
    inset:-45%;
    background:radial-gradient(circle,rgba(19,223,255,.16),transparent 55%);
    opacity:0;
    transition:opacity .28s ease;
}

.sh-why-card:hover{
    transform:translateY(-10px);
    border-color:rgba(19,223,255,.42);
    box-shadow:0 36px 100px rgba(0,0,0,.43),0 0 42px rgba(19,223,255,.18);
}

.sh-why-card:hover:before{
    opacity:1;
}

.sh-why-icon{
    position:relative;
    z-index:2;
    width:64px;
    height:64px;
    display:grid;
    place-items:center;
    border-radius:20px;
    font-size:31px;
    background:rgba(19,223,255,.10);
    border:1px solid rgba(126,218,255,.18);
    box-shadow:0 0 28px rgba(19,223,255,.12);
}

.sh-why-card h3{
    position:relative;
    z-index:2;
    margin:24px 0 12px;
    color:#fff;
    font-size:25px;
    line-height:1.12;
    letter-spacing:-.035em;
}

.sh-why-card p{
    position:relative;
    z-index:2;
    color:#a9bdd5;
    line-height:1.75;
    margin:0;
}

@media(max-width:1000px){
    .sh-why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:640px){
    .sh-why-grid{
        grid-template-columns:1fr;
    }
}
