:root {
    --cloud-primary: #1769ff;
    --cloud-primary-dark: #0b53d7;
    --cloud-accent: #ff6b3d;
    --cloud-title: #17233d;
    --cloud-text: #3c4962;
    --cloud-muted: #8b96aa;
    --cloud-border: #e4e9f2;
    --cloud-soft: #f5f7fc;
    --cloud-dark: #202b3b;
    --cloud-container: 1220px;
    --cloud-radius: 2px;
}

html {
    scroll-behavior: smooth;
}

body.cloud-theme {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--cloud-text);
    background: #fff;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
}

.cloud-theme *,
.cloud-theme *::before,
.cloud-theme *::after {
    box-sizing: border-box;
}

.cloud-theme a {
    color: inherit;
    text-decoration: none;
}

.cloud-theme button,
.cloud-theme input {
    font: inherit;
    letter-spacing: 0;
}

.cloud-container {
    width: min(calc(100% - 48px), var(--cloud-container));
    margin: 0 auto;
}

.cloud-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 64px;
    border-bottom: 1px solid #edf0f5;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 1px 8px rgba(20, 42, 77, .04);
}

.cloud-nav-shell {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 64px;
    padding: 0 24px 0 32px;
}

.cloud-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-width: 190px;
    margin-right: 18px;
    color: #10192b;
}

.cloud-brand-logo {
    display: block;
    width: auto;
    max-width: 176px;
    height: 38px;
    object-fit: contain;
}

.cloud-brand-name {
    overflow: hidden;
    max-width: 145px;
    color: #0c172d;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cloud-brand-name-only {
    max-width: 176px;
}

.cloud-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
    min-width: 0;
}

.cloud-nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.cloud-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 19px;
    color: #252d3d;
    font-size: 14px;
    white-space: nowrap;
    transition: color .18s ease;
}

.cloud-nav-link > i {
    margin-left: 7px;
    color: #9aa3b3;
    font-size: 11px;
    transition: transform .18s ease;
}

.cloud-nav-link::after {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 2px;
    content: "";
    transform: scaleX(0);
    background: var(--cloud-primary);
    transition: transform .18s ease;
}

.cloud-nav-link:hover,
.cloud-nav-link.is-active,
.cloud-nav-item:hover > .cloud-nav-link {
    color: var(--cloud-primary);
}

.cloud-nav-link:hover::after,
.cloud-nav-link.is-active::after,
.cloud-nav-item:hover > .cloud-nav-link::after {
    transform: scaleX(1);
}

.cloud-nav-item:hover > .cloud-nav-link i {
    transform: rotate(180deg);
}

.cloud-nav-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin-left: auto;
}

.cloud-notice-link,
.cloud-login-link {
    display: inline-flex;
    align-items: center;
    height: 64px;
    padding: 0 15px;
    color: #30394c;
    font-size: 14px;
}

.cloud-notice-link i {
    margin-right: 7px;
    color: var(--cloud-primary);
}

.cloud-notice-link:hover,
.cloud-login-link:hover {
    color: var(--cloud-primary);
}

.cloud-register-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 116px;
    margin-left: 5px;
    color: #fff;
    background: var(--cloud-primary);
    font-weight: 600;
    transition: background .18s ease;
}

.cloud-register-link:hover {
    color: #fff;
    background: var(--cloud-primary-dark);
}

.cloud-mobile-toggle {
    display: none;
}

