.hero-carousel {
    position: relative;
}

.hero-carousel-wrap .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 6px 16px;
}

.hero-carousel-wrap .site-header-spacer {
    display: none;
}

.hero-carousel-wrap .nav {
    margin-top: 0;
}

.hero-carousel-wrap .nav__container {
    padding: 8px 16px;
}

.hero-carousel-wrap .nav__logo {
    height: 32px;
}

.hero-carousel-wrap .nav__link,
.hero-carousel-wrap .nav__trigger {
    padding: 6px 12px;
    font-size: 0.86rem;
}

.hero-carousel-wrap .nav__cta {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(5, 15, 30, 0.88) 0%, rgba(5, 15, 30, 0.62) 40%, rgba(5, 15, 30, 0.16) 78%),
        radial-gradient(circle at 82% 18%, rgba(166, 255, 77, 0.2) 0%, transparent 40%);
}

.hero-slide__content {
    position: relative;
    z-index: 3;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
    padding-bottom: 120px;
    max-width: 760px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(166, 255, 77, 0.35);
    background: rgba(166, 255, 77, 0.18);
    color: #d6f2af;
    padding: 8px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-title {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin-bottom: 18px;
    max-width: 760px;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-ac,
.btn-ghost-ac {
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary-ac {
    background: linear-gradient(135deg, #a6ff4d, #002852);
    color: #102007;
    box-shadow: 0 12px 30px rgba(105, 157, 53, 0.45);
}

.btn-primary-ac:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(105, 157, 53, 0.5);
}

.btn-ghost-ac {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.btn-ghost-ac:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.hero-carousel__indicators {
    justify-content: flex-start;
    margin-bottom: 40px;
    margin-left: clamp(18px, 4.8vw, 90px);
}

.hero-carousel__indicators [data-bs-target] {
    width: 42px;
    height: 6px;
    border-radius: 999px;
    border: 0;
    opacity: 0.4;
    background-color: #fff;
    margin-right: 8px;
}

.hero-carousel__indicators .active {
    opacity: 1;
    background-color: #a6ff4d;
}

.hero-carousel__control {
    width: 56px;
    top: auto;
    bottom: 24px;
    opacity: 1;
}

.carousel-control-prev.hero-carousel__control {
    left: auto;
    right: 102px;
}

.carousel-control-next.hero-carousel__control {
    right: 34px;
}

.hero-carousel__control .carousel-control-prev-icon,
.hero-carousel__control .carousel-control-next-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-size: 55% 55%;
    background-color: rgba(16, 22, 33, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 20px;
}

@media (max-width: 991px) {
    .hero-slide,
    .hero-slide__content {
       height: 70vh;
        /*min-height: 80vh;*/
    }

    .hero-slide__content {
        padding-top: 120px;
        padding-bottom: 92px;
    }
}

@media (max-width: 767px) {
    .hero-slide,
    .hero-slide__content {
        height: 10vh;
        /*min-height: 80vh;*/
    }

    .hero-slide {
        background-position: 62% center;
    }

    .hero-slide__bg {
        object-position: 62% center;
    }

    .hero-slide__content {
        align-items: center;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 84px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-carousel__indicators {
        justify-content: center;
        margin-left: 0;
        margin-bottom: 28px;
    }

    .carousel-control-prev.hero-carousel__control,
    .carousel-control-next.hero-carousel__control {
        display: none;
    }
}
