.hdv2-vds-support-panel {
    padding: 4rem 0 4.5rem;
    background: var(--hdv2-home-bg);
}

.hdv2-vds-support-panel__shell {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem 2rem;
    border-radius: 1.25rem;
    color: #fff;
    background: linear-gradient(145deg, #0a1f38 0%, #123a63 52%, #0f3054 100%);
    box-shadow: 0 24px 48px hsl(221 39% 11% / 0.14);
}

.hdv2-vds-support-panel__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, hsl(210 70% 98% / 0.08) 1px, transparent 0),
        radial-gradient(circle at 1px 1px, hsl(210 70% 98% / 0.08) 1px, transparent 0);
    background-size: 22px 22px, 22px 22px;
    background-position: 0 0, 11px 11px;
}

.hdv2-vds-support-panel__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(55% 80% at 100% 0%, hsl(213 94% 68% / 0.16) 0%, transparent 60%),
        radial-gradient(45% 60% at 0% 100%, hsl(252 83% 55% / 0.12) 0%, transparent 55%);
}

.hdv2-vds-support-panel__head,
.hdv2-vds-support-panel__grid,
.hdv2-vds-support-panel__status {
    position: relative;
    z-index: 1;
}

.hdv2-vds-support-panel__head {
    max-width: 36rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.hdv2-vds-support-panel__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #fff;
}

.hdv2-vds-support-panel__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: hsl(210 40% 96% / 0.78);
}

.hdv2-vds-support-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}

.hdv2-vds-support-panel__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    border: 1px solid hsl(210 70% 98% / 0.14);
    border-radius: 0.875rem;
    text-decoration: none;
    background: hsl(210 45% 100% / 0.07);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.hdv2-vds-support-panel__card:hover {
    transform: translateY(-1px);
    border-color: hsl(210 70% 98% / 0.28);
    background: hsl(210 45% 100% / 0.12);
}

.hdv2-vds-support-panel__icon {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    color: #fff;
    background: hsl(210 45% 100% / 0.12);
}

.hdv2-vds-support-panel__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.hdv2-vds-support-panel__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.hdv2-vds-support-panel__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.hdv2-vds-support-panel__value {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: hsl(210 40% 96% / 0.72);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hdv2-vds-support-panel__arrow {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(210 40% 96% / 0.55);
    transition: color 0.2s ease, transform 0.2s ease;
}

.hdv2-vds-support-panel__arrow svg {
    width: 1rem;
    height: 1rem;
}

.hdv2-vds-support-panel__card:hover .hdv2-vds-support-panel__arrow {
    color: #fff;
    transform: translateX(2px);
}

.hdv2-vds-support-panel__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.75rem 0 0;
    font-size: 0.875rem;
    color: hsl(210 40% 96% / 0.82);
}

.hdv2-vds-support-panel__status-dot {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: hsl(142 71% 45%);
    box-shadow: 0 0 0 4px hsl(142 71% 45% / 0.2);
    animation: hdv2-vds-support-panel-pulse 2s ease-in-out infinite;
}

@keyframes hdv2-vds-support-panel-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

