.services{

    padding-block:var(--section-padding);

}

.section-heading{

    max-width:720px;

    margin:0 auto 72px;

    text-align:center;

}

.section-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    margin-bottom:20px;

    border-radius:999px;

    background:#EFF6FF;

    color:var(--secondary);

    font-size:.9rem;

    font-weight:700;

}

.section-heading h2{

    font-size:clamp(2rem,5vw,3.5rem);

    font-weight:800;

    line-height:1.1;

    letter-spacing:-.03em;

    color:var(--primary);

    margin-bottom:20px;

}

.section-heading p{

    max-width:650px;

    margin:0 auto;

    color:#64748B;

    line-height:1.8;

}

.services-grid{

    display:grid;

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

    gap:32px;

}

.service-card{

    padding:40px;

    background:var(--white);

    border:1px solid #E2E8F0;

    border-radius:20px;

    transition:all .35s ease;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#CBD5E1;

    box-shadow:0 20px 60px rgba(15,23,42,.08);

}

.service-icon{

    width:64px;
    height:64px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    border-radius:18px;

    background:#EFF6FF;

    color:var(--secondary);

    transition:all .35s ease;

}

.service-card:hover .service-icon{

    background:var(--secondary);

    color:var(--white);

}

.service-icon svg{

    width:30px;
    height:30px;

    stroke-width:2;

}

.service-card h3{

    margin-bottom:16px;

    font-size:1.35rem;

    font-weight:800;

    line-height:1.3;

    color:var(--primary);

}

.service-card p{

    color:#64748B;

    line-height:1.8;

}