.elementor-widget-vital_hero,
.elementor-widget-vital_hero .elementor-widget-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.vital-hero {
    --vital-brand: #e30613;
    --vital-text: #ffffff;
    --vital-button-text: #ffffff;
    --vital-secondary-button: #ffffff;
    --vital-overlay: .56;
    --vital-desktop-height: 100vh;
    --vital-mobile-height: 92vh;
    --vital-content-width: 720px;
    --vital-inner-width: 1440px;
    --vital-bg: none;
    --vital-mobile-bg: var(--vital-bg);
    --vital-bg-position: center center;
    --vital-mobile-bg-position: center top;

    position: relative;
    isolation: isolate;
    min-height: var(--vital-desktop-height);
    width: 100%;
    overflow: hidden;
    color: var(--vital-text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #111;
}

.vital-hero--fullwidth {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

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

.vital-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image: var(--vital-bg);
    background-position: var(--vital-bg-position);
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.002);
}

.vital-hero--kenburns .vital-hero__bg {
    animation: vitalHeroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes vitalHeroKenBurns {
    from { transform: scale(1.002) translate3d(0,0,0); }
    to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

.vital-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(0,0,0,var(--vital-overlay)) 0%, rgba(0,0,0,calc(var(--vital-overlay) * .78)) 34%, rgba(0,0,0,.20) 66%, rgba(0,0,0,.04) 100%),
        radial-gradient(circle at 16% 45%, color-mix(in srgb, var(--vital-brand) 45%, transparent), transparent 33%);
}

.vital-hero__red-wave { display: none !important; }

.vital-hero__inner {
    min-height: var(--vital-desktop-height);
    width: min(100%, var(--vital-inner-width));
    margin: 0 auto;
    padding: clamp(34px, 5vw, 84px) clamp(20px, 5vw, 84px);
    display: flex;
    align-items: center;
}

.vital-hero--v-top .vital-hero__inner { align-items: flex-start; padding-top: clamp(80px, 10vw, 150px); }
.vital-hero--v-center .vital-hero__inner { align-items: center; }
.vital-hero--v-bottom .vital-hero__inner { align-items: flex-end; }

.vital-hero--left .vital-hero__inner { justify-content: flex-start; }
.vital-hero--center .vital-hero__inner { justify-content: center; text-align: center; }
.vital-hero--right .vital-hero__inner { justify-content: flex-end; text-align: right; }

.vital-hero__content {
    width: min(var(--vital-content-width), 100%);
    transform: translateY(-8px);
}

.vital-hero--center .vital-hero__content { margin-inline: auto; }
.vital-hero--right .vital-hero__content { margin-left: auto; }

