.vsi-hero-banner,
.vsi-hero-banner * {
    box-sizing: border-box;
}

.vsi-hero-banner {
    --vsi-accent: #C9963A;
    --vsi-dark: #193B61;
    --vsi-text: #FFFFFF;
    --vsi-container: 1180px;
    --vsi-height-desktop: 540px;
    --vsi-height-tablet: 620px;
    --vsi-height-mobile: 640px;
    --vsi-speed: 700ms;
    --vsi-radius: 999px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    min-height: var(--vsi-active-height, var(--vsi-height-desktop));
    color: var(--vsi-text);
    background: var(--vsi-dark);
    font-family: inherit;
}

.vsi-hero-viewport,
.vsi-hero-track {
    position: relative;
    min-height: inherit;
}

.vsi-hero-track {
    background: linear-gradient(135deg, var(--vsi-dark), #081d34);
}

.vsi-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: inherit;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--vsi-speed) ease, visibility var(--vsi-speed) ease;
}

.vsi-hero-slide:first-child {
    position: relative;
}

.vsi-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.vsi-hero-slide::before,
.vsi-hero-slide::after,
.vsi-hero-shade {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vsi-hero-slide::before {
    z-index: 0;
    background-image: var(--vsi-bg-image, linear-gradient(135deg, var(--vsi-dark), #071a2f));
    background-size: cover;
    background-position: var(--vsi-bg-position, center center);
    transform: scale(1.025);
}

.vsi-hero-slide::after {
    z-index: 1;
    background: var(--vsi-overlay-color, var(--vsi-dark));
    opacity: var(--vsi-overlay-opacity, .74);
}

.vsi-hero-shade {
    z-index: 2;
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .16), transparent 26%),
        linear-gradient(90deg, rgba(7, 23, 42, .94) 0%, rgba(18, 48, 78, .78) 46%, rgba(25, 59, 97, .28) 100%);
}

.vsi-hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: min(100% - 48px, var(--vsi-container));
    min-height: inherit;
    margin: 0 auto;
    padding: clamp(72px, 8vw, 112px) 0;
}

.vsi-hero-content {
    width: min(100%, var(--vsi-content-width, 560px));
    color: var(--vsi-text);
    align-self: center;
}

.vsi-hero-banner.vsi-force-content-center .vsi-hero-inner {
    align-items: center;
    justify-content: center !important;
}

.vsi-hero-banner.vsi-force-content-center .vsi-hero-content {
    margin-left: auto;
    margin-right: auto;
}

.vsi-pos-left .vsi-hero-inner,
.vsi-pos-center-left .vsi-hero-inner {
    justify-content: flex-start;
}

.vsi-pos-center .vsi-hero-inner {
    justify-content: center;
}

.vsi-pos-right .vsi-hero-inner {
    justify-content: flex-end;
}

.vsi-align-left .vsi-hero-content {
    text-align: left;
}

.vsi-align-center .vsi-hero-content {
    text-align: center;
}

.vsi-align-right .vsi-hero-content {
    text-align: right;
}

.vsi-align-center .vsi-hero-actions {
    justify-content: center;
}

.vsi-align-right .vsi-hero-actions {
    justify-content: flex-end;
}

.vsi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    margin: 0 0 24px;
    padding: 8px 16px;
    border: 1px solid rgba(201, 150, 58, .74);
    border-radius: 999px;
    color: #ffd47b;
    background: rgba(201, 150, 58, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 10px 30px rgba(0, 0, 0, .16);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .065em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vsi-badge-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: var(--vsi-accent);
    box-shadow: 0 0 0 5px rgba(201, 150, 58, .14);
}

.vsi-hero-title {
    margin: 0;
    color: var(--vsi-text);
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(42px, 5.3vw, 70px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.045em;
    text-wrap: balance;
    text-shadow: 0 14px 42px rgba(0, 0, 0, .32);
}

.vsi-hero-subtitle {
    width: min(100%, 560px);
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.55;
    font-weight: 650;
    text-shadow: 0 9px 28px rgba(0, 0, 0, .22);
}

.vsi-align-center .vsi-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.vsi-align-right .vsi-hero-subtitle {
    margin-left: auto;
}

.vsi-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.vsi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: var(--vsi-radius);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
    will-change: transform;
}

.vsi-btn:hover,
.vsi-btn:focus-visible {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.vsi-btn:focus-visible,
.vsi-hero-dots button:focus-visible,
.vsi-hero-arrow:focus-visible,
.vsi-hero-helpline:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .74);
    outline-offset: 3px;
}

.vsi-btn-primary {
    color: #071d33 !important;
    background: var(--vsi-accent);
    border: 1px solid var(--vsi-accent);
    box-shadow: 0 18px 42px rgba(201, 150, 58, .28);
}

.vsi-btn-primary:hover,
.vsi-btn-primary:focus-visible {
    color: #071d33 !important;
    filter: brightness(1.06);
    box-shadow: 0 22px 48px rgba(201, 150, 58, .34);
}