.cloud-mega-menu,
.cloud-mini-menu {
    position: fixed;
    z-index: 50;
    top: 64px;
    visibility: hidden;
    overflow: hidden;
    border: 1px solid var(--cloud-border);
    background: #fff;
    box-shadow: 0 18px 40px rgba(32, 55, 92, .14);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.cloud-mega-menu {
    left: 50%;
    display: grid;
    width: min(calc(100vw - 80px), 1040px);
    transform: translate(-50%, 8px);
}

.cloud-nav-item:hover .cloud-mega-menu,
.cloud-nav-item:hover .cloud-mini-menu,
.cloud-nav-item.is-open .cloud-mega-menu,
.cloud-nav-item.is-open .cloud-mini-menu {
    visibility: visible;
    opacity: 1;
}

.cloud-nav-item:hover .cloud-mega-menu,
.cloud-nav-item.is-open .cloud-mega-menu {
    transform: translate(-50%, 0);
}

.cloud-nav-item:hover .cloud-mini-menu,
.cloud-nav-item.is-open .cloud-mini-menu {
    transform: translateY(0);
}

.cloud-products-menu {
    grid-template-columns: 240px minmax(0, 1fr);
    width: min(calc(100vw - 48px), 1220px);
    min-height: 360px;
    max-height: min(520px, calc(100vh - 88px));
}

.cloud-products-sidebar {
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    min-height: 360px;
    padding: 16px 12px 12px;
    background: #f1f3f6;
}

.cloud-products-category,
.cloud-products-all {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: 0 12px;
    border: 0;
    color: #253047;
    background: transparent;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    transition: color .16s ease, background .16s ease;
}

.cloud-products-category::after {
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 12px;
    height: 2px;
    content: "";
    background: transparent;
    transition: background .16s ease;
}

.cloud-products-category > i,
.cloud-products-all > i {
    color: #a8b1bf;
    font-size: 11px;
}

.cloud-products-category:hover,
.cloud-products-category:focus-visible,
.cloud-products-category.is-active {
    color: var(--cloud-primary);
    background: rgba(255, 255, 255, .68);
    outline: 0;
}

.cloud-products-category.is-active::after {
    background: var(--cloud-primary);
}

.cloud-products-category.is-active > i {
    color: var(--cloud-primary);
}

.cloud-products-all {
    min-height: 46px;
    margin-top: auto;
    color: #69758a;
    font-size: 13px;
}

.cloud-products-all:hover {
    color: var(--cloud-primary);
}

.cloud-products-content {
    overflow-y: auto;
    min-width: 0;
    padding: 28px 26px;
    background: #fff;
}

.cloud-products-panel {
    display: none;
}

.cloud-products-panel.is-active {
    display: block;
}

.cloud-products-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 20px;
}

.cloud-menu-product-card {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 80px;
    padding: 0 14px;
    border: 1px solid #e1e7f0;
    color: #1d2739;
    background: #fff;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.cloud-menu-product-card:hover {
    border-color: #a9c7ff;
    color: var(--cloud-primary);
    background: #f8fbff;
    transform: translateY(-1px);
}

.cloud-menu-product-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    max-width: 24px;
    height: 16px;
    max-height: 16px;
    margin-right: 8px;
    overflow: hidden;
    background: transparent;
}

.cloud-menu-product-card .cloud-menu-product-flag {
    display: block;
    width: 24px !important;
    min-width: 24px;
    max-width: 24px !important;
    height: 16px !important;
    max-height: 16px !important;
    object-fit: contain;
}

.cloud-menu-product-card strong {
    overflow: hidden;
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cloud-menu-product-arrow {
    flex: 0 0 auto;
    margin-left: auto;
    color: #c0c8d5;
    font-size: 11px;
}

.cloud-menu-product-card em {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 3px 8px;
    color: #d95545;
    background: #fff0ed;
    font-size: 11px;
    font-style: normal;
}

.cloud-menu-product-card.is-disabled {
    color: #8d97a7;
    cursor: not-allowed;
}

.cloud-menu-product-card.is-disabled .cloud-menu-product-icon {
    filter: grayscale(1);
    opacity: .66;
}

.cloud-menu-category-entry {
    grid-column: 1 / -1;
}

.cloud-products-menu-empty {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    color: #7d889a;
}

.cloud-products-menu-empty > a {
    margin-left: 18px;
    color: var(--cloud-primary);
}

.cloud-products-menu-empty > a i {
    margin-left: 5px;
    font-size: 11px;
}

.cloud-products-menu-empty > .cloud-menu-product-icon {
    width: 22px;
    height: 18px;
    color: #fff;
    background: var(--cloud-primary);
    font-size: 9px;
}

.cloud-solution-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 18px;
    background: #edf0f5;
}

.cloud-solution-menu > a {
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 18px 20px;
    background: #fff;
    transition: background .18s ease;
}

.cloud-solution-menu > a:hover {
    background: #f4f8ff;
}

.cloud-solution-menu > a > i {
    width: 36px;
    color: var(--cloud-primary);
    font-size: 21px;
}

.cloud-solution-menu span {
    display: grid;
    gap: 3px;
}

