.hero-banner{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    padding:80px 8%;
    overflow:hidden;

    background:url('')
    center center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:000;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.25) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:#7c3aed;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#e5e5e5;
    margin-bottom:35px;
    max-width:550px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.btn-primary{
    background:#7c3aed;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.25);
    color:#fff;
    backdrop-filter:blur(10px);
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* TABLET */
@media(max-width:992px){
    .hero-banner{
        min-height:600px;
    }

    .hero-content h1{
        font-size:52px;
    }
}

/* MOBILE */
@media(max-width:768px){
    .hero-banner{
        text-align:center;
        justify-content:center;
        min-height:550px;
        padding:60px 20px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
    }
}