
/* ==========================================
   PRODUCT PAGE - HERO
========================================== */

.product-hero{
    padding:140px 0 110px;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,.25), transparent 45%),
        radial-gradient(circle at bottom left, rgba(14,165,233,.15), transparent 45%),
        linear-gradient(180deg,#07111f 0%,#0d1626 100%);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.product-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(37,99,235,.12);
    color:#38bdf8;
    font-weight:600;
    margin-bottom:25px;
}

.product-hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.product-hero h2{
    font-size:30px;
    color:#38bdf8;
    margin-bottom:25px;
}

.product-hero p{
    color:#a7b4c8;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons .btn{
    padding:15px 34px;
    border-radius:14px;
    font-weight:600;
}

.product-highlights{
    display:flex;
    gap:60px;
    margin-top:50px;
}

.product-highlights h3{
    font-size:42px;
    color:#38bdf8;
    margin-bottom:5px;
}

.product-highlights span{
    color:#9ca3af;
}

.hero-image{
    border-radius:26px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.hero-image img{
    width:100%;
    display:block;
}

.modules-section{
    padding:100px 0;
    background:#0f172a;
}

.module-card{
    background:#111c2f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px;
    transition:.35s;
    height:100%;
}

.module-card:hover{
    transform:translateY(-10px);
    border-color:#2563eb;
    box-shadow:0 20px 50px rgba(37,99,235,.25);
}

.module-card i{
    font-size:42px;
    color:#38bdf8;
    margin-bottom:20px;
}

.module-card h4{
    color:#fff;
    margin-bottom:12px;
}

.module-card p{
    color:#9ca3af;
}