.cloud-solution-menu strong {
    color: var(--cloud-title);
    font-size: 14px;
}

.cloud-solution-menu small {
    color: var(--cloud-muted);
    font-size: 12px;
}

.cloud-mini-menu {
    position: absolute;
    top: 64px;
    right: auto;
    left: 0;
    display: grid;
    width: 180px;
    padding: 8px 0;
}

.cloud-mini-menu a {
    padding: 11px 20px;
    color: #526077;
}

.cloud-mini-menu a:hover {
    color: var(--cloud-primary);
    background: #f5f8ff;
}

/* Reference-style navigation panels for service and ecosystem content. */
.cloud-reference-menu {
    left: 0;
    display: grid;
    grid-template-columns: minmax(280px, 24%) minmax(0, 1fr);
    width: 100vw;
    max-width: 100vw;
    min-height: 340px;
    padding: 0;
    transform: translateY(8px);
}

.cloud-nav-item:hover .cloud-reference-menu,
.cloud-nav-item.is-open .cloud-reference-menu {
    transform: translateY(0);
}

.cloud-reference-intro {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 340px;
    padding: 28px clamp(24px, 4vw, 60px);
    border-right: 1px solid #e4e9f2;
    background: #f1f4f9;
}

.cloud-reference-intro::after {
    position: absolute;
    right: -12%;
    bottom: -10%;
    width: 90%;
    height: 58%;
    content: "";
    background: url("../images/world-map.png") right bottom / contain no-repeat;
    filter: invert(1);
    opacity: .07;
    pointer-events: none;
}

.cloud-reference-intro > * {
    position: relative;
    z-index: 1;
}

.cloud-reference-intro h3 {
    position: relative;
    width: fit-content;
    margin: 0 0 25px;
    padding-bottom: 10px;
    color: var(--cloud-title);
    font-size: 18px;
}

.cloud-reference-intro h3::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cloud-primary);
}

.cloud-reference-intro p {
    max-width: 340px;
    margin: 0;
    color: #677389;
    font-size: 13px;
    line-height: 2;
}

.cloud-reference-intro span {
    margin-top: auto;
    color: var(--cloud-primary);
    font-size: 13px;
    font-weight: 600;
}

.cloud-reference-groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    align-content: start;
    gap: 20px;
    padding: 30px clamp(24px, 4vw, 62px);
}

.cloud-reference-group {
    display: grid;
    align-content: start;
    min-width: 0;
}

.cloud-reference-group h4 {
    display: flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 8px;
    padding-bottom: 9px;
    color: #27334a;
    border-bottom: 1px solid #e4e9f2;
    font-size: 14px;
}

.cloud-reference-group h4 i {
    width: 24px;
    color: var(--cloud-primary);
    font-size: 16px;
}

.cloud-reference-group a {
    padding: 7px 0;
    color: #5b677b;
    font-size: 13px;
    line-height: 1.5;
    transition: color .18s ease, padding-left .18s ease;
}

.cloud-reference-group a:hover {
    padding-left: 4px;
    color: var(--cloud-primary);
}

.cloud-advantage-card[id],
.cloud-solution-card[id] {
    scroll-margin-top: 88px;
}

.cloud-main {
    min-height: 50vh;
}

.cloud-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background-color: #f5f8fa;
    background-image: url("../images/hero-cloud.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cloud-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
}

.cloud-hero-copy {
    width: min(550px, 48%);
    padding-bottom: 38px;
}

.cloud-hero-copy h1 {
    margin: 0 0 13px;
    color: #1e2546;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.34;
}

.cloud-hero-copy p {
    max-width: 540px;
    margin: 0 0 34px;
    color: #4d5870;
    font-size: 17px;
    line-height: 1.9;
}

.cloud-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 158px;
    height: 42px;
    color: #fff !important;
    border: 1px solid var(--cloud-primary);
    border-radius: var(--cloud-radius);
    background: var(--cloud-primary);
    font-size: 14px;
    font-weight: 600;
    transition: transform .18s ease, background .18s ease;
}

.cloud-primary-button:hover {
    transform: translateY(-1px);
    background: var(--cloud-primary-dark);
}

.cloud-hero-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.cloud-hero-dots span {
    width: 26px;
    height: 2px;
    background: #bec7d3;
}

