/*=========================================
BUSINESS VALUE
=========================================*/

.vision-value{

    background:#fafaf8;

    padding:140px 0;

}

.section-heading{

    max-width:760px;

    margin:0 auto 90px;

    text-align:center;

}

.section-label{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border:1px solid #e9e9e9;

    border-radius:999px;

    font-size:13px;

    letter-spacing:.15em;

    text-transform:uppercase;

    color:#666;

}

.section-heading h2{

    margin-top:28px;

    font-size:58px;

    font-weight:800;

    line-height:1.05;

    letter-spacing:-2px;

    color:#111;

}

.section-heading h2 span{

    display:block;

    background:linear-gradient(
        90deg,
        #4f7dff,
        #8d63ff,
        #ff8b4d
    );

    -webkit-background-clip:text;

    color:transparent;

}

.section-heading p{

    margin-top:28px;

    font-size:19px;

    line-height:1.8;

    color:#666;

}

/* Grid */

.value-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* Card */

.value-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:24px;

    padding:40px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.value-card:hover{

    transform:translateY(-8px);

    border-color:#d9d9d9;

    box-shadow:0 20px 45px rgba(0,0,0,.05);

}

.value-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:linear-gradient(
        90deg,
        #4f7dff,
        #8d63ff,
        #ff8b4d
    );

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.value-card:hover::before{

    transform:scaleX(1);

}

.value-icon{

    width:78px;

    height:78px;

    border-radius:18px;

    background:#f8f8f8;

    border:1px solid #ececec;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

}

.value-card h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    color:#111;

}

.value-card p{

    font-size:17px;

    line-height:1.8;

    color:#666;

}

/* Responsive */

@media(max-width:992px){

    .value-grid{

        grid-template-columns:1fr;

    }

    .section-heading h2{

        font-size:42px;

    }

}
