/* ── Hero Slider ─────────────────────────────────────────────────── */
.hs-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) {
    .hs-hero {
        min-height: 90vh;
    }
}

/* Slides / backgrounds */
.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
}

.hs-slide--active {
    opacity: 1;
    z-index: 1;
}

.hs-slide__bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease-out;
    will-change: transform;
}

.hs-slide--active .hs-slide__bg {
    transform: scale(1.0);
}

/* Overlays */
.hs-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hs-overlay--lr {
    background: linear-gradient(to right, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .65) 55%, rgba(0, 0, 0, .25) 100%);
}

.hs-overlay--tb {
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 50%, rgba(0, 0, 0, .35) 100%);
}

.hs-overlay--grid {
    opacity: .04;
    background-image:
        linear-gradient(#ed7d37 1px, transparent 1px),
        linear-gradient(90deg, #ed7d37 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Content wrapper */
.hs-content-wrap {
    position: relative;
    z-index: 10;
    padding: 80px 0px 55px;
}

@media only screen and (min-width:768px) {
    .hs-content-wrap {
        position: relative;
        z-index: 10;
        padding: 96px 0px 64px;
    }
}

/* Inner flex row: content left, stats right */
.hs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hs-content-col {
    position: relative;
    flex: 1;
    min-width: 0;
}

/* Individual slide content */
.hs-content {
    max-width: 640px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .1s, transform .1s;
    position: absolute;
    pointer-events: none;
}

.hs-content--active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
    transition:
        opacity .7s .3s cubic-bezier(.4, 0, .2, 1),
        transform .7s .3s cubic-bezier(.4, 0, .2, 1);
}

/* Badge */
.hs-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s .4s ease, transform .6s .4s ease;
}

.hs-content--active .hs-badge {
    opacity: 1;
    transform: translateY(0);
}

.hs-badge__line {
    display: block;
    width: 48px;
    height: 1px;
    background: #ed7d37;
}

.hs-badge__text {
    color: #ed7d37;
    font-size: 11px;
    letter-spacing: .4em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Heading */
.hs-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s .55s ease, transform .7s .55s ease;
}

.hs-content--active .hs-heading {
    opacity: 1;
    transform: translateY(0);
}

.hs-heading span {
    color: #ed7d37;
}

/* Description */
.hs-desc {
    color: #a0a0a0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s .7s ease, transform .7s .7s ease;
}

.hs-content--active .hs-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.hs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s .85s ease, transform .7s .85s ease;
}

.hs-content--active .hs-buttons {
    opacity: 1;
    transform: translateY(0);
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
    text-decoration: none;
    white-space: nowrap;
    transition: background .3s, color .3s, border-color .3s, transform .2s;
}

.hs-btn--primary {
    background: #ed7d37;
    color: #000;
}

.hs-btn--primary:hover {
    background: #ff9a5c;
    transform: translateX(3px);
}

.hs-btn--primary i {
    transition: transform .3s;
}

.hs-btn--primary:hover i {
    transform: translateX(4px);
}

.hs-btn--secondary {
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
}

.hs-btn--secondary:hover {
    border-color: #ed7d37;
    color: #ed7d37;
}

/* Stats */
.hs-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    flex-shrink: 0;
    opacity: 0;
    animation: hsFadeInRight .8s 1.1s forwards;
}

@keyframes hsFadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hs-stat {
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color .3s;
}

.hs-stat:hover {
    border-color: rgba(237, 125, 55, .4);
}

.hs-stat__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(237, 125, 55, .4);
    flex-shrink: 0;
}

.hs-stat__icon i,
.hs-stat__icon svg {
    color: #ed7d37;
    fill: #ed7d37;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.hs-stat__number {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.hs-stat__label {
    color: #a0a0a0;
    font-size: 10px;
    letter-spacing: .2em;
    margin-top: 4px;
}

/* Arrows */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: auto;
    height: 52px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background .3s, border-color .3s, color .3s, transform .3s;
    backdrop-filter: blur(8px);
    display: none;
}

@media only screen and (min-width:1440px) {
    .hs-arrow {
        display: inline-block;
    }
}

.hs-arrow:focus {
    background: #ed7d37;
    border-color: #ed7d37;
    color: #000;
}

.hs-arrow:hover {
    background: #ed7d37;
    border-color: #ed7d37;
    color: #000;
}

.hs-arrow--prev {
    left: 24px;
}

.hs-arrow--prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.hs-arrow--next {
    right: 24px;
}

.hs-arrow--next:hover {
    transform: translateY(-50%) translateX(3px);
}

/* Dots */
.hs-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media only screen and (min-width:768px) {
    .hs-dots {
        bottom: 70px;
    }
}

@media only screen and (min-width:992px) {
    .hs-dots {
        bottom: 75px;
    }
}

.hs-dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .4s, width .4s;
}

.hs-dot--active {
    background: #ed7d37;
    width: 48px;
}

/* Scroll indicator */
.hs-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hs-scroll__label {
    color: #a0a0a0;
    font-size: 10px;
    letter-spacing: .3em;
}

.hs-scroll__line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #ed7d37, transparent);
    animation: hsPulse 1.8s ease-in-out infinite;
}

@keyframes hsPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* Progress bar */
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #ed7d37;
    z-index: 10;
    width: 0%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hs-stats {
        display: none;
    }

    .hs-inner {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .hs-buttons {
        flex-direction: column;
    }

    .hs-btn {
        justify-content: center;
    }
}