.cloud-hero-dots span.is-active {
    width: 60px;
    background: var(--cloud-title);
}

.cloud-quick-section {
    position: relative;
    z-index: 5;
    height: 0;
}

.cloud-quick-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 100px;
    transform: translateY(-50%);
    border: 1px solid var(--cloud-border);
    background: #fff;
    box-shadow: 0 10px 25px rgba(28, 52, 86, .08);
}

.cloud-quick-item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 20px 24px;
    border-right: 1px solid var(--cloud-border);
    transition: background .18s ease;
}

.cloud-quick-item:last-child {
    border-right: 0;
}

.cloud-quick-item:hover {
    background: #f8fbff;
}

.cloud-quick-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 15px;
    color: var(--cloud-primary);
    border-radius: 50%;
    background: #eef5ff;
    font-size: 18px;
}

.cloud-quick-item > span:last-child {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.cloud-quick-item strong {
    color: var(--cloud-title);
    font-size: 15px;
}

.cloud-quick-item small {
    overflow: hidden;
    color: var(--cloud-muted);
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cloud-products-section,
.cloud-advantages-section,
.cloud-infrastructure-section,
.cloud-news-section {
    padding: 106px 0 88px;
}

.cloud-products-section {
    background: var(--cloud-soft);
}

.cloud-advantages-section {
    padding-top: 88px;
    background: #fff;
}

.cloud-section-heading {
    margin-bottom: 48px;
    text-align: center;
}

.cloud-section-heading h2 {
    margin: 0 0 11px;
    color: var(--cloud-title);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
}

.cloud-section-heading p {
    margin: 0;
    color: #7b879b;
    font-size: 15px;
}

.cloud-product-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid #dfe5ee;
    scrollbar-width: thin;
}

.cloud-product-tab {
    position: relative;
    flex: 1 0 180px;
    min-width: 0;
    height: 58px;
    padding: 0 18px;
    color: #333d50;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
}

.cloud-product-tab::after {
    position: absolute;
    right: 20px;
    bottom: -1px;
    left: 20px;
    height: 2px;
    content: "";
    transform: scaleX(0);
    background: var(--cloud-primary);
    transition: transform .18s ease;
}

.cloud-product-tab:hover,
.cloud-product-tab.is-active {
    color: var(--cloud-primary);
}

.cloud-product-tab.is-active::after {
    transform: scaleX(1);
}

.cloud-product-panels {
    min-height: 176px;
    padding-top: 30px;
}

.cloud-product-panel {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.cloud-product-panel.is-active {
    display: grid;
}

.cloud-product-entry {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 72px;
    padding: 0 16px;
    border: 1px solid #e6eaf0;
    border-radius: var(--cloud-radius);
    background: #fff;
    box-shadow: 0 6px 15px rgba(34, 55, 86, .08);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cloud-product-entry:hover {
    border-color: #b9cdf2;
    box-shadow: 0 9px 22px rgba(33, 73, 139, .12);
    transform: translateY(-2px);
}

.cloud-product-entry.is-disabled {
    cursor: not-allowed;
    opacity: .58;
}

.cloud-product-entry-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 20px;
    margin-right: 7px;
    overflow: hidden;
    background: transparent;
}

.cloud-product-entry-flag {
    display: block;
    width: 24px;
    min-width: 24px;
    max-width: 24px;
    height: 16px;
    max-height: 16px;
    object-fit: contain;
}

.cloud-product-entry strong {
    overflow: hidden;
    min-width: 0;
    color: #1f293d;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cloud-product-entry em {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 4px 9px;
    color: #ff6a58;
    border-radius: var(--cloud-radius);
    background: #fff1ed;
    font-size: 11px;
    font-style: normal;
}

.cloud-products-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 176px;
    color: #8e98a8;
    border: 1px solid #e5eaf1;
    background: #fff;
}

.cloud-section-action {
    margin-top: 30px;
    text-align: center;
}

.cloud-section-action a {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 24px;
    color: var(--cloud-primary);
    border: 1px solid #b9cdf3;
    background: #fff;
    font-size: 13px;
}

.cloud-section-action a i {
    margin-left: 8px;
    font-size: 10px;
}

.cloud-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.cloud-advantage-card {
    display: flex;
    align-items: center;
    min-height: 170px;
    padding: 28px 36px;
    border: 1px solid var(--cloud-border);
    background: #fff;
    box-shadow: 0 6px 18px rgba(25, 49, 85, .08);
}

.cloud-advantage-card > div {
    min-width: 0;
}

.cloud-advantage-card h3 {
    margin: 0 0 8px;
    color: var(--cloud-title);
    font-size: 18px;
}

.cloud-advantage-card p {
    margin: 0;
    color: #4f5b70;
    font-size: 13px;
    line-height: 1.75;
}

.cloud-advantage-card > img {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    margin-right: 28px;
    object-fit: contain;
}

.cloud-solutions-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 94px;
    background-color: #111a2d;
    background-image: linear-gradient(rgba(15, 25, 45, .84), rgba(15, 25, 45, .94)), url("../images/solutions-bg.png");
    background-position: center;
    background-size: cover;
}

