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

.page-shell{

    width:min(1250px,92%);

    margin:auto;

}

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

.scraping-hero{

    text-align:center;

    padding:90px 0 70px;

}

.hero-pill{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

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

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

    color:#c4b5fd;

    margin-bottom:25px;

}

.scraping-hero h1{

    font-size:64px;

    color:white;

    margin:0;

    line-height:1.1;

}

.gradient-text{

    display:block;

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

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.scraping-hero p{

    max-width:760px;

    margin:30px auto;

    color:#94a3b8;

    line-height:1.8;

    font-size:18px;

}

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

.cards-grid{

    display:grid;

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

    gap:35px;

    margin-bottom:80px;

}

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

.card{

    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:25px;

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

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

    backdrop-filter:blur(18px);

    transition:.4s;

}

.card:hover{

    transform:translateY(-12px);

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

}

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

.card-icon{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    margin-bottom:25px;

    font-size:30px;

    color:white;

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

}

/* ==========================================
            TAG
========================================== */

.card-tag{

    display:inline-block;

    padding:7px 16px;

    border-radius:50px;

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

    color:#cbd5e1;

    font-size:13px;

    margin-bottom:12px;

}

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

.card h2{

    color:white;

    margin:0 0 15px;

}

.card p{

    color:#94a3b8;

    line-height:1.8;

}

.card ul{

    margin:25px 0;

    padding-left:18px;

}

.card li{

    color:#dbeafe;

    margin-bottom:10px;

}

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

.card-btn{

    margin-top:auto;

}

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

.site-footer{

    text-align:center;

    padding:35px;

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

    color:#94a3b8;

}

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

@media(max-width:768px){

.scraping-hero h1{

font-size:42px;

}

.cards-grid{

grid-template-columns:1fr;

}

}