/* =====================================
            PAGE
===================================== */

.page-shell{

    width:min(1200px,92%);

    margin:auto;

}

/* =====================================
            HERO
===================================== */

.services-hero{

    text-align:center;

    padding:90px 0 70px;

}

.hero-pill{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(124,58,237,.15);

    border:1px solid rgba(124,58,237,.35);

    color:#c4b5fd;

    margin-bottom:25px;

}

.services-hero h1{

    font-size:64px;

    color:white;

    line-height:1.1;

    margin:0;

}

.gradient-text{

    display:block;

    background:linear-gradient(
    90deg,
    #3b82f6,
    #06b6d4,
    #7c3aed);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.services-hero p{

    max-width:760px;

    margin:30px auto;

    color:#94a3b8;

    line-height:1.8;

    font-size:18px;

}

/* =====================================
            GRID
===================================== */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-bottom:80px;

}

/* =====================================
            CARD
===================================== */

.service-card{

    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:24px;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:
    rgba(59,130,246,.35);

}

.service-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:
    rgba(124,58,237,.22);

    filter:blur(70px);

    border-radius:50%;

    top:-70px;

    right:-70px;

}

/* =====================================
            ICON
===================================== */

.service-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #3b82f6,
    #7c3aed);

    margin-bottom:25px;

}

/* =====================================
            TEXT
===================================== */

.service-card h2{

    color:white;

    margin-bottom:15px;

}

.service-card p{

    color:#94a3b8;

    line-height:1.8;

    margin-bottom:28px;

}

/* =====================================
            BUTTON
===================================== */

.card-btn{

    display:inline-flex;

    padding:14px 28px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #3b82f6,
    #7c3aed);

    color:white;

    font-weight:600;

    transition:.35s;

}

.card-btn:hover{

    transform:translateY(-5px);

}

/* =====================================
            FOOTER
===================================== */

.site-footer{

    text-align:center;

    padding:35px;

    color:#94a3b8;

    border-top:1px solid rgba(255,255,255,.08);

}

/* =====================================
            ACTIVE LINK
===================================== */

.nav-menu a.active{

    color:white;

}

.nav-menu a.active::after{

    width:100%;

}

/* =====================================
            RESPONSIVE
===================================== */

@media(max-width:768px){

.services-hero h1{

font-size:42px;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card{

padding:28px;

}

}