.cloud-section-heading-light h2 {
    color: #fff;
}

.cloud-section-heading-light p {
    color: rgba(255, 255, 255, .66);
}

.cloud-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cloud-solution-card {
    position: relative;
    min-height: 232px;
    overflow: hidden;
    border-radius: var(--cloud-radius);
    background: #f8fbff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cloud-solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
}

.cloud-solution-card > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 67%;
    padding: 27px 0 0 28px;
    gap: 10px;
}

.cloud-solution-card strong {
    color: #1d283e;
    font-size: 20px;
}

.cloud-solution-card small {
    color: #4f5c70;
    font-size: 13px;
    line-height: 1.75;
}

.cloud-solution-card em {
    margin-top: 17px;
    color: #576378;
    font-size: 12px;
    font-style: normal;
}

.cloud-solution-card em i {
    margin-left: 6px;
    color: var(--cloud-primary);
    font-size: 9px;
}

.cloud-solution-card img {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cloud-infrastructure-section {
    padding-top: 86px;
    background: #fff;
}

.cloud-infrastructure-layout {
    display: grid;
    grid-template-columns: 365px 1fr;
    align-items: center;
    min-height: 460px;
}

.cloud-infrastructure-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
    padding: 34px;
    border: 1px solid var(--cloud-border);
    background: #fff;
    box-shadow: 0 10px 32px rgba(29, 54, 91, .08);
}

.cloud-infrastructure-stats div {
    display: grid;
    gap: 5px;
}

.cloud-infrastructure-stats strong {
    color: #1f2a40;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}

.cloud-infrastructure-stats sup {
    color: var(--cloud-primary);
    font-size: 16px;
}

.cloud-infrastructure-stats span {
    color: #646f82;
    font-size: 13px;
}

.cloud-infrastructure-stats > a {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    color: var(--cloud-primary);
    font-size: 13px;
}

.cloud-infrastructure-stats > a i {
    margin-left: 8px;
    font-size: 9px;
}

.cloud-map-wrap {
    position: relative;
    min-height: 420px;
}

.cloud-map-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 92%;
    max-width: 810px;
    transform: translate(-50%, -50%);
    filter: brightness(0) saturate(100%) invert(88%) sepia(11%) saturate(486%) hue-rotate(180deg) brightness(98%) contrast(95%);
    opacity: .95;
}

.cloud-map-point {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--cloud-accent);
    box-shadow: 0 0 0 5px rgba(255, 107, 61, .14);
}

.cloud-map-point::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    content: "";
    transform: translate(-50%, -50%);
    animation: cloud-map-pulse 2s ease-out infinite;
    border: 1px solid rgba(255, 107, 61, .35);
    border-radius: 50%;
}

.cloud-map-point-a { top: 43%; left: 72%; }
.cloud-map-point-b { top: 40%; left: 37%; }
.cloud-map-point-c { top: 58%; left: 57%; }
.cloud-map-point-d { top: 66%; left: 81%; }

@keyframes cloud-map-pulse {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); }
}

.cloud-news-section {
    padding-top: 84px;
    background: var(--cloud-soft);
}

.cloud-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cloud-news-panel {
    min-width: 0;
    border: 1px solid #e7ebf2;
    background: #fff;
}

.cloud-news-panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 22px;
    border-bottom: 1px solid #edf0f4;
}

.cloud-news-panel > header span {
    color: var(--cloud-title);
    font-size: 17px;
    font-weight: 600;
}

