.hero{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(rgba(15,23,42,.80),rgba(15,23,42,.80)),
        url('../images/hero/hero.webp') center/cover no-repeat;
    padding:170px 0 100px;
}

.hero .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    justify-content:flex-start;
    align-items:center;
}

.hero-subtitle{
    color:#ffffff;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:0.9;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin:20px 0;
    color:#fff;
}

.hero p{
    font-size:18px;
    color:rgba(255,255,255,.85);
    line-height:1.8;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.btn-primary{
    background:#C9A227;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}


.btn-secondary{
    border:2px solid #ffffff;
    color:#ffffff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
}

.hero-counter{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    padding:30px;
    border-radius:20px;
}

.counter-box h2{
    font-size:42px;
    color:#ffffff;
    font-weight:700;
    margin-bottom:12px;
}

.counter-box span{
    display:block;
    color:rgba(255,255,255,.85);
    font-size:18px;
    font-weight:600;
    line-height:1.5;
}

.btn-primary,
.btn-secondary{
    transition:all .3s ease;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-4px);
}
.hero-content{
    width:100%;
    max-width:800px;
}
.counter-box{
    text-align:center;
}