/*======================================
HERO
======================================*/

.hero{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #F6FAFF 55%,
        #F9FBFD 100%
    );

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-180px;

    top:-120px;

    border-radius:50%;

    background:rgba(11,94,215,.08);

    filter:blur(90px);

    z-index:0;

}

.hero::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    left:-120px;

    bottom:-100px;

    border-radius:50%;

    background:rgba(11,94,215,.05);

    filter:blur(80px);

    z-index:0;

}

.hero-grid{
    
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:#EAF2FF;

    color:var(--primary);

    padding:10px 20px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    margin-bottom:30px;

}

.hero h1{

    margin-bottom:30px;

    max-width:680px;

}

.hero p{

    font-size:20px;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.hero-stats{

    display:flex;

    gap:60px;

}

.stat-item strong{

    display:block;

    font-size:20px;

    color:var(--dark);

}

.stat-item span{

    color:var(--text);

}

.preview-card{

    border-radius:22px;

    background:#fff;

    padding:20px;

    box-shadow:

    0 40px 90px rgba(0,0,0,.08);

}

/*======================================
TRUST BAR
======================================*/

.trust-bar{

    padding:40px 0;

    background:#fff;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.trust-item{

    text-align:center;

}

.trust-item span{

    display:block;

    font-size:36px;

    margin-bottom:15px;

}

.trust-item strong{

    display:block;

    font-size:18px;

    margin-bottom:8px;

}

.trust-item small{

    color:var(--text);

}

/*======================================
WHY PROGRES
======================================*/

.why-progres{

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-content .section-label{

    display:inline-block;

    padding:8px 18px;

    background:#EAF2FF;

    color:var(--primary);

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.08em;

    margin-bottom:25px;

}

.why-content h2{

    margin-bottom:25px;

    max-width:520px;

}

.why-content p{

    max-width:520px;

    margin-bottom:40px;

    font-size:18px;

}

.why-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.why-card{

    background:#fff;

    border:1px solid #EDF1F7;

    border-radius:22px;

    padding:35px;

    transition:all .30s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(13,94,215,.10);

}

.why-card svg{

    width:52px;

    height:52px;

    color:var(--primary);

    margin-bottom:25px;

}

.why-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.why-card p{

    font-size:16px;

    line-height:1.7;

    color:var(--text);

}

/*======================================
PRODUCT PREVIEW
======================================*/

.product-preview{

    background:#F8FAFC;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.section-heading h2{

    margin:20px 0;

}

.preview-wrapper{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:28px;

    box-shadow:

        0 40px 80px rgba(0,0,0,.08);

}

.preview-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle,

        rgba(11,94,215,.04),

        transparent 70%

    );

    pointer-events:none;

}

.preview-wrapper img{

    width:100%;

    display:block;

    transition:

        opacity .25s ease,

        transform .25s ease;

}

.preview-tabs{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

}

.preview-btn{

    padding:14px 28px;

    border:none;

    border-radius:50px;

    background:#fff;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.preview-btn.active{

    background:var(--primary);

    color:#fff;

}

/*======================================
RESPONSIVE
======================================*/
@media(max-width:992px){
    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero p{

        margin-inline:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .why-cards{

        grid-template-columns:1fr;

    }

    .trust-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .hero-buttons{

        flex-direction:column;

    }

    .hero-stats{

        flex-direction:column;

        gap:20px;

    }

    .trust-grid{

        grid-template-columns:1fr;

    }

}