.cloud-news-panel > header span i {
    width: 24px;
    color: var(--cloud-primary);
}

.cloud-news-panel > header > a {
    color: #7e899b;
    font-size: 12px;
}

.cloud-news-list {
    display: grid;
    min-height: 180px;
    padding: 10px 22px 16px;
}

.cloud-news-list > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    min-height: 39px;
    border-bottom: 1px dashed #edf0f4;
    color: #59657a;
    font-size: 13px;
}

.cloud-news-list > a:last-child {
    border-bottom: 0;
}

.cloud-news-list > a span {
    overflow: hidden;
    min-width: 0;
    padding-right: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cloud-news-list > a time {
    flex: 0 0 auto;
    color: #a2aaba;
    font-size: 11px;
}

.cloud-news-list > a:hover span {
    color: var(--cloud-primary);
}

.cloud-register-banner {
    display: block;
    overflow: hidden;
    background: #ff5039;
}

.cloud-register-banner img {
    display: block;
    width: 100%;
    min-width: 1280px;
    height: 75px;
    margin-left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
}

.cloud-service-strip {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #293444;
}

.cloud-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cloud-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 70px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.cloud-service-item:last-child {
    border-right: 0;
}

.cloud-service-item img {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    object-fit: contain;
}

.cloud-service-item div {
    display: grid;
    gap: 2px;
}

.cloud-service-item strong {
    color: #fff;
    font-size: 15px;
}

.cloud-service-item span {
    color: #aab3c0;
    font-size: 12px;
}

.cloud-footer {
    color: #aeb7c4;
    background: #293444;
}

.cloud-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) 1.35fr;
    gap: 38px;
    padding-top: 44px;
    padding-bottom: 42px;
}

.cloud-footer h4 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.cloud-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cloud-footer-column a {
    margin-bottom: 10px;
    color: #aeb7c4;
    font-size: 12px;
}

.cloud-footer-column a:hover {
    color: #fff;
}

.cloud-footer-contact p {
    margin: 0 0 18px;
    color: #aeb7c4;
    font-size: 12px;
    line-height: 1.8;
}

.cloud-footer-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    color: #fff !important;
    border: 1px solid #667181;
    font-size: 12px;
}

.cloud-footer-ticket i {
    margin-right: 7px;
}

.cloud-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #8d98a7;
    font-size: 12px;
}

.cloud-footer-bottom a {
    color: #9aa6b6;
}

.cloud-footer-bottom em {
    margin-left: 16px;
    font-style: normal;
}

.cloud-float-tools {
    position: fixed;
    z-index: 900;
    right: 16px;
    bottom: 88px;
    display: grid;
    width: 52px;
    border: 1px solid #e1e6ee;
    background: #fff;
    box-shadow: 0 7px 20px rgba(24, 46, 79, .1);
}

.cloud-float-tools a,
.cloud-float-tools button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 58px;
    padding: 0;
    color: #5e6879;
    border: 0;
    border-bottom: 1px solid #e7ebf1;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    font-size: 11px;
}

.cloud-float-tools > :last-child {
    border-bottom: 0;
}

.cloud-float-tools i {
    margin-bottom: 4px;
    font-size: 17px;
}

.cloud-float-tools a:hover,
.cloud-float-tools button:hover {
    color: #fff;
    background: var(--cloud-primary);
}

@media (max-width: 1320px) {
    .cloud-brand {
        min-width: 160px;
    }

    .cloud-nav-link {
        padding: 0 13px;
    }

    .cloud-notice-link {
        display: none;
    }
}

