.reh-hero {
    position: relative;
    width: 100%;
    --reh-hero-height: calc(100vh - var(--reh-header-offset, 0px));
    --reh-hero-min-height: var(--reh-min-height, 480px);
    --reh-video-position: absolute;
    --reh-video-height: 100%;
    --reh-video-fit: cover;
    height: var(--reh-hero-height, calc(100vh - var(--reh-header-offset, 0px)));
    min-height: var(--reh-hero-min-height, var(--reh-min-height, 480px));
    overflow: hidden;
    background: #0a1633;
    --reh-icons-direction: row;
    --reh-icons-left: 0;
    --reh-icons-right: 0;
    --reh-icons-top: auto;
    --reh-icons-bottom: 40px;
    --reh-icons-translate: none;
    --reh-icons-justify: center;
    --reh-icons-align: center;
    --reh-icons-wrap: wrap;
    --reh-icons-margin-top: 0;
    --reh-overlay-angle: 180deg;
    --reh-overlay-start: rgba(255, 255, 255, 0);
    --reh-overlay-end: var(--reh-overlay-color, rgba(0, 0, 0, 0.85));
}

.reh-hero__video {
    position: var(--reh-video-position, absolute);
    inset: 0;
    width: 100%;
    height: var(--reh-video-height, 100%);
    object-fit: var(--reh-video-fit, cover);
    z-index: 0;
    display: block;
}

.reh-hero__tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        var(--reh-overlay-angle, 180deg),
        var(--reh-overlay-start, rgba(255, 255, 255, 0)) 0%,
        var(--reh-overlay-end, rgba(0, 0, 0, 0.85)) var(--reh-overlay-stop, 70%)
    );
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reh-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    color: #ffffff;
    padding: 48px 24px;
    box-sizing: border-box;
}

.reh-hero__title {
    margin: 0 0 24px;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reh-hero__icons {
    display: flex;
    flex-wrap: var(--reh-icons-wrap, wrap);
    align-items: var(--reh-icons-align, center);
    justify-content: var(--reh-icons-justify, center);
    flex-direction: var(--reh-icons-direction, row);
    gap: 16px;
    position: absolute;
    left: var(--reh-icons-left, 0);
    right: var(--reh-icons-right, 0);
    top: var(--reh-icons-top, auto);
    bottom: var(--reh-icons-bottom, 40px);
    transform: var(--reh-icons-translate, none);
    margin-top: var(--reh-icons-margin-top, 0);
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reh-icons-animate .reh-hero__icon-item {
    opacity: 0;
    transform: translateY(24px);
}

.reh-hero__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reh-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: rgba(140, 210, 255, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.reh-hero__icon i,
.reh-hero__icon svg {
    color: #9fd7ff;
    fill: #9fd7ff;
}

.reh-hero__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.reh-hero__icon:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(9, 30, 66, 0.25);
}

.reh-hero__icon.is-hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(9, 30, 66, 0.32);
}

.reh-hero__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reh-hero__icon:hover::after,
.reh-hero__icon.is-hover::after {
    opacity: 1;
}

.reh-hero__label {
    display: none;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.reh-label-below .reh-hero__label {
    display: inline-block;
}

.reh-label-below-mobile .reh-hero__label {
    display: none;
}

.reh-hero__tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    pointer-events: none;
    background: rgba(10, 22, 51, 0.85);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: 10px;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.reh-label-tooltip .reh-hero__icon:hover .reh-hero__tooltip,
.reh-label-tooltip .reh-hero__icon:focus .reh-hero__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 767px) {
    .reh-hero__icon {
        width: 60px;
        height: 60px;
    }

    .reh-hero__icons {
        gap: 12px;
    }

    .reh-label-below-mobile .reh-hero__label {
        display: inline-block;
    }
}

@media (hover: hover) and (pointer: fine) {
    .reh-icons-reveal .reh-hero__icons {
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
    }

    .reh-icons-reveal:hover .reh-hero__icons,
    .reh-icons-reveal:focus-within .reh-hero__icons {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .reh-icons-reveal .reh-hero__tint {
        opacity: 0;
    }

    .reh-icons-reveal:hover .reh-hero__tint,
    .reh-icons-reveal:focus-within .reh-hero__tint {
        opacity: 1;
    }
}
