/* ===========================
SECTIONS
=========================== */

.services{

    padding:130px 0;

    background:#F5F5F5;

}

.section-tag{

    display:inline-block;

    color:#009B77;

    font-weight:700;

    margin-bottom:20px;

}

.services h2{

    font-size:52px;

    color:#222;

    margin-bottom:20px;

    letter-spacing:-0.03em;

}

.section-text{

    max-width:720px;

    color:#666;

    font-size:18px;

    line-height:1.8;

    margin-bottom:70px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    border-radius:24px;

    padding:40px;

    transition:.35s ease;

    border:1px solid #ececec;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.service-icon{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:rgba(0,155,119,.1);
    color:#009B77;
    margin-bottom:25px;
}

.service-icon svg,
.why-icon svg{
    width:27px;
    height:27px;
    fill:none;
    stroke:currentColor;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-width:1.8;
}

.service-card h3{

    color:#222;

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:#666;

    line-height:1.7;

    margin-bottom:30px;

}

.service-card a{
    color:#009B77;
    font-weight:700;
    text-decoration:none;
}

.service-card a span{
    display:inline-block;
    margin-left:5px;
    transition:transform var(--transition);
}

.service-card a:hover span{ transform:translateX(4px); }
/* ========================================
   WHY GLANZIVO
======================================== */

.why-section{

    padding:120px 0;

    background:#ffffff;

}

.section-title{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    color:#009B77;

    font-weight:700;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.section-title h2{

    margin-top:18px;

    font-size:48px;

    color:#111315;

    line-height:1.2;

    font-weight:800;

    letter-spacing:-0.03em;

}

.section-title p{

    margin-top:24px;

    color:#6a7074;

    font-size:18px;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-card{

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:24px;

    padding:40px;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:#009B77;

    box-shadow:0 22px 50px rgba(0,0,0,.10);

}

.why-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#009B77;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;
}

.why-card h3{

    font-size:28px;

    color:#111315;

    margin-bottom:18px;

}

.why-card p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:900px){

    .why-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .why-section{

        padding:90px 0;

    }

    .section-title h2{

        font-size:34px;

    }

    .section-title p{

        font-size:16px;

    }

    .why-card{

        padding:30px;

    }

}
