.zen2-hero {
    --zen2-red: #d84a47;
    --zen2-navy: #081322;
    --zen2-duration: 7200ms;

    position: relative;
    width: 100%;
    min-height: clamp(740px, 86vh, 900px);
    overflow: hidden;
    background: var(--zen2-navy);
    color: #fff;
    isolation: isolate;
}

.zen2-hero__slides,
.zen2-hero__slide,
.zen2-hero__media,
.zen2-hero__shade,
.zen2-hero__glow {
    position: absolute;
    inset: 0;
}

.zen2-hero__slides {
    z-index: 0;
}

.zen2-hero__slide {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .85s cubic-bezier(.4,0,.2,1);
}

.zen2-hero__slide.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

.zen2-hero__media {
    overflow: hidden;
    background: #111d2b;
}

.zen2-hero__image {
    position: absolute;
    inset: -2%;
    display: block;
    width: 104%;
    height: 104%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: scale(1.01);
    will-change: transform;
}

.zen2-hero__slide.is-active .zen2-hero__image {
    animation: zen2HeroImage var(--zen2-duration) ease-out forwards;
}

@keyframes zen2HeroImage {
    from {
        transform: scale(1.01) translate3d(0,0,0);
    }

    to {
        transform: scale(1.075) translate3d(-1%, -.6%, 0);
    }
}

.zen2-hero[dir="rtl"] .zen2-hero__slide.is-active .zen2-hero__image {
    animation-name: zen2HeroImageRtl;
}

@keyframes zen2HeroImageRtl {
    from {
        transform: scale(1.01) translate3d(0,0,0);
    }

    to {
        transform: scale(1.075) translate3d(1%, -.6%, 0);
    }
}

.zen2-hero__shade {
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(4,12,24,.90) 0%,
            rgba(6,16,31,.78) 32%,
            rgba(8,19,34,.44) 58%,
            rgba(8,19,34,.16) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4,9,18,.28) 0%,
            rgba(5,12,24,.10) 45%,
            rgba(5,12,24,.70) 100%
        );
}

.zen2-hero[dir="rtl"] .zen2-hero__shade {
    background:
        linear-gradient(
            270deg,
            rgba(4,12,24,.90) 0%,
            rgba(6,16,31,.78) 32%,
            rgba(8,19,34,.44) 58%,
            rgba(8,19,34,.16) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4,9,18,.28) 0%,
            rgba(5,12,24,.10) 45%,
            rgba(5,12,24,.70) 100%
        );
}

.zen2-hero__glow {
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 18% 45%,
            rgba(216,74,71,.18),
            rgba(216,74,71,0) 38%
        );
}

.zen2-hero[dir="rtl"] .zen2-hero__glow {
    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(216,74,71,.18),
            rgba(216,74,71,0) 38%
        );
}

.zen2-hero::after {
    content: "";
    position: absolute;
    z-index: 3;
    right: clamp(30px, 6vw, 100px);
    bottom: clamp(95px, 12vh, 150px);
    width: clamp(180px, 23vw, 350px);
    height: clamp(180px, 23vw, 350px);
    background: url("../img/zen-mark-white.svg") center / contain no-repeat;
    opacity: .055;
    pointer-events: none;
    transform: rotate(-8deg);
}

.zen2-hero[dir="rtl"]::after {
    right: auto;
    left: clamp(30px, 6vw, 100px);
    transform: rotate(8deg);
}

.zen2-hero__container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(740px, 86vh, 900px);
    padding-top: 128px;
    padding-bottom: 150px;
}

.zen2-hero__content {
    width: min(780px, 70vw);
    text-align: start;
}

.zen2-hero__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.74);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.6px;
}

.zen2-hero__brand-line {
    display: block;
    width: 42px;
    height: 2px;
    background: var(--zen2-red);
}

.zen2-hero__eyebrow {
    margin: 0 0 16px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.2px;
}