@media (max-width: 1080px) {
    .cloud-header,
    .cloud-nav-shell {
        height: 60px;
    }

    .cloud-nav-shell {
        align-items: center;
        padding: 0 20px;
    }

    .cloud-brand {
        min-width: 0;
        margin-right: auto;
    }

    .cloud-brand-logo {
        max-width: 150px;
        height: 34px;
    }

    .cloud-mobile-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-left: 12px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        gap: 5px;
    }

    .cloud-mobile-toggle span {
        width: 21px;
        height: 2px;
        background: #263249;
        transition: transform .18s ease, opacity .18s ease;
    }

    .cloud-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .cloud-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
    .cloud-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .cloud-nav {
        position: fixed;
        z-index: 100;
        top: 60px;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        overflow-y: auto;
        padding: 10px 22px 30px;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .18s ease, transform .18s ease;
    }

    .cloud-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .cloud-nav-item {
        display: block;
    }

    .cloud-nav-link {
        justify-content: space-between;
        width: 100%;
        height: 50px;
        padding: 0 4px;
        border-bottom: 1px solid #edf0f4;
        font-size: 15px;
    }

    .cloud-nav-link::after {
        display: none;
    }

    .cloud-mega-menu,
    .cloud-mini-menu {
        position: static;
        display: none;
        visibility: visible;
        width: 100%;
        min-height: 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none !important;
    }

    .cloud-nav-item.is-open .cloud-mega-menu,
    .cloud-nav-item.is-open .cloud-mini-menu {
        display: grid;
    }

    .cloud-products-menu {
        grid-template-columns: 1fr;
    }

    .cloud-products-sidebar {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        flex-direction: row;
        min-height: 0;
        padding: 8px 12px;
        scrollbar-width: thin;
    }

    .cloud-products-category,
    .cloud-products-all {
        width: auto;
        min-height: 42px;
        padding: 0 14px;
        white-space: nowrap;
    }

    .cloud-products-category > i,
    .cloud-products-all > i {
        display: none;
    }

    .cloud-products-all {
        margin-top: 0;
    }

    .cloud-products-content {
        overflow: visible;
        padding: 14px 12px 18px;
    }

    .cloud-products-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cloud-menu-product-card {
        min-height: 64px;
    }

    .cloud-solution-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding: 12px;
    }

    .cloud-solution-menu > a {
        min-height: 70px;
        padding: 12px;
    }

    .cloud-mini-menu {
        padding: 8px 14px;
    }

    .cloud-nav-actions {
        order: 2;
    }

    .cloud-login-link {
        height: 40px;
        padding: 0 12px;
    }

    .cloud-register-link {
        align-self: auto;
        min-width: 92px;
        height: 38px;
        margin-left: 0;
    }

    .cloud-mobile-toggle {
        order: 3;
    }

    body.cloud-nav-locked {
        overflow: hidden;
    }

    .cloud-product-panel,
    .cloud-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cloud-quick-grid {
        width: calc(100% - 48px);
    }
}

