﻿:root {
  --bg: #f3f7fb;
  --panel: #ffffff;
  --ink: #111111;
  --text: #333333;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fafafa;
  --red: #006eff;
  --red-dark: #0052d9;
  --cyan: #18c7ff;
  --shadow: 0 16px 44px rgba(15, 65, 130, 0.12);
}

@font-face {
  font-family: "PingFang SC Local";
  src:
    url("/web/www/font/PingFang%20SC.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

[v-cloak] {
  display: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #111827;
  background: #fff;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader-mark {
  color: #8b95a7;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: none;
}

.site-loader span {
  width: 108px;
  height: 2px;
  overflow: hidden;
  background: #eef1f5;
  border-radius: 999px;
}

.site-loader span::before {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--red), #5aa7ff);
  animation: siteLoaderMove 0.9s ease-in-out infinite;
}

.page-loaded .site-loader,
html.page-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.topbar {
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.site-header.is-scrolled .topbar,
.menu-open .topbar {
  border-color: var(--line);
}

.topbar-inner,
.top-left,
.top-right,
.navbar,
.nav-panel,
.nav-actions,
.hero-actions,
.notice-inner,
.hero-card-head {
  display: flex;
  align-items: center;
}

.topbar-inner {
  height: 34px;
  justify-content: space-between;
}

.top-left,
.top-right {
  gap: 20px;
}

.search-btn {
  min-width: 68px;
  height: 24px;
  padding: 0 12px;
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.navbar {
  height: 66px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  font-weight: 900;
}

.brand-name {
  font-size: 20px;
}

.nav-panel {
  align-self: stretch;
  flex: 1;
  gap: 6px;
}

.nav-item {
  height: 100%;
}

.nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  font-size: 15px;
}

.nav-item > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-item:hover > a::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  display: none;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  padding: 30px calc((100% - min(1200px, calc(100% - 40px))) / 2);
  color: var(--text);
  background: #fff;
  box-shadow: 0 22px 50px rgba(16, 24, 40, 0.14);
}

.site-header.is-scrolled .mega-menu,
.menu-open .mega-menu {
  top: 100px;
}

.nav-item:hover .mega-menu {
  display: grid;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mega-grid h3,
.mega-promo strong {
  display: block;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16px;
}

.mega-grid a {
  display: block;
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 14px;
}

.mega-grid a:hover {
  color: var(--red);
}

.mega-promo {
  padding: 24px;
  background: #f1f7ff;
  border-left: 3px solid var(--red);
}

.mega-promo p {
  color: var(--muted);
  line-height: 1.7;
}

.mega-promo span {
  color: var(--red);
  font-weight: 800;
}

.nav-actions {
  gap: 14px;
}

.nav-link {
  font-weight: 700;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 2px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: var(--red);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: #06182f;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
  filter: saturate(1.42) contrast(1.12) brightness(0.9);
  transform: scale(1.04);
  animation: videoDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 38%, rgba(24, 199, 255, 0.34), transparent 28%),
    radial-gradient(circle at 48% 52%, rgba(0, 110, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(2, 15, 34, 0.88) 0%, rgba(4, 29, 64, 0.68) 42%, rgba(4, 28, 60, 0.24) 100%),
    linear-gradient(180deg, rgba(4, 24, 54, 0.34) 0%, rgba(4, 24, 54, 0.1) 60%, rgba(243, 247, 251, 0.98) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  opacity: 0.56;
  background-image:
    linear-gradient(rgba(24, 199, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 199, 255, 0.1) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 44%, rgba(24, 199, 255, 0.2) 45%, transparent 46% 100%);
  background-size: 54px 54px, 54px 54px, 260px 260px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 100%);
  animation: gridMove 20s linear infinite;
}

.hero::after {
  background:
    linear-gradient(180deg, transparent 0 46%, rgba(24, 199, 255, 0.16) 50%, transparent 54% 100%),
    radial-gradient(circle at 80% 42%, rgba(24, 199, 255, 0.22), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: scanMove 5.6s ease-in-out infinite;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 58px;
  align-items: center;
  min-height: 610px;
  padding-top: 112px;
}

.hero-kicker,
.section-title p,
.section-label,
.contact-card p {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 40px;
  font-weight: 800;
}

.hero-kicker {
  color: #c8ecff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(178, 228, 255, 0.32);
  background: rgba(7, 41, 86, 0.34);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 62px rgba(0, 75, 160, 0.28);
}

.hero-card-head {
  justify-content: space-between;
  margin-bottom: 8px;
}

.hero-card-head span {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.hero-card-head b {
  padding: 3px 7px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
}

.hero-card a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card a:last-child {
  border-bottom: 0;
}

.hero-card strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.hero-card small {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.hero-tabs {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.hero-tabs button {
  position: relative;
  min-height: 86px;
  padding: 18px 22px;
  color: var(--ink);
  text-align: left;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.hero-tabs button:last-child {
  border-right: 0;
}

.hero-tabs span {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.hero-tabs small {
  color: var(--muted);
}

.hero-tabs b {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.hero-tabs button.active b,
.hero-tabs button:hover b {
  transform: scaleX(1);
}

.notice-strip {
  position: relative;
  z-index: 4;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.notice-inner {
  min-height: 54px;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
}

.notice-inner strong {
  color: var(--red);
}

.notice-inner a {
  color: #4b5563;
}

.notice-inner a:hover {
  color: var(--red);
}

.quick-entry {
  padding: 28px 0 0;
  background: var(--bg);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-card {
  display: grid;
  min-height: 126px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 110, 255, 0.28);
}

.quick-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.quick-card strong {
  color: var(--ink);
  font-size: 18px;
}

.quick-card small {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 92px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title.centered {
  margin-inline: auto;
  text-align: center;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-title h2,
.infra-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 2vw, 44px);
  line-height: 1.22;
  letter-spacing: 0;
}

.products-subtitle {
  font-weight: normal;
  font-size: 16px;
}

.text-link {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.text-link::after,
.news-card a::after,
.product-card a::after {
  content: " >";
}

.products-section {
  padding: 0 0 20px;
  background: #f2f4f7;
}

.products-inner {
  width: 1280px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.products-heading {
  margin: 0 calc((100vw - 100%) / -2) 19px;
  padding: 86px 20px 35px;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 29, 44, 0.08);
}

.products-heading h2 {
  margin: 0 0 27px;
  color: #12213a;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.products-heading p {
  margin: 0;
  color: #4c596b;
  font-size: 15px;
  line-height: 1.4;
}

.products-showcase {
  display: grid;
  grid-template-columns: 287px minmax(0, 1fr);
  gap: 8px;
}

.product-feature-column {
  display: grid;
  grid-template-rows: 300px 146px;
  gap: 8px;
}

.product-recommend-card,
.product-all-card,
.product-service-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(18, 32, 59, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-recommend-card:hover,
.product-all-card:hover,
.product-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 224, 255, 0.9);
  box-shadow: 0 18px 34px rgba(28, 83, 160, 0.14);
}

.product-recommend-card {
  position: relative;
  overflow: hidden;
  padding: 42px 30px;
  background: #fff url("../img/hot-recommend1.png") center / cover no-repeat;
}

.product-recommend-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #111;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-service-card,
.product-all-card {
  position: relative;
  min-height: 146px;
  padding: 31px 24px 18px;
}

.product-all-card {
  padding-top: 29px;
}

.product-service-card h3,
.product-all-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  color: #172033;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.product-service-card h3 a,
.product-all-card h3 a {
  color: inherit;
  transition: color 0.18s ease;
}

.product-service-card h3 a:hover,
.product-all-card h3 a:hover {
  color: #006eff;
}

.product-service-card h3 span {
  color: #ff3f3f;
  background: #fff0f0;
  font-size: 13px;
  font-weight: 500;
}

.product-service-card p,
.product-all-card p {
  margin: 0 0 12px;
  color: #626b79;
  font-size: 14px;
  line-height: 1.5;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags span {
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #999;
  border: 1px solid #d8d8d8;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1;
}

.product-service-card > a {
  position: absolute;
  right: 24px;
  bottom: 19px;
  width: 88px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #287cff;
  border-radius: 2px;
  box-shadow: 0 8px 14px rgba(40, 124, 255, 0.25);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.product-hot-ribbon {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 72px;
  height: 72px;
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.product-hot-ribbon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.product-hot-ribbon::after {
  content: "HOT";
  position: absolute;
  right: 9px;
  top: 19px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(45deg) translate(1px, 1px);
}

.market-app-section {
  padding: 68px 0 140px;
  background: #f7f7f7;
}

.market-app-inner {
  width: 1280px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.market-app-heading {
  margin-bottom: 36px;
  text-align: center;
}

.market-app-heading h2 {
  margin: 0 0 16px;
  color: #232b3a;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.market-app-heading p {
  margin: 0;
  color: #666f7f;
  font-size: 15px;
  line-height: 1.4;
}

.market-app-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 14px;
}

.market-app-feature,
.market-app-card {
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 32, 59, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.market-app-feature {
  min-height: 338px;
  padding: 37px 24px 32px;
}

.market-app-feature h3,
.market-app-card h3 {
  margin: 0;
  color: #202939;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.market-app-feature h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.market-app-feature h3 span {
  display: inline-flex;
  align-items: center;
  height: 18px;
  margin-left: 8px;
  padding: 0 7px;
  vertical-align: 4px;
  color: #fff;
  background: #e7b86f;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
}

.market-app-feature p,
.market-app-card p {
  margin: 0;
  color: #5a6472;
  font-size: 14px;
  line-height: 1.65;
}

.market-app-feature ul {
  display: grid;
  gap: 20px;
  margin: 26px 0 31px;
  padding: 0 0 0 22px;
  color: #2f3848;
  font-size: 14px;
  line-height: 1.2;
}

.market-app-feature a,
.market-app-card a {
  width: 88px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #287cff;
  border-radius: 2px;
  box-shadow: 0 8px 14px rgba(40, 124, 255, 0.25);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.market-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.market-app-card {
  min-height: 163px;
  padding: 31px 32px 20px;
}

.market-app-card h3 {
  margin-bottom: 7px;
}

.market-app-card p {
  min-height: 46px;
  margin-bottom: 12px;
}

.market-app-feature:hover,
.market-app-card:hover {
  transform: translateY(2px) scale(0.985);
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  box-shadow:
    inset 0 9px 18px rgba(40, 124, 255, 0.055),
    inset 0 -1px 0 rgba(20, 40, 80, 0.06),
    0 4px 10px rgba(18, 32, 59, 0.04);
}

.market-app-card:active,
.market-app-card:focus {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  box-shadow:
    inset 0 10px 20px rgba(40, 124, 255, 0.07),
    inset 0 -1px 0 rgba(20, 40, 80, 0.06);
  transform: translateY(3px) scale(0.98);
  outline: none;
}

.solutions-section {
  position: relative;
  overflow: hidden;
  --solution-card-width: 928px;
  --solution-gap: 24px;
  --solution-visible-width: 2248px;
  min-height: 827px;
  padding: 79px 0 92px;
  background: #fff;
}

.solution-wrapper {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.solution-header {
  text-align: center;
  margin-bottom: 34px;
}

.solution-header h2 {
  margin: 0;
  color: #03070e;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.solution-menu {
  display: flex;
  justify-content: center;
  gap: 33px;
  height: 38px;
  margin-bottom: 30px;
  padding: 0;
  border-bottom: 0;
}

.solution-menu button {
  position: relative;
  width: auto;
  min-width: 0;
  min-height: 38px;
  padding: 0 0 13px;
  color: #2f3743;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.solution-menu button:hover {
  color: #03070e;
}

.solution-menu button.active {
  color: #03070e;
}

.solution-menu button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 3px;
  background: #151515;
  border-radius: 0;
}

.solution-carousel {
  position: relative;
  left: 50%;
  width: 2248px;
  height: 450px;
  margin-left: -1124px;
  overflow: hidden;
}

.solution-track {
  height: 450px;
  display: flex;
  gap: var(--solution-gap);
  transition: transform 0.55s ease;
  will-change: transform;
}

.solution-slide-card {
  position: relative;
  flex: 0 0 var(--solution-card-width);
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
}

.solution-slide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 36, 51, 0.88) 0%, rgba(8, 52, 67, 0.73) 44%, rgba(4, 22, 32, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.solution-card-copy {
  position: absolute;
  left: 40px;
  right: 42px;
  bottom: 40px;
  z-index: 1;
  color: #fff;
}

.solution-card-copy h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.solution-card-copy p {
  max-width: 800px;
  margin: 0 0 42px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
  white-space: nowrap;
}

.solution-card-copy a {
  width: 106px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.solution-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
}

.solution-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-left: 2px solid #151515;
  border-bottom: 2px solid #151515;
}

.solution-arrow-prev {
  left: 487px;
}

.solution-arrow-prev::before {
  transform: translate(-35%, -50%) rotate(45deg);
}

.solution-arrow-next {
  right: 487px;
}

.solution-arrow-next::before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.solution-all-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 37px auto 0;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
}

.solution-all-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #111111;
  border-right: 1px solid #111111;
  transform: rotate(45deg);
}

.floating-contact {
  position: fixed;
  right: 29px;
  top: 69.2%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 100;
}

.contact-float-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-btn,
.back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.contact-btn {
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
}

.contact-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.contact-icon {
  display: block;
  width: 34px;
  height: 34px;
  color: #111;
  transition: color 0.2s ease;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-btn:hover .contact-icon,
.contact-float-wrap:hover .contact-icon {
  color: #006eff;
}

.contact-popover {
  position: absolute;
  right: 58px;
  bottom: -6px;
  width: 288px;
  padding: 17px 24px 16px;
  color: #202632;
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 7px;
  box-shadow: 0 8px 30px rgba(22, 34, 55, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
}

.contact-popover::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 30px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid #dfe5ee;
  border-right: 1px solid #dfe5ee;
  border-radius: 2px;
  box-shadow: 4px -4px 12px rgba(22, 34, 55, 0.04);
  transform: rotate(45deg);
}

.contact-float-wrap:hover .contact-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.contact-popover-label {
  margin: 0 0 12px;
  color: #697386;
  font-size: 13px;
  line-height: 1;
}

.contact-after-label {
  margin-top: 14px;
  padding-top: 15px;
  border-top: 1px solid #e7ebf2;
}

.contact-popover-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  color: #111827;
}

.contact-popover-item.has-arrow {
  padding-right: 24px;
}

.contact-popover-item:hover strong {
  color: #006eff;
}

.contact-item-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  color: #303846;
  transform: translateY(-50%);
  transition: color 0.2s ease;
}

.contact-item-arrow svg {
  width: 100%;
  height: 100%;
}

.contact-popover-item:hover .contact-item-arrow {
  color: #006eff;
}

.contact-item-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #8d96a3;
  border-radius: 50%;
  background: #f0f2f5;
  transition: color 0.2s ease, background 0.2s ease;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  margin: 6.5px;
}

.contact-popover-item:hover .contact-item-icon {
  color: #006eff;
  background: #fff1f2;
}

.contact-popover-item strong {
  display: block;
  margin-bottom: 5px;
  color: #202632;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  transition: color 0.2s ease;
}

.contact-popover-item em {
  display: block;
  color: #2f3847;
  font-size: 13px;
  font-style: normal;
  line-height: 1.25;
}

.contact-popover-item:first-of-type em {
  color: #005dff;
}

.back-top {
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
}

.back-top:hover {
  background: #fff;
  transform: translateY(-2px);
}

.back-top-icon {
  width: 31px;
  height: 31px;
  color: #111;
  transition: color 0.2s ease;
}

.back-top-icon svg {
  width: 100%;
  height: 100%;
}

.back-top:hover .back-top-icon {
  color: #006eff;
}

.infra-section {
  min-height: 899px;
  padding: 60px 0 58px;
  background: #fff;
}

.infra-inner {
  width: 1280px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.infra-heading {
  margin-bottom: 59px;
  text-align: center;
}

.infra-heading h2 {
  margin: 0 0 28px;
  color: #21345f;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.infra-heading p {
  margin: 0;
  color: #5c6678;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
}

.infra-stage {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 31px;
  align-items: start;
  min-height: 477px;
}

.infra-info {
  padding-top: 10px;
}

.infra-info h3 {
  margin: 0 0 20px;
  color: #17191f;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.infra-info > p {
  margin: 0 0 20px;
  color: #3d4656;
  font-size: 14px;
  line-height: 1.8;
}

.infra-info > a {
  width: 138px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 39px;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.infra-info > a:hover {
  color: #fff;
  background: #111;
}

.infra-info > a span {
  font-size: 16px;
  line-height: 1;
}

.infra-stats {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  column-gap: 44px;
  row-gap: 86px;
}

.infra-stats div {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.infra-stats span {
  display: block;
  margin-bottom: 12px;
  color: #3b3f47;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.infra-stats strong {
  display: block;
  margin: 0;
  color: #17191f;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.infra-map {
  position: relative;
  height: 430px;
  overflow: visible;
  border: 0;
  background: url("/web/www/img/2d-map.jpg") center 48% / contain no-repeat;
}

.infra-map::before {
  content: none;
}

.infra-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 11%, transparent 88%, #fff 100%);
  pointer-events: none;
}

.infra-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.infra-pin b {
  margin-bottom: 6px;
  padding: 5px 10px;
  color: #343a45;
  background: #fff;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(20, 35, 55, 0.08);
}

.infra-pin i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d74ff;
  box-shadow: 0 0 0 3px rgba(45, 116, 255, 0.16);
}

.infra-pin i::before,
.infra-pin i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(45, 116, 255, 0.72);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: mapPinRipple 2.1s ease-out infinite;
}

.infra-pin i::after {
  animation-delay: 0.7s;
  border-color: rgba(45, 116, 255, 0.5);
}

.pin-beijing {
  left: 45.6%;
  top: 33.8%;
}

.pin-newyork {
  left: 88.6%;
  top: 29.5%;
}

.infra-certifications {
  height: 125px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  margin-top: 0;
  padding: 0 56px;
  border-radius: 6px;
  background: #fbfcff;
  box-shadow:
    0 24px 34px rgba(33, 58, 94, 0.06),
    0 2px 10px rgba(33, 58, 94, 0.03),
    inset 0 0 0 1px rgba(232, 237, 246, 0.82);
}

.infra-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: #5b6069;
  text-align: center;
  transition: transform 0.28s ease, color 0.28s ease;
}

.cert-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 50%;
  color: #fff;
  background: #3f92d8;
  border: 7px solid #f2f7fc;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
  box-shadow:
    0 8px 18px rgba(54, 102, 160, 0.1),
    0 0 0 1px rgba(221, 232, 244, 0.76);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.infra-cert:hover {
  color: #365176;
  transform: translateY(-6px);
}

.infra-cert:hover .cert-badge {
  transform: scale(1.1) rotate(4deg);
  filter: saturate(1.08);
  box-shadow:
    0 14px 28px rgba(54, 102, 160, 0.16),
    0 0 0 1px rgba(211, 225, 241, 0.9);
}

.cert-iso {
  background: radial-gradient(circle, #3e86d0 0 44%, #1c60ac 46% 100%);
}

.cert-aicpa {
  background: #2fa6d6;
}

.cert-djcp {
  color: #1481cf;
  background: #fff;
  border-color: #f0f7fd;
}

.cert-trucs {
  color: #257bda;
  background: #fff;
  border-color: #f0f7fd;
}

.cert-isms {
  background: radial-gradient(circle, #ffffff 0 39%, #5aa0dc 40% 42%, #f9fbfd 43% 100%);
  color: #6686b3;
}

.cert-pci {
  background: #fff;
  color: #4e8282;
  border-color: #f1f7f8;
}

.infra-cert p {
  margin: 0;
  color: #62676f;
  font-size: 14px;
  line-height: 1.2;
  transition: color 0.28s ease;
}

.infra-cert:hover p {
  color: #3b4f70;
}

.news-section {
  position: relative;
  min-height: 506px;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.58) 18.1% 18.35%, transparent 18.45% 100%),
    linear-gradient(23deg, transparent 0 69%, rgba(255, 255, 255, 0.78) 69.1% 69.35%, transparent 69.45% 100%),
    linear-gradient(158deg, transparent 0 62%, rgba(217, 222, 230, 0.52) 62.15% 62.45%, transparent 62.55% 100%),
    #f0f3f7;
}

.news-inner {
  position: relative;
  z-index: 1;
  width: 1280px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.news-heading {
  margin-bottom: 50px;
  text-align: center;
}

.news-heading h2 {
  margin: 0 0 24px;
  color: #000813;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.news-heading p {
  margin: 0;
  color: #2d3440;
  font-size: 14px;
  line-height: 1.4;
}

.news-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.news-board-card {
  min-height: 297px;
  overflow: hidden;
  padding: 14px 21px 17px;
  border: 1px solid rgba(205, 210, 218, 0.95);
  border-radius: 4px;
  background: rgba(247, 248, 251, 0.72);
  box-shadow: 0 8px 20px rgba(31, 42, 58, 0.13);
  backdrop-filter: blur(2px);
}

.news-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7dbe2;
}

.news-board-head h3 {
  margin: 0;
  color: #03070e;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.news-board-head a {
  flex: 0 0 auto;
  color: #1f2530;
  font-size: 13px;
  line-height: 1;
}

.news-board-head a:hover,
.news-board-card li a:hover {
  color: #0052d9;
}

.news-board-card ul {
  display: grid;
  gap: 21px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.news-board-card li {
  min-width: 0;
  color: #252a33;
  font-size: 14px;
  line-height: 1.34;
}

.news-board-card li a {
  display: block;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.member-cta-section {
  display: block;
  height: 234px;
  margin: 0;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: none;
  background: #232635 url("../img/tos_c4d639c0dea08ff4ff2fa1327e1d1d26.jpg") center / cover no-repeat;
}

.member-cta-section.reveal,
.member-cta-section.reveal-up,
.member-cta-section.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.member-cta-inner {
  position: relative;
  width: 1200px;
  max-width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto;
}

.member-cta-copy {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  text-align: center;
}

.member-cta-copy h2 {
  margin: 0 0 36px;
  color: #2f3542;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.member-cta-copy a {
  width: 136px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #2188ff 0%, #8958ff 100%);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(33, 136, 255, 0.22);
  transition: none;
}

.member-cta-copy a:hover {
  color: #fff;
  filter: brightness(1.04);
  box-shadow: 0 10px 22px rgba(92, 100, 255, 0.3);
  transform: none;
}

.site-footer {
  min-height: 545px;
  padding: 0;
  color: #111827;
  background: #f3f4f6;
  border-top: 0;
}

.footer-inner {
  width: 1314px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.footer-services {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-bottom: 1px solid #d8dee8;
}

.footer-service {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 1 250px;
  min-width: 0;
}

.footer-service > div {
  width: 190px;
  min-width: 0;
}

.footer-service h3 {
  margin: 0 0 6px;
  color: #0c1424;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-service p {
  margin: 0;
  color: #0c1424;
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}

.footer-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.footer-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-main {
  min-height: 324px;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1.08fr 1.08fr 1.08fr 2.15fr;
  column-gap: 42px;
  padding: 54px 10px 38px;
  border-bottom: 1px solid #d8dee8;
}

.footer-col h3 {
  margin: 0 0 24px;
  color: #0c1424;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 19px;
  color: #3d4552;
  font-size: 14px;
  line-height: 1.2;
}

.footer-col a:hover {
  color: #006eff;
}

.footer-contact p {
  margin-bottom: 12px;
  color: #4b5565;
  font-size: 14px;
  line-height: 1.3;
}

.footer-contact .footer-contact-tip {
  margin-bottom: 18px;
  color: #3d4552;
}

.footer-contact p a {
  display: inline;
  margin: 0;
  color: #1677ff;
  font-size: inherit;
  line-height: inherit;
}

.footer-contact p a:hover {
  color: #006eff;
}

.footer-qr-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
}

.footer-qr {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: #111827;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 55, 86, 0.14);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.footer-qr:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 38px rgba(31, 55, 86, 0.2);
}

.footer-qr img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-qr span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 5px;
  background: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
  padding: 34px 0 0;
  color: #3d4552;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0 0 12px;
  color: #3d4552;
  line-height: 1.25;
}

.footer-record-icon {
  position: relative;
  top: 2px;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 4px;
  border: 2px solid #ff6f22;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ff6f22 0 2px, transparent 2.5px),
    #fff;
}

.footer-record-icon::before,
.footer-record-icon::after {
  content: "";
  position: absolute;
  background: #ff6f22;
}

.footer-record-icon::before {
  left: -3px;
  top: 5px;
  width: 17px;
  height: 2px;
}

.footer-record-icon::after {
  left: 5px;
  top: -3px;
  width: 2px;
  height: 17px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.72, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translate3d(0, 34px, 0);
}

.reveal-down {
  transform: translate3d(0, -34px, 0);
}

.reveal-left {
  transform: translate3d(-46px, 0, 0);
}

.reveal-right {
  transform: translate3d(46px, 0, 0);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 110, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 110, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 110, 255, 0);
  }
}

@keyframes siteLoaderMove {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(230%);
  }
}

@keyframes mapPinRipple {
  0% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
  }
  72% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.2);
  }
}

@keyframes videoDrift {
  from {
    transform: scale(1.04) translate3d(-0.6%, -0.4%, 0);
  }
  to {
    transform: scale(1.09) translate3d(0.8%, 0.5%, 0);
  }
}

@keyframes gridMove {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 54px 54px, 54px 54px, 260px 0;
  }
}

@keyframes scanMove {
  0% {
    transform: translateY(-18%);
    opacity: 0.42;
  }
  50% {
    opacity: 0.78;
  }
  100% {
    transform: translateY(18%);
    opacity: 0.42;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .topbar {
    display: none;
  }

  .navbar {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel,
  .nav-actions {
    display: none;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu-open .nav-panel {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    display: grid;
    gap: 0;
    padding: 10px 0;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .menu-open .nav-item,
  .menu-open .nav-item > a {
    height: auto;
  }

  .menu-open .nav-item > a {
    padding: 15px 22px;
  }

  .menu-open .nav-item > a::after,
  .mega-menu {
    display: none;
  }

  .hero-layout,
  .infra-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .hero-tabs,
  .quick-grid,
  .product-grid,
  .plans-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-layout {
    grid-template-columns: 1fr;
  }

  .category-tabs,
  .solution-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-tabs button,
  .solution-menu button {
    text-align: center;
  }

  .infra-section {
    min-height: auto;
    padding: 56px 0;
  }

  .infra-heading {
    margin-bottom: 42px;
  }

  .infra-stage {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .infra-info {
    padding-top: 0;
  }

  .infra-info > a {
    margin-bottom: 34px;
  }

  .infra-map {
    height: 360px;
  }

  .infra-certifications {
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 10px;
    margin-top: 24px;
    padding: 28px 24px;
  }

  .news-section {
    min-height: auto;
    padding: 58px 0 56px;
  }

  .news-board {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-board-card {
    min-height: auto;
  }

  .member-cta-section {
    height: 230px;
  }

  .member-cta-copy {
    padding-top: 58px;
  }

  .member-cta-copy h2 {
    width: 100%;
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 1.35;
  }

  .site-footer {
    min-height: auto;
  }

  .footer-services {
    height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 28px 0;
  }

  .footer-service {
    flex: 0 1 calc(50% - 12px);
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
    padding: 42px 0 32px;
  }

  .products-section {
    min-height: auto;
    padding: 58px 0;
  }

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

  .product-feature-column {
    grid-template-rows: auto;
  }

  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .solutions-section {
    --solution-card-width: 700px;
    --solution-visible-width: 1440px;
    min-height: auto;
    padding: 64px 0 72px;
  }

  .solution-wrapper {
    max-width: calc(100% - 40px);
  }

  .solution-menu {
    display: flex;
    grid-template-columns: none;
    flex-wrap: wrap;
    gap: 18px 26px;
    height: auto;
    border-bottom: 0;
  }

  .solution-menu button {
    min-height: 32px;
    padding-bottom: 9px;
    text-align: center;
  }

  .solution-carousel {
    width: 1440px;
    height: 360px;
    margin-left: -720px;
  }

  .solution-track {
    height: 360px;
  }

  .solution-slide-card {
    height: 360px;
  }

  .solution-card-copy p {
    white-space: normal;
  }

  .solution-arrow-prev {
    left: 332px;
  }

  .solution-arrow-next {
    right: 332px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-layout {
    min-height: 570px;
    padding-top: 86px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-tabs {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .hero-tabs button {
    min-height: 62px;
  }

  .notice-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    white-space: normal;
  }

  .section {
    padding: 70px 0;
  }

  .market-app-section {
    padding: 54px 0 72px;
  }

  .market-app-layout {
    grid-template-columns: 1fr;
  }

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

  .products-section {
    padding: 48px 0;
  }

  .products-inner {
    max-width: calc(100% - 28px);
  }

  .products-heading {
    margin-bottom: 36px;
  }

  .products-heading h2 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .products-showcase,
  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-column {
    grid-template-rows: auto;
  }

  .product-recommend-card {
    min-height: 220px;
  }

  .product-service-card,
  .product-all-card {
    min-height: 150px;
  }

  .section-title-row,
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-tabs,
  .solution-menu,
  .quick-grid,
  .product-grid,
  .plans-grid,
  .solution-points,
  .infra-stats,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .infra-inner {
    width: min(100% - 28px, 1200px);
  }

  .infra-heading h2 {
    font-size: 26px;
  }

  .infra-heading p {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0;
  }

  .infra-info h3 {
    font-size: 26px;
  }

  .infra-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 28px;
  }

  .infra-stats strong {
    font-size: 34px;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-action {
    position: static;
    margin-top: 20px;
  }

  .solution-detail {
    padding: 30px;
  }

  .infra-map {
    height: 260px;
    min-height: 0;
  }

  .infra-pin b {
    font-size: 10px;
  }

  .infra-certifications {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-feature-column {
    grid-template-rows: auto;
  }

  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .solution-header h2 {
    font-size: 28px;
  }

  .solutions-section {
    --solution-card-width: calc(100vw - 28px);
    --solution-gap: 14px;
    --solution-visible-width: 100vw;
  }

  .solution-menu {
    gap: 14px 20px;
  }

  .solution-menu button {
    font-size: 14px;
  }

  .solution-carousel {
    left: auto;
    width: calc(100vw - 28px);
    height: 360px;
    margin: 0 auto;
    padding: 0;
  }

  .solution-track {
    height: 360px;
    gap: 14px;
  }

  .solution-slide-card {
    height: 360px;
    border-radius: 16px;
    background-color: #082131;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .solution-card-copy {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .solution-card-copy h3 {
    font-size: 24px;
  }

  .solution-card-copy p {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .solution-arrow {
    width: 44px;
    height: 44px;
  }

  .solution-arrow-prev {
    left: 28px;
  }

  .solution-arrow-next {
    right: 28px;
  }

  .news-inner {
    max-width: calc(100% - 28px);
  }

  .market-app-inner {
    max-width: calc(100% - 28px);
  }

  .market-app-heading h2 {
    font-size: 24px;
  }

  .market-app-grid {
    grid-template-columns: 1fr;
  }

  .market-app-feature,
  .market-app-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .news-heading {
    margin-bottom: 30px;
  }

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

  .news-board-card {
    padding: 14px 16px 17px;
  }

  .news-board-card ul {
    gap: 17px;
  }

  .member-cta-section {
    height: 270px;
  }

  .member-cta-inner {
    max-width: calc(100% - 28px);
  }

  .member-cta-copy {
    padding-top: 38px;
  }

  .member-cta-copy h2 {
    width: 100%;
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.45;
  }

  .member-cta-copy a {
    width: 120px;
    height: 34px;
  }

  .floating-contact {
    right: 14px;
  }

  .contact-popover {
    right: 55px;
    bottom: -6px;
    width: min(286px, calc(100vw - 82px));
    padding: 16px 20px;
  }

  .contact-popover::after {
    bottom: 30px;
  }

  .footer-inner {
    max-width: calc(100% - 28px);
  }

  .footer-services {
    display: none;
  }

  .footer-qr-group {
    gap: 14px;
  }

  .footer-qr {
    width: 94px;
    height: 94px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 30px;
  }

  .footer-col:not(.footer-contact) {
    display: none;
  }

  .footer-col h3 {
    margin-bottom: 14px;
  }

  .footer-col a,
  .footer-col p {
    margin-bottom: 12px;
  }

  .footer-bottom {
    padding-bottom: 24px;
    font-size: 13px;
  }
}

/* Screenshot-matched navigation and banner */
.site-header.huawei-like-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  color: #1d2129;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(235, 243, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.04);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  transition: top 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.huawei-like-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.12));
  opacity: 0.62;
  pointer-events: none;
}

.site-header.huawei-like-header.is-scrolled,
.site-header.huawei-like-header:has(.huawei-menu-item.has-mega-panel:hover),
.menu-open .site-header.huawei-like-header {
  color: #1d2129;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.huawei-like-header.is-scrolled::after,
.site-header.huawei-like-header:has(.huawei-menu-item.has-mega-panel:hover)::after,
.menu-open .site-header.huawei-like-header::after {
  opacity: 0;
}

.huawei-nav {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  color: currentColor;
  background: transparent;
}

.huawei-brand {
  width: 124px;
  height: 32px;
  display: flex;
  align-items: center;
  flex: 0 0 124px;
  margin-left: 24px;
  margin-right: 38px;
}

.huawei-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.huawei-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex: 1 1 auto;
  height: 100%;
  min-width: 0;
  padding-right: 24px;
}

.huawei-menu-item {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px 12px;
}

.huawei-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: currentColor;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.huawei-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #1664ff;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.huawei-menu-link:hover {
  color: #1664ff;
  font-weight: 500;
}

.huawei-menu-link:hover::after,
.huawei-menu-item:hover .huawei-menu-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;
  z-index: 80;
  display: none;
  color: #1d2129;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.product-store-panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  height: auto;
  min-height: 570px;
  max-height: calc(100vh - 60px);
  overflow: auto;
  display: none;
  color: #263246;
  background: #fff;
  box-shadow: 0 18px 38px rgba(21, 31, 48, 0.08);
}

.huawei-menu-item.has-mega-panel:hover > .product-store-panel {
  display: block;
}

.product-store-layout {
  width: 1080px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 42px 0 44px;
}

.product-hot-area h2,
.product-latest-area h2,
.product-news-area h2 {
  margin: 0;
  color: #222b3a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.product-hot-area h2 {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
}

.product-hot-area h2 img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.product-hot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-hot-card {
  position: relative;
  min-height: 118px;
  padding: 22px 24px 24px;
  overflow: visible;
  color: #34415a;
  background: linear-gradient(180deg, #f5f7f9, #fff);
  border: 2px solid #fff;
  box-shadow: 0 7px 10px rgba(170, 183, 202, 0.43);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-hot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(170, 183, 202, 0.52);
}

.product-hot-card img {
  position: absolute;
  right: 14px;
  top: -13px;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.product-hot-card strong {
  display: block;
  margin: 0 48px 10px 0;
  color: #1e2738;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.product-hot-card span {
  display: block;
  color: #3f4f70;
  font-size: 13px;
  line-height: 1.65;
  word-break: normal;
  overflow-wrap: anywhere;
}

.product-store-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 12px;
  margin-top: 40px;
}

.product-latest-area h2,
.product-news-area h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.product-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 24px;
  padding-top: 22px;
}

.product-latest-col h3 {
  margin: 0 0 16px;
  color: #252f42;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.product-latest-col h3:not(:first-child) {
  margin-top: 36px;
}

.product-latest-col a {
  display: block;
  margin: 0 0 17px;
  color: #405174;
  font-size: 14px;
  line-height: 1.3;
  transition: color 0.18s ease;
}

.product-latest-col a:hover,
.product-news-area a:hover {
  color: #006eff;
}

.product-news-area a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #263246;
  font-size: 14px;
  line-height: 1.3;
}

.product-news-area a span {
  height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #006eff;
  border: 1px solid #2f80ff;
  font-size: 13px;
  line-height: 1;
}

.site-mega-panel {
  height: auto;
  min-height: 420px;
  max-height: calc(100vh - 60px);
  overflow: auto;
  color: #263246;
  background: #fff;
  box-shadow: 0 18px 38px rgba(21, 31, 48, 0.08);
}

.huawei-menu-item.has-mega-panel:hover > .site-mega-panel {
  display: block;
}

.site-mega-layout {
  width: 1080px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 42px 0 44px;
}

.site-mega-feature h2,
.site-mega-list-area h2,
.site-mega-news h2 {
  margin: 0;
  color: #222b3a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.site-mega-feature h2 {
  margin-bottom: 18px;
}

.site-mega-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.site-mega-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-mega-card {
  position: relative;
  min-height: 118px;
  padding: 22px 24px 24px;
  overflow: visible;
  color: #34415a;
  background: linear-gradient(180deg, #f5f7f9, #fff);
  border: 2px solid #fff;
  box-shadow: 0 7px 10px rgba(170, 183, 202, 0.43);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-mega-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(170, 183, 202, 0.52);
}

.site-mega-card img {
  position: absolute;
  right: 14px;
  top: -13px;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-mega-card strong {
  display: block;
  margin: 0 48px 10px 0;
  color: #1e2738;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.site-mega-card span {
  display: block;
  color: #3f4f70;
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.site-mega-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 12px;
  margin-top: 40px;
}

.site-mega-list-area h2,
.site-mega-news h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.site-mega-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 24px;
  padding-top: 22px;
}

.site-mega-list-grid h3 {
  margin: 0 0 16px;
  color: #252f42;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.site-mega-list-grid a {
  display: block;
  margin: 0 0 17px;
  color: #405174;
  font-size: 14px;
  line-height: 1.3;
  transition: color 0.18s ease;
}

.site-mega-list-grid a:hover,
.site-mega-news a:hover {
  color: #006eff;
}

.site-mega-news a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #263246;
  font-size: 14px;
  line-height: 1.3;
}

.site-mega-news a span {
  height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #006eff;
  border: 1px solid #2f80ff;
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .product-store-panel {
    height: auto;
    max-height: calc(100vh - 60px);
    overflow: auto;
  }

  .product-hot-grid,
  .site-mega-card-grid,
  .site-mega-card-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-store-columns,
  .site-mega-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .product-store-panel {
    max-height: calc(100vh - 72px);
  }

  .product-store-layout,
  .site-mega-layout {
    max-width: calc(100% - 28px);
    padding: 28px 0 34px;
  }

  .product-hot-grid,
  .product-latest-grid,
  .site-mega-card-grid,
  .site-mega-card-grid-three,
  .site-mega-list-grid {
    grid-template-columns: 1fr;
  }

  .product-latest-grid,
  .site-mega-list-grid {
    gap: 8px;
  }
}

.huawei-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  align-self: stretch;
  color: currentColor;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.huawei-actions a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.huawei-actions .mobile-login-icon {
  display: none;
}

.huawei-actions .mobile-search-icon {
  display: none;
}

.desktop-search-box {
  width: 235px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: #1664ff;
  border: 1px solid rgba(53, 76, 109, 0.15);
  border-radius: 4px;
  background: transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  box-shadow: none;
  isolation: isolate;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.desktop-search-box:hover {
  border-color: transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(78deg, #3b91ff -3.23%, #0d5eff 51.11%, #c069ff 98.65%);
}

.desktop-search-box svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.desktop-search-box input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #0c0d0e;
  border: 0;
  outline: 0;
  font-size: 14px;
  background: transparent;
}

.desktop-search-box input::placeholder {
  color: #bfbfbf;
}

.huawei-actions a:hover {
  color: #1664ff;
}

.huawei-actions a:not(.huawei-register) {
  text-decoration: none;
}

.huawei-actions a:not(.huawei-register):hover {
  color: #1664ff;
}

.huawei-register {
  position: relative;
  min-width: 110px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  color: #fff !important;
  background: #165dff;
  font-weight: 500;
  line-height: 60px;
  text-align: center;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.huawei-register:hover {
  color: #fff !important;
  background: rgba(22, 93, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 20px rgba(22, 93, 255, 0.18);
}

.mobile-menu-panel {
  display: none;
}

.huawei-hero {
  position: relative;
  height: 552px;
  margin-top: 0;
  overflow: hidden;
  background: #fff;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.hero-mobile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f4f6f8;
  z-index: 0;
  display: none;
}

.hero-mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.2);
}

.hero-prev::before,
.hero-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}

.hero-prev::before {
  left: 17px;
}

.hero-next::before {
  right: 17px;
  transform: translateY(-50%) rotate(-135deg);
}

.huawei-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 70%, rgba(255, 194, 99, 0.2), transparent 19%),
    radial-gradient(circle at 86% 13%, rgba(213, 199, 188, 0.32), transparent 21%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(237, 234, 231, 0.28) 100%);
  pointer-events: none;
}

.huawei-hero-copy {
  position: relative;
  z-index: 3;
  width: min(1600px, calc(100% - 304px));
  margin: 0 auto;
  padding-top: 181px;
}

.huawei-hero-copy h1,
.huawei-hero-copy h2 {
  max-width: 920px;
  margin: 0 0 20px;
  color: #121212;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.huawei-hero-copy p {
  margin: 0 0 47px;
  color: #000;
  font-size: 21px;
  line-height: 1.45;
}

.huawei-hero-copy a {
  width: 138px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 700;
}

.huawei-hero-copy a:hover {
  color: #fff;
  background: #111;
}

.huawei-dots {
  position: absolute;
  left: 50%;
  bottom: 31px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.huawei-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
}

.huawei-dots button.active {
  width: 21px;
  background: #252525;
}

.huawei-shortcuts {
  position: relative;
  z-index: 8;
  isolation: isolate;
  height: 80px;
  margin-top: -80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(235, 243, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  border: 0;
  padding: 0 calc((100% - min(1600px, calc(100% - 304px))) / 2);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.04);
}

.huawei-shortcuts::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.12));
  opacity: 0.62;
}

.huawei-shortcuts a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  color: #222;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.58);
  box-shadow: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.huawei-shortcuts a:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38), 0 8px 20px rgba(16, 24, 40, 0.06);
}



.huawei-shortcuts strong {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 900;
}

.huawei-shortcuts span {
  position: relative;
  z-index: 1;
  color: #5f6368;
  font-size: 14px;
}



.huawei-shortcuts a:active {
  transform: translateY(0) scale(0.985);
  box-shadow: inset 0 2px 8px rgba(17, 17, 17, 0.08);
}

.huawei-shortcuts a:focus-visible {
  outline: 2px solid #cf0012;
  outline-offset: -4px;
}

@media (max-width: 1280px) {
  .huawei-nav {
    width: 100%;
  }

  .huawei-hero-copy {
    width: min(1180px, calc(100% - 40px));
  }

  .huawei-shortcuts {
    padding: 0 calc((100% - min(1180px, calc(100% - 40px))) / 2);
  }

  .huawei-menu {
    gap: 18px;
  }

  .huawei-actions {
    gap: 12px;
  }

  .huawei-hero-copy h1,
  .huawei-hero-copy h2 {
    font-size: 54px;
  }
}

@media (max-width: 1024px) {
  .site-header.huawei-like-header,
  .huawei-nav {
    height: 49px;
  }

  .huawei-menu,
  .huawei-actions a:not(.mobile-login-icon),
  .huawei-register {
    display: none;
  }

  .desktop-search-box {
    display: none;
  }

  .huawei-actions .mobile-search-icon,
  .huawei-actions .mobile-login-icon {
    display: flex;
  }

  .huawei-actions {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    order: 8;
  }

  .mobile-search-icon,
  .mobile-login-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
  }

  .mobile-search-icon {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-login-icon {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-search-icon svg,
  .mobile-login-icon svg {
    width: 24px;
    height: 24px;
  }

  .menu-toggle {
    position: relative;
    display: block;
    order: 0;
    width: 30px;
    height: 30px;
    margin-left: 0;
    padding: 6px 4px;
    color: #111;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 4px;
    width: 22px;
    height: 2px;
    margin: 0;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 7px;
  }

  .menu-toggle span:nth-child(2) {
    top: 14px;
  }

  .menu-toggle span:nth-child(3) {
    top: 21px;
  }

  #app.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #app.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  #app.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    opacity: 1 !important;
    transform: translateY(7px) rotate(45deg) !important;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 1 !important;
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .mobile-search-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 49px;
    z-index: 130;
    height: 57px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px 8px;
    background: #f5f5f6;
    border-top: 1px solid #e3e5e8;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  }

  .mobile-search-bar label {
    height: 38px;
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    color: #111827;
    border: 1px solid #111827;
    border-radius: 19px;
    background: #fff;
  }

  .mobile-search-bar svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
  }

  .mobile-search-bar input {
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: #111827;
    font-size: 14px;
    background: transparent;
  }

  .mobile-search-bar button {
    width: 40px;
    height: 38px;
    padding: 0;
    color: #111827;
    border: 0;
    background: transparent;
    font-size: 14px;
    white-space: nowrap;
  }

  .mobile-account-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 49px;
    z-index: 130;
    padding: 17px 12px 24px;
    background: #fff;
    border-top: 1px solid #e3e5e8;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  }

  .mobile-account-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 4px 16px;
    border-bottom: 1px solid #d9dee7;
  }

  .mobile-account-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
    color: #07152d;
    font-size: 14px;
  }

  .mobile-account-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 10px 0;
  }

  .mobile-account-actions a {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    border: 1px solid #111827;
    border-radius: 999px;
    font-size: 14px;
    background: #fff;
  }

  .mobile-menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 49px;
    z-index: 130;
    height: calc(100vh - 51px);
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #e3e5e8;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  }

  .mobile-menu-primary {
    height: 100%;
    padding: 14px 0;
    overflow-y: auto;
    background: #f3f3f4;
  }

  .mobile-menu-primary button {
    position: relative;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #07152d;
    border: 0;
    background: transparent;
    font-size: 14px;
    text-align: left;
  }

  .mobile-menu-primary button.active {
    color: #07152d;
    background: #fff;
    font-weight: 800;
  }

  .mobile-menu-primary button.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 2px;
    height: 20px;
    background: #07152d;
  }

  .mobile-menu-secondary {
    height: 100%;
    padding: 15px 15px 16px 20px;
    overflow-y: auto;
    background: #fff;
  }

  .mobile-secondary-title,
  .mobile-secondary-link {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #07152d;
    border-bottom: 1px solid #dfe4eb;
    font-size: 14px;
    line-height: 1.2;
  }

  .mobile-secondary-link {
    justify-content: flex-start;
    overflow-wrap: anywhere;
  }

  .mobile-secondary-accordion {
    width: 100%;
    padding: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-secondary-accordion span {
    min-width: 0;
    flex: 1;
    text-align: left;
  }

  .mobile-secondary-accordion i {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-left: 12px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .mobile-secondary-accordion.open i {
    transform: rotate(-135deg);
  }

  .mobile-tertiary-list {
    padding: 0 0 8px 12px;
    border-bottom: 1px solid #dfe4eb;
  }

  .mobile-tertiary-link {
    min-height: 38px;
    display: flex;
    align-items: center;
    color: #3f4652;
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .mobile-secondary-title {
    min-height: 42px;
    font-weight: 800;
  }

  .mobile-secondary-title span {
    color: #07152d;
    font-size: 20px;
    line-height: 1;
  }

  .huawei-hero {
    margin-top: 0;
  }

  .huawei-hero-copy {
    padding-top: 136px;
  }

  .huawei-hero-copy h1,
  .huawei-hero-copy h2 {
    max-width: 560px;
    font-size: 46px;
  }

  .huawei-shortcuts {
    height: auto;
    margin-top: -192px;
    flex-wrap: wrap;
    padding: 0 calc((100% - min(1180px, calc(100% - 40px))) / 2);
  }

  .huawei-shortcuts a {
    min-height: 96px;
    width: calc(50% - 10px);
  }
}

@media (max-width: 680px) {
  .hero-video {
    display: none;
  }

  .hero-mobile-image {
    display: block;
  }

  .hero-prev,
  .hero-next {
    display: none;
  }

  .huawei-hero-copy {
    padding-top: 108px;
  }

  .huawei-hero-copy h1,
  .huawei-hero-copy h2 {
    font-size: 38px;
  }

  .huawei-hero-copy p {
    max-width: 340px;
    margin-bottom: 32px;
    font-size: 16px;
  }

  .huawei-shortcuts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-top: -176px;
    padding: 0 calc((100% - min(100% - 28px, 1200px)) / 2);
  }

  .huawei-shortcuts a {
    flex: 0 0 50%;
    width: 50%;
    min-height: 88px;
    padding: 16px 12px;
  }
}
