/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg,#08111F 0%,#163453 100%);
    color: white;
    padding: 170px 0 120px;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 20%,rgba(212,175,55,.18),transparent 35%), radial-gradient(circle at 85% 75%,rgba(255,255,255,.06),transparent 40%);
        animation: heroGlow 12s ease-in-out infinite alternate;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.hero h1 {
    color: white;
    font-size: clamp(3.5rem,5.15vw,5rem);
    line-height: 1.05;
    margin-bottom: 30px;
}

.hero .col-lg-6:first-child {
    min-width: 0;
    padding-right: clamp(1rem,2.2vw,2.25rem);
}

.hero p {
    color: rgba(255,255,255,.82);
    font-size: 1.25rem;
    max-width: 640px;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.35);
    transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
    transition: transform .8s cubic-bezier(.16,1,.3,1);
    will-change: transform;
}

.hero-image--tracking {
    transition-duration: .16s;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.hero-floating {
    position: absolute;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 20px 24px;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

    .hero-floating strong {
        display: block;
        font-size: 2rem;
    }

.hero-card-1 {
    top: 40px;
    left: -30px;
}

.hero-card-2 {
    top: 220px;
    right: -30px;
}

.hero-card-3 {
    bottom: 30px;
    left: 70px;
}

.hero-statistics {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 70px;
}

.hero-statistic {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.08);
}

    .hero-statistic .counter {
        display: block;
        color: white;
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .hero-statistic span {
        color: rgba(255,255,255,.75);
    }

@keyframes heroGlow {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@media(max-width:992px) {

    .hero {
        padding: 130px 0 80px;
    }

    .hero-image {
        margin-top: 60px;
    }

    .hero .col-lg-6:first-child {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

        .hero-image img {
            height: 450px;
        }

    .hero-statistics {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.65rem, 12.2vw, 3.15rem);
        overflow-wrap: anywhere;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons a {
            width: 100%;
        }

    .hero-statistics {
        grid-template-columns: 1fr;
    }

    .hero-image img { height: 420px; }

.hero-floating {
        display: none;
    }
}