@media (min-width: 768px) {
    .hdv2-vds-support-panel__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .hdv2-vds-support-panel__shell {
        padding: 3rem 2.5rem 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hdv2-vds-support-panel__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hdv2-vds-support-panel {
        padding: 3rem 0 3.5rem;
    }

    .hdv2-vds-support-panel__shell {
        padding: 2rem 1.25rem 1.75rem;
        border-radius: 1rem;
    }

    .hdv2-vds-support-panel__value {
        white-space: normal;
    }
}

.hdv2-web-hosting-page .hdv2-vds-support-panel,
.hdv2-web-hosting-new .hdv2-vds-support-panel {
    position: relative;
    overflow: hidden;
    padding: 1.75rem 0;
    background: linear-gradient(145deg, #0a1f38 0%, #123a63 52%, #0f3054 100%);
}

.hdv2-web-hosting-page .hdv2-vds-support-panel::before,
.hdv2-web-hosting-new .hdv2-vds-support-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, hsl(210 70% 98% / 0.08) 1px, transparent 0),
        radial-gradient(circle at 1px 1px, hsl(210 70% 98% / 0.08) 1px, transparent 0);
    background-size: 22px 22px, 22px 22px;
    background-position: 0 0, 11px 11px;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel::after,
.hdv2-web-hosting-new .hdv2-vds-support-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(55% 80% at 100% 0%, hsl(213 94% 68% / 0.16) 0%, transparent 60%),
        radial-gradient(45% 60% at 0% 100%, hsl(252 83% 55% / 0.12) 0%, transparent 55%);
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__shell,
.hdv2-web-hosting-new .hdv2-vds-support-panel__shell {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__bg,
.hdv2-web-hosting-new .hdv2-vds-support-panel__bg {
    display: none;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__head,
.hdv2-web-hosting-page .hdv2-vds-support-panel__grid,
.hdv2-web-hosting-page .hdv2-vds-support-panel__status,
.hdv2-web-hosting-new .hdv2-vds-support-panel__head,
.hdv2-web-hosting-new .hdv2-vds-support-panel__grid,
.hdv2-web-hosting-new .hdv2-vds-support-panel__status {
    position: relative;
    z-index: 1;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__head,
.hdv2-web-hosting-new .hdv2-vds-support-panel__head {
    margin-bottom: 1rem;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__title,
.hdv2-web-hosting-new .hdv2-vds-support-panel__title {
    margin-bottom: 0.4rem;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__lead,
.hdv2-web-hosting-new .hdv2-vds-support-panel__lead {
    font-size: 0.88rem;
    line-height: 1.5;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__grid,
.hdv2-web-hosting-new .hdv2-vds-support-panel__grid {
    gap: 0.55rem;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__card,
.hdv2-web-hosting-new .hdv2-vds-support-panel__card {
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.7rem;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__icon,
.hdv2-web-hosting-new .hdv2-vds-support-panel__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.55rem;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__icon svg,
.hdv2-web-hosting-new .hdv2-vds-support-panel__icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__name,
.hdv2-web-hosting-new .hdv2-vds-support-panel__name {
    font-size: 0.82rem;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__value,
.hdv2-web-hosting-new .hdv2-vds-support-panel__value {
    font-size: 0.78rem;
}

.hdv2-web-hosting-page .hdv2-vds-support-panel__status,
.hdv2-web-hosting-new .hdv2-vds-support-panel__status {
    margin-top: 1rem;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .hdv2-web-hosting-page .hdv2-vds-support-panel__shell,
    .hdv2-web-hosting-new .hdv2-vds-support-panel__shell {
        padding: 0;
    }

    .hdv2-web-hosting-page .hdv2-vds-support-panel__grid,
    .hdv2-web-hosting-new .hdv2-vds-support-panel__grid {
        gap: 0.65rem;
    }
}

@media (max-width: 640px) {
    .hdv2-web-hosting-page .hdv2-vds-support-panel,
    .hdv2-web-hosting-new .hdv2-vds-support-panel {
        padding: 1.35rem 0;
    }

    .hdv2-web-hosting-page .hdv2-vds-support-panel__shell,
    .hdv2-web-hosting-new .hdv2-vds-support-panel__shell {
        padding: 0;
        border-radius: 0;
    }

    .hdv2-web-hosting-page .hdv2-vds-support-panel__head,
    .hdv2-web-hosting-new .hdv2-vds-support-panel__head {
        margin-bottom: 0.85rem;
    }
}

.hdv2-vds-support {
    padding: 5rem 0;
    background: var(--hdv2-home-bg);
    color: var(--hdv2-home-text);
}

.hdv2-vds-support__inner {
    max-width: 64rem;
}

.hdv2-vds-support__head {
    margin: 0 auto 4rem;
    max-width: 36rem;
    text-align: center;
}

.hdv2-vds-support__label {
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hdv2-home-primary);
}

.hdv2-vds-support__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.8vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--hdv2-home-text-strong);
}

.hdv2-vds-support__lead {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hdv2-home-muted);
}

.hdv2-vds-support__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--hdv2-home-border);
}

.hdv2-vds-support__item {
    display: block;
    padding: 2rem;
    text-decoration: none;
    background: var(--hdv2-home-bg);
    transition: background-color 0.2s ease;
}

.hdv2-vds-support__item:hover {
    background: var(--hdv2-home-surface-muted);
}

.hdv2-vds-support__num {
    display: block;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--hdv2-vds-a11y-decorative);
    font-variant-numeric: tabular-nums;
    transition: color 0.2s ease;
}

.hdv2-vds-support__item:hover .hdv2-vds-support__num {
    color: var(--hdv2-home-primary);
}

.hdv2-vds-support__name {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hdv2-home-text-strong);
}

.hdv2-vds-support__link {
    display: block;
    font-size: 0.875rem;
    color: var(--hdv2-home-primary);
}

.hdv2-vds-support__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 0;
    font-size: 0.875rem;
    color: var(--hdv2-home-muted);
}

.hdv2-vds-support__status-dot {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: hsl(142 71% 45%);
    animation: hdv2-vds-support-legacy-pulse 2s ease-in-out infinite;
}

@keyframes hdv2-vds-support-legacy-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

@media (min-width: 768px) {
    .hdv2-vds-support__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hdv2-vds-support__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hdv2-vds-support {
        padding: 3.5rem 0;
    }

    .hdv2-vds-support__head {
        margin-bottom: 2.5rem;
    }

    .hdv2-vds-support__item {
        padding: 1.5rem 1.25rem;
    }
}