@media (max-width: 760px) {
    .cloud-container {
        width: min(calc(100% - 32px), var(--cloud-container));
    }

    .cloud-nav-shell {
        padding: 0 14px;
    }

    .cloud-brand-logo {
        max-width: 132px;
        height: 31px;
    }

    .cloud-brand-name {
        max-width: 112px;
        font-size: 19px;
    }

    .cloud-login-link {
        display: none;
    }

    .cloud-register-link {
        min-width: 82px;
        height: 34px;
        font-size: 12px;
    }

    .cloud-mobile-toggle {
        width: 34px;
        margin-left: 5px;
    }

    .cloud-hero,
    .cloud-hero-inner {
        min-height: 530px;
    }

    .cloud-hero {
        background-position: 59% center;
        background-size: auto 100%;
    }

    .cloud-hero-inner {
        align-items: flex-start;
        padding-top: 74px;
    }

    .cloud-hero-copy {
        width: 88%;
        padding: 0;
    }

    .cloud-hero-copy h1 {
        width: 270px;
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.35;
    }

    .cloud-hero-copy p {
        width: 275px;
        margin-bottom: 25px;
        color: #48556b;
        font-size: 14px;
        line-height: 1.8;
    }

    .cloud-primary-button {
        width: 118px;
        height: 38px;
        font-size: 13px;
    }

    .cloud-hero-dots {
        bottom: 30px;
    }

    .cloud-quick-section {
        height: auto;
        padding: 0;
        background: #fff;
    }

    .cloud-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        min-height: 0;
        transform: none;
        border-right: 0;
        border-left: 0;
        box-shadow: none;
    }

    .cloud-quick-item {
        min-height: 92px;
        padding: 15px 16px;
        border-bottom: 1px solid var(--cloud-border);
    }

    .cloud-quick-item:nth-child(2) {
        border-right: 0;
    }

    .cloud-quick-icon {
        width: 37px;
        height: 37px;
        margin-right: 10px;
        font-size: 15px;
    }

    .cloud-quick-item strong {
        font-size: 13px;
    }

    .cloud-quick-item small {
        white-space: normal;
        font-size: 10px;
        line-height: 1.45;
    }

    .cloud-products-section,
    .cloud-advantages-section,
    .cloud-infrastructure-section,
    .cloud-news-section {
        padding: 64px 0;
    }

    .cloud-section-heading {
        margin-bottom: 31px;
    }

    .cloud-section-heading h2 {
        font-size: 24px;
    }

    .cloud-section-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .cloud-advantages-grid,
    .cloud-solutions-grid,
    .cloud-news-grid {
        grid-template-columns: 1fr;
    }

    .cloud-product-tab {
        flex-basis: 145px;
        height: 52px;
        padding: 0 12px;
        font-size: 13px;
    }

    .cloud-product-panels {
        min-height: 0;
        padding-top: 20px;
    }

    .cloud-product-panel {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cloud-product-entry {
        min-height: 64px;
    }

    .cloud-advantages-grid {
        gap: 12px;
    }

    .cloud-advantage-card {
        min-height: 150px;
        padding: 22px 18px;
    }

    .cloud-advantage-card > img {
        width: 66px;
        height: 66px;
        margin-right: 18px;
    }

    .cloud-solutions-section {
        padding: 65px 0;
    }

    .cloud-solutions-grid {
        gap: 12px;
    }

    .cloud-solution-card {
        min-height: 210px;
    }

    .cloud-solution-card > span {
        width: 68%;
        padding: 23px 0 0 21px;
    }

    .cloud-infrastructure-layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .cloud-infrastructure-stats {
        order: 2;
        padding: 26px 22px;
    }

    .cloud-infrastructure-stats strong {
        font-size: 29px;
    }

    .cloud-map-wrap {
        order: 1;
        min-height: 245px;
    }

    .cloud-map-wrap img {
        width: 100%;
    }

    .cloud-news-grid {
        gap: 13px;
    }

    .cloud-news-panel > header {
        height: 60px;
    }

    .cloud-register-banner img {
        min-width: 900px;
        height: 70px;
    }

    .cloud-service-strip {
        padding: 18px 0;
    }

    .cloud-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cloud-service-item {
        justify-content: flex-start;
        min-height: 82px;
        padding: 10px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .cloud-service-item:nth-child(2) {
        border-right: 0;
    }

    .cloud-service-item:nth-child(n+3) {
        border-bottom: 0;
    }

    .cloud-service-item img {
        width: 38px;
        height: 38px;
        margin-right: 8px;
    }

    .cloud-service-item strong {
        font-size: 12px;
    }

    .cloud-service-item span {
        font-size: 10px;
        line-height: 1.45;
    }

    .cloud-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        padding-top: 36px;
        padding-bottom: 28px;
    }

    .cloud-footer-contact {
        grid-column: 1 / -1;
    }

    .cloud-footer-bottom {
        align-items: flex-start;
        justify-content: center;
        min-height: 86px;
        padding: 20px 0;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .cloud-float-tools {
        right: 14px;
        bottom: 18px;
        display: flex;
        width: auto;
        border-radius: 24px;
        overflow: hidden;
    }

    .cloud-float-tools a,
    .cloud-float-tools button {
        width: 47px;
        height: 47px;
        border-right: 1px solid #e7ebf1;
        border-bottom: 0;
    }

    .cloud-float-tools i {
        margin: 0;
        font-size: 15px;
    }

    .cloud-float-tools span {
        display: none;
    }
}

@media (max-width: 1080px) {
    .cloud-reference-menu {
        grid-template-columns: 1fr;
    }

    .cloud-reference-intro {
        min-height: 0;
        padding: 22px 18px;
    }

    .cloud-reference-intro h3 {
        margin-bottom: 14px;
    }

    .cloud-reference-intro span {
        margin-top: 18px;
    }

    .cloud-reference-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
        padding: 18px 14px 22px;
    }

}

@media (max-width: 420px) {
    .cloud-reference-groups {
        grid-template-columns: 1fr;
    }

    .cloud-solution-menu,
    .cloud-products-card-grid {
        grid-template-columns: 1fr;
    }

    .cloud-hero-copy h1 {
        width: 250px;
        font-size: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cloud-theme *,
    .cloud-theme *::before,
    .cloud-theme *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