.zen2-hero__title {
    max-width: 860px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(54px, 5.7vw, 86px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1.8px;
    text-wrap: balance;
    text-shadow: 0 18px 46px rgba(0,0,0,.35);
}

.zen2-hero[dir="rtl"] .zen2-hero__title {
    letter-spacing: 0;
    line-height: 1.12;
}

.zen2-hero__text {
    max-width: 650px;
    margin: 0 0 36px;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    text-shadow: 0 10px 30px rgba(0,0,0,.34);
}

.zen2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.zen2-hero__button {
    display: inline-flex;
    min-width: 190px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition:
        transform .22s ease,
        background-color .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.zen2-hero__button--primary {
    border: 1px solid var(--zen2-red);
    background: var(--zen2-red);
    color: #fff;
    box-shadow: 0 18px 38px rgba(120,20,28,.30);
}

.zen2-hero__button--primary:hover {
    border-color: #bf3938;
    background: #bf3938;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(0,0,0,.28);
}

.zen2-hero__button--glass {
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(8,19,34,.30);
    color: #fff;
    backdrop-filter: blur(10px);
}

.zen2-hero__button--glass:hover {
    border-color: #fff;
    background: #fff;
    color: var(--zen2-navy);
    transform: translateY(-2px);
}

.zen2-hero__slide .zen2-hero__brand,
.zen2-hero__slide .zen2-hero__eyebrow,
.zen2-hero__slide .zen2-hero__title,
.zen2-hero__slide .zen2-hero__text,
.zen2-hero__slide .zen2-hero__actions {
    opacity: 0;
    transform: translateY(22px);
}

.zen2-hero__slide.is-active .zen2-hero__brand,
.zen2-hero__slide.is-active .zen2-hero__eyebrow,
.zen2-hero__slide.is-active .zen2-hero__title,
.zen2-hero__slide.is-active .zen2-hero__text,
.zen2-hero__slide.is-active .zen2-hero__actions {
    animation: zen2ContentIn .65s ease forwards;
}

.zen2-hero__slide.is-active .zen2-hero__brand {
    animation-delay: .08s;
}

.zen2-hero__slide.is-active .zen2-hero__eyebrow {
    animation-delay: .14s;
}

.zen2-hero__slide.is-active .zen2-hero__title {
    animation-delay: .19s;
}

.zen2-hero__slide.is-active .zen2-hero__text {
    animation-delay: .26s;
}

.zen2-hero__slide.is-active .zen2-hero__actions {
    animation-delay: .33s;
}

@keyframes zen2ContentIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zen2-hero__navigation {
    position: absolute;
    z-index: 9;
    right: 0;
    bottom: 46px;
    left: 0;
    display: grid;
    grid-template-columns: auto minmax(100px, 1fr) auto auto;
    gap: 24px;
    align-items: center;
}

.zen2-hero__counter {
    display: flex;
    min-width: 68px;
    align-items: baseline;
    gap: 6px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 800;
}

.zen2-hero__counter strong {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
}

.zen2-hero__progress {
    position: relative;
    overflow: hidden;
    height: 2px;
    background: rgba(255,255,255,.22);
}

.zen2-hero__progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    background: var(--zen2-red);
    transform: scaleX(0);
    transform-origin: left center;
}

.zen2-hero[dir="rtl"] .zen2-hero__progress span {
    inset: 0 0 0 auto;
    transform-origin: right center;
}

.zen2-hero.is-running .zen2-hero__progress span {
    animation: zen2Progress var(--zen2-duration) linear forwards;
}

@keyframes zen2Progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.zen2-hero__dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.zen2-hero__dot {
    position: relative;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(8,19,34,.28);
    color: rgba(255,255,255,.58);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: .2s ease;
}

.zen2-hero__dot span {
    font-size: 10px;
    font-weight: 800;
}

.zen2-hero__dot:hover,
.zen2-hero__dot.is-active {
    border-color: rgba(216,74,71,.9);
    background: rgba(216,74,71,.92);
    color: #fff;
}

.zen2-hero__arrows {
    display: flex;
    gap: 8px;
}

.zen2-hero__arrow {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: rgba(8,19,34,.34);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: .2s ease;
}

.zen2-hero__arrow:hover {
    border-color: var(--zen2-red);
    background: var(--zen2-red);
    transform: translateY(-2px);
}

.zen2-hero[dir="rtl"] .zen2-hero__arrow i {
    transform: scaleX(-1);
}

.zen2-hero__scroll {
    position: absolute;
    z-index: 8;
    right: 24px;
    bottom: 42px;
    width: 1px;
    height: 68px;
    overflow: hidden;
    background: rgba(255,255,255,.18);
}

.zen2-hero__scroll span {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 60%;
    background: #fff;
    animation: zen2Scroll 2s ease-in-out infinite;
}

@keyframes zen2Scroll {
    0% {
        top: -70%;
    }

    100% {
        top: 120%;
    }
}

@media (max-width: 1199px) {
    .zen2-hero,
    .zen2-hero__container {
        min-height: 760px;
    }

    .zen2-hero__title {
        font-size: clamp(48px, 6vw, 68px);
    }

    .zen2-hero__navigation {
        grid-template-columns: auto minmax(80px, 1fr) auto;
    }

    .zen2-hero__dots {
        display: none;
    }
}

@media (max-width: 767px) {
    .zen2-hero,
    .zen2-hero__container {
        min-height: 720px;
    }

    .zen2-hero__container {
        align-items: flex-start;
        padding-top: 185px;
        padding-bottom: 130px;
    }

    .zen2-hero__content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .zen2-hero__brand {
        justify-content: center;
        margin-bottom: 18px;
    }

    .zen2-hero__eyebrow {
        font-size: 12px;
    }

    .zen2-hero__title {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: clamp(35px, 10vw, 46px);
        line-height: 1.1;
        letter-spacing: 0;
    }

    .zen2-hero__text {
        margin-right: auto;
        margin-bottom: 28px;
        margin-left: auto;
        font-size: 15px;
        line-height: 1.65;
    }

    .zen2-hero__actions {
        justify-content: center;
    }

    .zen2-hero__button {
        width: 100%;
        max-width: 340px;
        min-height: 54px;
    }

    .zen2-hero__navigation {
        bottom: 30px;
        grid-template-columns: auto 1fr auto;
        gap: 14px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .zen2-hero__counter strong {
        font-size: 17px;
    }

    .zen2-hero__arrow {
        width: 42px;
        height: 42px;
    }

    .zen2-hero__scroll {
        display: none;
    }

    .zen2-hero::after {
        width: 190px;
        height: 190px;
        opacity: .04;
    }

    .zen2-hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(5,12,24,.42) 0%,
                rgba(7,16,31,.54) 40%,
                rgba(5,12,24,.90) 100%
            );
    }

    .zen2-hero[dir="rtl"] .zen2-hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(5,12,24,.42) 0%,
                rgba(7,16,31,.54) 40%,
                rgba(5,12,24,.90) 100%
            );
    }
}