.vsi-btn-secondary {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 14px 34px rgba(0, 0, 0, .13);
    backdrop-filter: blur(8px);
}

.vsi-btn-secondary:hover,
.vsi-btn-secondary:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .82);
}

.vsi-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
}

.vsi-icon-arrow {
    width: 17px;
    height: 17px;
}

.vsi-hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 5;
    display: grid;
    justify-items: center;
    gap: 10px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .72);
}

.vsi-hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vsi-hero-dots button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
    cursor: pointer;
    transition: width .24s ease, background .24s ease, transform .24s ease;
}

.vsi-hero-dots button:hover,
.vsi-hero-dots button:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .78);
}

.vsi-hero-dots button.is-active {
    width: 26px;
    background: var(--vsi-accent);
}

.vsi-hero-scroll {
    display: grid;
    justify-items: center;
    gap: 1px;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

.vsi-hero-scroll svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    animation: vsiHeroScrollCue 1.6s ease-in-out infinite;
}

.vsi-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.vsi-hero-arrow:hover,
.vsi-hero-arrow:focus-visible {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .72);
}

.vsi-hero-arrow-prev {
    left: clamp(18px, 3vw, 42px);
}

.vsi-hero-arrow-prev .vsi-icon-arrow {
    transform: rotate(180deg);
}

.vsi-hero-arrow-next {
    right: clamp(18px, 3vw, 42px);
}

.vsi-hero-helpline {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 24px;
    color: #071d33 !important;
    background: var(--vsi-accent);
    border-top-left-radius: 16px;
    box-shadow: 0 -12px 34px rgba(0, 0, 0, .18);
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
    transition: filter .2s ease, transform .2s ease;
}

.vsi-hero-helpline:hover,
.vsi-hero-helpline:focus-visible {
    color: #071d33 !important;
    filter: brightness(1.04);
    text-decoration: none !important;
}

.vsi-hero-helpline strong {
    color: inherit;
    font-weight: 900;
}

.vsi-hero-helpline .vsi-icon-phone {
    width: 16px;
    height: 16px;
}

.vsi-hide-dots-active .vsi-hero-dots,
.vsi-hide-scroll-active .vsi-hero-scroll,
.vsi-hide-helpline-active .vsi-hero-helpline,
.vsi-hide-dots-active.vsi-hide-scroll-active .vsi-hero-bottom {
    display: none;
}

@keyframes vsiHeroScrollCue {
    0%, 100% {
        transform: translateY(0);
        opacity: .7;
    }
    50% {
        transform: translateY(4px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .vsi-hero-slide.is-active .vsi-hero-badge,
    .vsi-hero-slide.is-active .vsi-hero-title,
    .vsi-hero-slide.is-active .vsi-hero-subtitle,
    .vsi-hero-slide.is-active .vsi-hero-actions {
        animation: vsiHeroRise .72s ease both;
    }

    .vsi-hero-slide.is-active .vsi-hero-title {
        animation-delay: .05s;
    }

    .vsi-hero-slide.is-active .vsi-hero-subtitle {
        animation-delay: .1s;
    }

    .vsi-hero-slide.is-active .vsi-hero-actions {
        animation-delay: .15s;
    }
}

@keyframes vsiHeroRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .vsi-hero-banner {
        min-height: var(--vsi-active-height, var(--vsi-height-tablet));
    }

    .vsi-hero-inner {
        width: min(100% - 40px, var(--vsi-container));
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .vsi-hero-title {
        font-size: clamp(40px, 8.4vw, 62px);
    }

    .vsi-hero-subtitle {
        font-size: 17px;
    }

    .vsi-hero-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .vsi-hero-banner {
        min-height: var(--vsi-active-height, var(--vsi-height-mobile));
    }

    .vsi-hero-shade {
        background:
            radial-gradient(circle at 85% 10%, rgba(255, 255, 255, .13), transparent 30%),
            linear-gradient(90deg, rgba(7, 23, 42, .94) 0%, rgba(18, 48, 78, .82) 58%, rgba(25, 59, 97, .52) 100%);
    }

    .vsi-hero-inner {
        width: min(100% - 32px, var(--vsi-container));
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .vsi-hero-content {
        width: min(100%, var(--vsi-content-width, 560px));
    }

    .vsi-hero-badge {
        max-width: 100%;
        white-space: normal;
        line-height: 1.25;
    }

    .vsi-hero-title {
        font-size: clamp(38px, 12vw, 52px);
        letter-spacing: -.04em;
    }

    .vsi-hero-subtitle {
        width: 100%;
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .vsi-hero-actions {
        gap: 12px;
        margin-top: 28px;
    }

    .vsi-btn {
        width: 100%;
        min-height: 50px;
        padding: 0 20px;
    }

    .vsi-hero-bottom {
        bottom: 58px;
    }

    .vsi-hero-helpline {
        left: 0;
        right: 0;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        padding: 0 14px;
        text-align: center;
    }
}
