.hero{
    position:relative;
    min-height:640px;
    overflow:hidden;
    background:#05070d;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    width:100%;
    min-height:640px;
}

.hero-slide{
    position:relative;
    min-height:640px;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,#05070d 0%,rgba(5,7,13,.82) 38%,rgba(5,7,13,.25) 100%),
        linear-gradient(180deg,rgba(5,7,13,.1),#05070d 100%);
    z-index:1;
}

.hero .container,
.hero-content{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:780px;
    margin-left:clamp(40px,7vw,120px);
    padding:120px 0 90px;
    color:#fff;
}

.hero-tag{
    display:inline-flex;
    padding:11px 24px;
    border-radius:999px;
    background:linear-gradient(135deg,#0070ff,#00b2ff);
    color:#fff;
    font-size:15px;
    font-weight:900;
    margin-bottom:28px;
    box-shadow:0 0 30px rgba(0,178,255,.55);
}

.hero h1{
    max-width:760px;
    font-size:clamp(54px,7vw,96px);
    line-height:.95;
    font-weight:900;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:26px;
    text-shadow:0 0 35px rgba(0,178,255,.35);
}

.hero p{
    color:#d8e7ff;
    font-size:22px;
    line-height:1.6;
    margin-bottom:36px;
    max-width:620px;
}

.hero-buttons{
    display:flex;
    gap:18px;
}

.hero-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 34px;
    border-radius:14px;
    font-weight:900;
    text-decoration:none;
    transition:.3s;
}

.hero-buttons .btn-primary{
    background:linear-gradient(135deg,#0070ff,#00b2ff);
    color:#fff;
    box-shadow:0 0 25px rgba(0,178,255,.45);
}

.hero-buttons .btn-secondary{
    border:2px solid rgba(255,255,255,.75);
    color:#fff;
    background:rgba(255,255,255,.04);
}

.hero-buttons a:hover{
    transform:translateY(-4px);
}

.swiper-pagination{
    bottom:30px!important;
}

.swiper-pagination-bullet{
    width:11px;
    height:11px;
    background:#fff;
    opacity:.35;
}

.swiper-pagination-bullet-active{
    background:#00b2ff;
    opacity:1;
    box-shadow:0 0 18px #00b2ff;
}

@media(max-width:900px){
    .hero,
    .heroSwiper,
    .heroSwiper .swiper-wrapper,
    .heroSwiper .swiper-slide,
    .hero-slide{
        min-height:560px;
    }

    .hero-content{
        margin-left:24px;
        padding:90px 0 70px;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:18px;
    }
}