@media (prefers-reduced-motion: reduce) {
    .zen2-hero *,
    .zen2-hero *::before,
    .zen2-hero *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .zen2-hero__slide {
        transition-duration: .01ms;
    }
}

/* ZEN HERO V2 - MOBILE HEADER BALANCE */
@media (max-width: 1199px) {

    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .site-logo-wrap,
    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .site-logo {
        display: flex !important;
        align-items: center !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: 200px !important;
        margin: 0 !important;
    }

    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .site-logo a {
        display: flex !important;
        align-items: center !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .site-logo img {
        display: block !important;
        width: 185px !important;
        max-width: 185px !important;
        height: auto !important;
        max-height: 54px !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 !important;
    }

    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .mobile-menu-toggle {
        flex: 0 0 54px !important;
        width: 54px !important;
        height: 54px !important;
        margin: 0 !important;
    }
}

@media (max-width: 479px) {

    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .site-logo-wrap,
    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .site-logo {
        max-width: 175px !important;
    }

    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .site-logo img {
        width: 165px !important;
        max-width: 165px !important;
        max-height: 50px !important;
    }

    .ltn__header-area.ltn__header-5.ltn__header-transparent
    .mobile-menu-toggle {
        flex-basis: 52px !important;
        width: 52px !important;
        height: 52px !important;
    }
}
