/* SPLIT HERO */

.sqa-split-hero{
    min-height:100vh;
    display:flex;
    background:
    linear-gradient(
    135deg,
    #06251c 0%,
    #0B3D2E 55%,
    #114232 100%);
    overflow:hidden;
}

/* LEFT SIDE */

.sqa-hero-left{
    width:45%;
    padding:100px 70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    z-index:5;
}

.sqa-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:fit-content;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(200,169,81,0.45);
    color:#F4D37E;
    font-weight:700;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
}

.sqa-hero-left h1{
    font-size:clamp(44px,5vw,78px);
    line-height:1.05;
    font-weight:900;
    color:white;
    margin-bottom:24px;
}

.sqa-hero-left h1 span{
    color:#C8A951;
}

.sqa-hero-left p{
    font-size:20px;
    line-height:1.6;
    color:rgba(255,255,255,0.85);
    max-width:580px;
    margin-bottom:36px;
}

/* BUTTONS */

.sqa-hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.sqa-btn-gold{
    background:#C8A951;
    color:#0B3D2E;
    padding:16px 30px;
    border-radius:999px;
    font-weight:900;
    transition:0.3s;
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

.sqa-btn-gold:hover{
    transform:translateY(-3px);
}

.sqa-btn-outline{
    border:1px solid rgba(255,255,255,0.45);
    color:white;
    padding:16px 30px;
    border-radius:999px;
    font-weight:800;
    transition:0.3s;
}

.sqa-btn-outline:hover{
    background:rgba(255,255,255,0.08);
}

/* RIGHT SIDE */

.sqa-hero-right{
    width:55%;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    border-top-left-radius:60px;
    border-bottom-left-radius:60px;
    box-shadow:-25px 0 70px rgba(0,0,0,0.30);
}

.sqa-hero-right::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    90deg,
    rgba(11,61,46,0.32),
    rgba(0,0,0,0.10));
    z-index:2;
}

/* SLIDES */

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.hero-slide.active{
    opacity:1;
}

.hero-slide.active{
    opacity:1;
    transform:scale(1);
}

/* MOBILE */

@media(max-width:900px){

    .sqa-split-hero{
        flex-direction:column;
    }

    .sqa-hero-left,
    .sqa-hero-right{
        width:100%;
    }

    .sqa-hero-left{
        padding:80px 28px 40px;
    }

    .sqa-hero-right{
        min-height:420px;
        border-radius:40px 40px 0 0;
    }

}