.support-hero {
    --sh-primary: var(--bs-primary, #40bad8);
    --sh-text: #fff;
    --sh-muted: #b7c5cb;
    --sh-line: rgba(255,255,255,.08);
    --sh-card: rgba(255,255,255,.045);
}

.support-hero__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(23px, 2vw, 61px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 40px;
    background:
        radial-gradient(circle at 86% 16%, rgba(64,186,216,.20), transparent 29%),
        radial-gradient(circle at 76% 86%, rgba(64,186,216,.08), transparent 24%),
        linear-gradient(135deg, #0f2129 0%, #081218 55%, #0d2028 100%);
}

.support-hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.82) 48%, transparent 90%);
}

.support-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
    gap: clamp(30px, 3vw, 56px);
    align-items: center;
}

.support-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 16px;
    border: 1px solid rgba(64,186,216,.34);
    border-radius: 999px;
    background: rgba(64,186,216,.09);
    color: var(--sh-primary);
    font-size: 15px;
    line-height: 1;
}

.support-hero__badge svg { width: 17px; height: 17px; }

.support-hero__title {
    margin: 0;
    color: var(--sh-text);
    font-size: clamp(50px, 3.8vw, 82px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.055em;
}

.support-hero__title span { color: var(--sh-primary); }

.support-hero__lead {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--sh-muted);
    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.55;
}

.support-hero__mini {
    margin-top: 18px;
    color: #dce5e8;
    font-size: 15px;
    line-height: 1.5;
}

.support-hero__mini strong { color: #fff; }

.support-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.support-hero__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
}

.support-hero__actions .btn-primary { color: #07171d; }
.support-hero__actions .btn-outline-light {
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.035);
    color: #fff;
}
.support-hero__actions svg { width: 18px; height: 18px; }

.support-hero__caption {
    margin-top: 14px;
    color: #8da0a8;
    font-size: 14px;
}

.support-hero__visual {
    position: relative;
    padding: 16px 14px 22px;
    isolation: isolate;
}

.support-hero__visual::before {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 35% 35%,
        rgba(64,186,216,.38) 0%,
        rgba(64,186,216,.20) 30%,
        rgba(64,186,216,.10) 52%,
        rgba(64,186,216,.04) 66%,
        transparent 78%
    );
    filter: blur(8px);
    opacity: .95;
    animation: supportOrbFloat 14s ease-in-out infinite;
}

.support-hero__visual::after {
    content: "";
    position: absolute;
    right: 118px;
    top: 72px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(255,255,255,.14) 0%,
        rgba(64,186,216,.08) 35%,
        transparent 72%
    );
    filter: blur(26px);
    opacity: .7;
    animation: supportOrbGlow 18s ease-in-out infinite;
}

.support-hero__visual-inner {
    position: relative;
    z-index: 1;
    animation: supportHeroFloat 12s ease-in-out infinite;
}

@keyframes supportHeroFloat {
    0%,100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(0,-6px,0); }
}

@keyframes supportOrbFloat {
    0%,100% {
        transform: translateY(-50%) translate3d(0,0,0) scale(1);
    }
    50% {
        transform: translateY(-50%) translate3d(-16px,-10px,0) scale(1.05);
    }
}

@keyframes supportOrbGlow {
    0%,100% {
        transform: translate3d(0,0,0) scale(1);
        opacity: .55;
    }
    50% {
        transform: translate3d(10px,8px,0) scale(1.08);
        opacity: .9;
    }
}

.support-hero__card {
    position: relative;
    z-index: 2;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 30px;
    background: rgba(10,25,32,.84);
    box-shadow: 0 26px 70px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
}

.support-hero__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.support-hero__card-title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
}

.support-hero__card-pill {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(113,225,139,.08);
    border: 1px solid rgba(113,225,139,.17);
    color: #a1eab0;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.support-hero__card-text {
    margin-bottom: 16px;
    color: #8fa1a9;
    font-size: 14px;
    line-height: 1.45;
}

.support-hero__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.support-hero__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    min-height: 94px;
    padding: 15px;
    border: 1px solid var(--sh-line);
    border-radius: 18px;
    background: var(--sh-card);
}

.support-hero__item-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: rgba(64,186,216,.11);
    color: var(--sh-primary);
}

.support-hero__item-icon svg { width: 27px; height: 27px; }

.support-hero__item-title {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.02em;
}