.vital-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: clamp(11px, 1.2vw, 14px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vital-hero__title {
    margin: 0;
    color: var(--vital-text);
    font-size: clamp(46px, 7vw, 112px);
    line-height: .92;
    font-weight: 950;
    letter-spacing: -.055em;
    text-transform: uppercase;
    text-shadow: 0 8px 26px rgba(0,0,0,.35);
}

.vital-hero__title::after {
    content: "";
    display: block;
    width: min(220px, 42vw);
    height: 6px;
    margin: 22px 0 0;
    border-radius: 999px;
    background: var(--vital-brand);
    box-shadow: 0 8px 22px color-mix(in srgb, var(--vital-brand) 45%, transparent);
}

.vital-hero--center .vital-hero__title::after { margin-left: auto; margin-right: auto; }
.vital-hero--right .vital-hero__title::after { margin-left: auto; }

.vital-hero__subtitle {
    width: min(650px, 100%);
    margin: 24px 0 0;
    color: rgba(255,255,255,.92);
    font-size: clamp(17px, 1.55vw, 24px);
    line-height: 1.62;
    font-weight: 450;
    text-shadow: 0 4px 18px rgba(0,0,0,.30);
}

.vital-hero--center .vital-hero__subtitle { margin-left: auto; margin-right: auto; }
.vital-hero--right .vital-hero__subtitle { margin-left: auto; }

.vital-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.vital-hero--center .vital-hero__actions { justify-content: center; }
.vital-hero--right .vital-hero__actions { justify-content: flex-end; }

.vital-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    min-width: 170px;
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none !important;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.vital-hero__btn:hover,
.vital-hero__btn:focus { transform: translateY(-2px); }

.vital-hero__btn--primary {
    background: var(--vital-brand);
    color: var(--vital-button-text) !important;
    box-shadow: 0 18px 36px color-mix(in srgb, var(--vital-brand) 38%, transparent);
}

.vital-hero__btn--secondary {
    background: rgba(255,255,255,.12);
    color: var(--vital-secondary-button) !important;
    border: 2px solid rgba(255,255,255,.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vital-hero__btn--secondary:hover,
.vital-hero__btn--secondary:focus { background: rgba(255,255,255,.20); }

.vital-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.vital-hero--center .vital-hero__badges { justify-content: center; }
.vital-hero--right .vital-hero__badges { justify-content: flex-end; }

.vital-hero__badges span,
.vital-hero__badges a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    background: rgba(0,0,0,.20);
    color: rgba(255,255,255,.94);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .035em;
    text-decoration: none !important;
    cursor: default;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vital-hero__badges a {
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.vital-hero__badges a:hover,
.vital-hero__badges a:focus {
    transform: translateY(-1px);
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.46);
    color: #fff;
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {
    .vital-hero__shade {
        background:
            linear-gradient(90deg, rgba(0,0,0,var(--vital-overlay)) 0%, rgba(0,0,0,calc(var(--vital-overlay) * .78)) 34%, rgba(0,0,0,.20) 66%, rgba(0,0,0,.04) 100%),
            radial-gradient(circle at 16% 45%, rgba(227,6,19,.42), transparent 33%);
    }
    .vital-hero__title::after { box-shadow: 0 8px 22px rgba(227,6,19,.35); }
    .vital-hero__btn--primary { box-shadow: 0 18px 36px rgba(227,6,19,.32); }
}

@media (max-width: 1024px) {
    .vital-hero__shade {
        background:
            linear-gradient(90deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.46) 55%, rgba(0,0,0,.12) 100%),
            radial-gradient(circle at 20% 45%, rgba(227,6,19,.32), transparent 34%);
    }
    .vital-hero__inner { padding-inline: clamp(20px, 5vw, 54px); }
}

@media (max-width: 767px) {
    .vital-hero {
        min-height: var(--vital-mobile-height);
    }

    .vital-hero__bg {
        background-image: var(--vital-mobile-bg);
        background-position: var(--vital-mobile-bg-position);
    }

    .vital-hero__shade {
        background:
            linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.16) 22%, rgba(0,0,0,.72) 56%, rgba(0,0,0,.84) 100%),
            radial-gradient(circle at 50% 80%, rgba(227,6,19,.38), transparent 42%);
    }

    .vital-hero__inner {
        min-height: var(--vital-mobile-height);
        align-items: flex-end !important;
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 32px 18px 36px;
    }

    .vital-hero__content {
        width: 100%;
        transform: none;
        margin: 0 !important;
    }

    .vital-hero__eyebrow {
        margin-bottom: 13px;
        max-width: 100%;
        font-size: 10.5px;
        padding: 8px 12px;
        letter-spacing: .055em;
    }

    .vital-hero__title {
        font-size: clamp(38px, 12.8vw, 58px);
        line-height: .95;
        letter-spacing: -.045em;
    }

    .vital-hero__title::after {
        width: 132px;
        height: 5px;
        margin-top: 16px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .vital-hero__subtitle {
        font-size: 16.5px;
        line-height: 1.55;
        margin-top: 18px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .vital-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
        justify-content: stretch !important;
    }

    .vital-hero__btn {
        width: 100%;
        min-height: 52px;
        border-radius: 12px;
    }

    .vital-hero__badges {
        justify-content: flex-start !important;
        gap: 8px;
        margin-top: 18px;
    }

    .vital-hero__badges span,
    .vital-hero__badges a {
        font-size: 10.5px;
        min-height: 32px;
        padding: 7px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vital-hero--kenburns .vital-hero__bg { animation: none; }
    .vital-hero__btn { transition: none; }
}