.support-hero__item-text {
    margin-top: 5px;
    color: #8fa1a9;
    font-size: 12px;
    line-height: 1.4;
}

.support-hero__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid var(--sh-line);
    border-radius: 18px;
    background: rgba(255,255,255,.03);
}

.support-hero__footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.support-hero__footer-text {
    margin-top: 3px;
    color: #8fa1a9;
    font-size: 12px;
    line-height: 1.4;
}

.support-hero__footer-badge {
    flex: 0 0 auto;
    padding: 8px 11px;
    border-radius: 12px;
    background: rgba(64,186,216,.11);
    color: var(--sh-primary);
    font-size: 12px;
    font-weight: 800;
}

.support-hero__float {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(21,44,53,.72);
    box-shadow: 0 18px 44px rgba(0,0,0,.16);
    color: #dce6ea;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    white-space: nowrap;
}

.support-hero__float svg { width: 17px; height: 17px; color: var(--sh-primary); }

.support-hero__float--top {
    top: 0;
    right: 24px;
    animation: floatA 11s ease-in-out infinite;
}

.support-hero__float--left {
    left: 0;
    bottom: 32px;
    animation: floatB 13s ease-in-out infinite;
}

.support-hero__float--right {
    right: 6px;
    bottom: 0;
    animation: floatC 12s ease-in-out infinite;
}

@keyframes floatA { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-7px,6px,0); } }
@keyframes floatB { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(7px,-7px,0); } }
@keyframes floatC { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-6px,-8px,0); } }

@media (prefers-reduced-motion: reduce) {
    .support-hero__visual-inner,
    .support-hero__float,
    .support-hero__visual::before,
    .support-hero__visual::after {
        animation: none !important;
    }
}

@media (max-width: 1199.98px) {
    .support-hero__layout { grid-template-columns: 1fr; }
    .support-hero__visual { padding: 8px 0 8px; }
}

@media (max-width: 767.98px) {
    .support-hero { margin-top: 12px; }
    .support-hero__panel {
        padding: 26px 18px 24px;
        border-radius: 26px;
    }
    .support-hero__title { font-size: clamp(42px, 10vw, 62px); }
    .support-hero__lead {
        margin-top: 18px;
        font-size: 16px;
    }
    .support-hero__mini {
        margin-top: 14px;
        font-size: 14px;
    }
    .support-hero__actions { margin-top: 20px; }
    .support-hero__actions .btn { width: 100%; }
    .support-hero__visual { padding: 0; }

    .support-hero__visual::before {
        width: 260px;
        height: 260px;
        right: -20px;
        opacity: .7;
    }

    .support-hero__visual::after {
        width: 140px;
        height: 140px;
        right: 40px;
        top: 30px;
        opacity: .45;
    }
    .support-hero__card {
        padding: 18px;
        border-radius: 22px;
    }
    .support-hero__card-head {
        display: block;
        margin-bottom: 12px;
    }
    .support-hero__card-title { font-size: 24px; }
    .support-hero__card-pill {
        display: inline-block;
        margin-top: 10px;
    }
    .support-hero__card-text {
        margin-bottom: 12px;
        font-size: 13px;
    }
       .support-hero__visual,
    .support-hero__visual-inner,
    .support-hero__card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .support-hero__card {
        overflow: hidden;
    }

    .support-hero__grid {
        display: flex;
        width: 100%;
        max-width: 100%;

        gap: 12px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;

        padding: 0 0 5px;
        margin: 0;

        scrollbar-width: none;
    }

    .support-hero__grid::-webkit-scrollbar {
        display: none;
    }

    .support-hero__item {
        flex: 0 0 calc(100% - 38px);
        width: calc(100% - 38px);
        max-width: calc(100% - 38px);
        min-width: 0;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
  .support-hero__grid {
        display: flex;
        gap: 12px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 4px;

        scrollbar-width: none;
    }

    .support-hero__grid::-webkit-scrollbar {
        display: none;
    }

    .support-hero__item {
        flex: 0 0 calc(100% - 42px);
        min-width: 0;
        min-height: 110px;

        scroll-snap-align: start;
    }

    .support-hero__footer {
        display: block;
        padding: 14px;
        border-radius: 16px;
    }
    .support-hero__footer-badge {
        display: inline-block;
        margin-top: 10px;
    }
    .support-hero__float { display: none; }
}