* {
  box-sizing: border-box;
}

/* === Local Font Declarations === */
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/NotoSansSC-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/NotoSansSC-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Poppins-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Poppins-Bold.woff2') format('woff2');
}

:root {
  --bg: #f5f9fc;
  --panel: #eff5fa;
  --panel-soft: #e3edf6;
  --line: rgba(121, 161, 197, 0.18);
  --text: #24405a;
  --muted: #6f879e;
  --brand: #1c84cb;
  --brand-soft: #5fbef2;
  --light-bg: #f6fafc;
  --light-panel: #ffffff;
  --light-text: #223b53;
  --light-muted: #6c8297;
  --shadow-strong: 0 34px 82px rgba(31, 79, 123, 0.12);
  --shadow-card: 0 22px 52px rgba(29, 78, 118, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --topbar-visual-height: 72px;
  --carousel-design-width: 1440;
  --carousel-design-height: 828;
  --carousel-width-scale: calc(100vw / 1440px);
  --carousel-height-scale: calc((100svh - var(--topbar-visual-height)) / 828px);
  --carousel-full-height: calc(100svh - var(--topbar-visual-height));
  --carousel-proportional-height: calc(828px * var(--carousel-width-scale));
  --carousel-media-scale: 1;
  --carousel-content-scale: min(var(--carousel-width-scale), var(--carousel-height-scale), 1);
  --carousel-scale: var(--carousel-content-scale);
  --carousel-height: min(var(--carousel-full-height), var(--carousel-proportional-height));
  --carousel-elem-gap: 0.6em;
  --carousel-line-height: 1.2;
  --carousel-title-en-font: inherit;
  --carousel-title-en-size: 13px;
  --carousel-title-cn-font: inherit;
  --carousel-title-cn-size: 36px;
  --carousel-summary-font: inherit;
  --carousel-summary-size: 16px;
  --carousel-features-font: inherit;
  --carousel-features-size: 14px;
  --carousel-cta-font: inherit;
  --carousel-cta-size: 15px;
  --carousel-title-en-style: normal;
  --carousel-title-cn-style: normal;
  --carousel-summary-style: normal;
  --carousel-features-style: normal;
  --carousel-cta-style: normal;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--text);
  background: #f6fbfe;
  font: 14px/1.8 "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

html.is-gray-mode,
body.is-gray-mode {
  filter: grayscale(100%);
}

.about-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 192px;
  min-height: 56px;
  padding: 0 26px;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  background: linear-gradient(180deg, #e1243e 0%, #d61f35 100%);
  box-shadow: 0 12px 26px rgba(214, 31, 53, 0.14);
  transition: background-size 320ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.about-home-link::after {
  content: "\2192";
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1;
}

.about-home-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(214, 31, 53, 0.24);
}

body.article-page-body {
  background: #eef5fb;
}

a {
  color: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.3) 0.7px, transparent 0.7px),
    radial-gradient(rgba(87, 166, 255, 0.2) 0.7px, transparent 0.7px);
  background-position: 0 0, 15px 15px;
  background-size: 30px 30px;
}

.container {
  position: relative;
  z-index: 1;
  width: 1200px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

body[data-page="home"] .container {
  width: 76vw;
  max-width: none;
  margin-left: 12vw;
  margin-right: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(146, 180, 209, 0.1);
  box-shadow: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

#topbarPhone {
  opacity: 0;
  transition: opacity 0.2s ease;
}

#topbarPhone.is-loaded {
  opacity: 1;
}

body[data-page="home"] .topbar .container {
  width: min(60vw, calc(100vw - 48px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

body.article-page-body .topbar .container {
  width: min(60vw, calc(100vw - 48px));
  max-width: none;
}

body[data-page="downloads"] .topbar .container,
body[data-page="solutions"] .topbar .container {
  width: min(60vw, calc(100vw - 48px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  margin-left: 0;
}

.logo-image {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  margin: 0 auto;
}

.nav-link.has-dropdown::after,
.nav-item.has-dropdown > .nav-link::after,
.nav-item > .nav-link[data-has-dropdown="true"]::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  vertical-align: middle;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.82;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.nav-item:hover > .nav-link.has-dropdown::after,
.nav-link.has-dropdown:hover::after,
.nav-item:hover > .nav-link[data-has-dropdown="true"]::after {
  transform: translateY(-1px) rotate(-135deg);
  opacity: 1;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  white-space: nowrap;
}

.topbar-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #233a53;
  font-size: 14px;
  font-weight: 500;
}

.topbar-contact-info::before {
  content: "\260E";
  font-size: 14px;
  opacity: 0.72;
}

.topbar-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 36px;
  padding: 0 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  background: linear-gradient(180deg, #e1243e 0%, #d61f35 100%);
}

.topbar-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: transparent;
  transition: all 0.2s ease;
  margin-right: 6px;
}

.topbar-lang-switch:hover {
  color: #e1243e;
  border-color: #e1243e;
}

.topbar.is-condensed .topbar-lang-switch {
  border-color: #ccc;
}

.topbar.is-condensed .topbar-lang-switch:hover {
  border-color: #e1243e;
}

.topbar.is-condensed {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(146, 180, 209, 0.14);
  box-shadow: none;
}

.nav-item {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 18px;
  color: #243e57;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px 10px 0 0;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: #d93536;
  background: transparent;
  transform: none;
  border-radius: 10px 10px 0 0;
  box-shadow: none;
}

.nav-link.is-active {
  color: #d93536;
}

.dropdown {
  position: absolute;
  z-index: 8;
  top: calc(100% - 6px);
  left: 50%;
  min-width: 360px;
  padding: 18px 0 12px;
  background: #ffffff;
  border: 1px solid rgba(214, 31, 53, 0.14);
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 18px 32px rgba(136, 27, 42, 0.12);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: all 180ms ease;
}

.dropdown.dropdown-compact {
  min-width: 120px;
  width: max-content;
}

.dropdown.dropdown-compact a {
  padding-left: 26px;
  padding-right: 26px;
  transition: color 180ms ease, background 180ms ease;
}

.dropdown.dropdown-compact a:hover {
  padding-left: 26px;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: #223d57;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
}

.dropdown a:hover {
  color: #c91632;
  background: rgba(214, 31, 53, 0.06);
  padding-left: 24px;
}

.dropdown-columns-4 {
  min-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 18px;
}

.dropdown-mega {
  align-items: start;
}

.dropdown-mega-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  padding: 16px 18px;
  min-width: 280px;
}

.dropdown-mega-group {
  min-width: 0;
}

.dropdown-mega-title {
  display: block;
  margin-bottom: 8px;
  padding: 0 8px;
  color: #333333;
  font-family: "微软雅黑", "微軟正黑體";
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  cursor: default;
}

.dropdown-mega-links {
  display: grid;
  gap: 8px;
}

.dropdown-mega a.dropdown-mega-item {
  display: block;
  padding: 6px 8px;
  border-radius: 0;
  text-decoration: none;
}

.dropdown-mega a.dropdown-mega-item:hover,
.dropdown-mega a.dropdown-mega-item:focus-visible {
  background: rgba(214, 31, 53, 0.06);
  padding: 6px 8px;
  border-radius: 8px;
}

.dropdown-mega-item-title {
  display: block;
  color: #26384b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.dropdown-mega-item-summary {
  display: block;
  margin-top: 1px;
  color: #a3aab3;
  font-size: 12px;
  line-height: 1.35;
}

.dropdown-mega-item:hover .dropdown-mega-item-title {
  color: #c91632;
}

.dropdown-mega a.dropdown-mega-item,
.dropdown-mega a.dropdown-mega-item:hover,
.dropdown-mega a.dropdown-mega-item:focus-visible {
  padding-left: 8px;
}

.admin-link {
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

body[data-page="home"] #contentRoot {
  min-height: 100svh;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 58vh, 680px);
  color: #1f3b56;
  background: #f4f8fc;
}

.hero-grid,
.hero-orb {
  position: absolute;
  pointer-events: none;
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 120, 170, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 120, 170, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 90%);
}

.hero-orb {
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.72;
}

.hero-orb-a {
  top: 110px;
  right: 8%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(123, 211, 246, 0.3), transparent 68%);
  animation: driftA 8s ease-in-out infinite;
}

.hero-orb-b {
  bottom: 90px;
  left: 7%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(116, 174, 236, 0.24), transparent 70%);
  animation: driftB 9s ease-in-out infinite;
}

.carousel-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  transition: transform 600ms ease-in-out;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-size: cover;
  background-position: center;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 248, 252, 0.28);
  pointer-events: none;
}

.carousel-overlay {
  position: relative;
  z-index: auto;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 58vh, 680px);
  padding-top: clamp(36px, 5vh, 72px);
  padding-bottom: clamp(22px, 4.5vh, 56px);
}

body[data-page="home"] .hero,
body[data-page="home"] .carousel-overlay {
  min-height: 0;
  height: var(--carousel-height);
}

.carousel-link-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.carousel .hero-layout {
  min-height: 320px;
}

.carousel .carousel-content {
  display: grid;
  align-content: start;
  min-height: 320px;
  grid-template-rows: auto auto minmax(88px, auto) 64px;
}

.hero-layout {
  display: block;
}

.carousel-content,
.hero-side-panel,
.company-layout,
.section-title,
.feature-stack,
.column-grid,
.product-showcase,
.industry-grid,
.footer-inner {
  transition: transform 700ms ease, opacity 700ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 860px;
  font-size: 54px;
  line-height: 1.16;
}

.hero-description {
  margin: 0;
  max-width: 760px;
  color: #5f768d;
  font-size: 16px;
  min-height: 3.6em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  min-height: 50px;
  align-items: flex-start;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.hero-button.primary {
  color: #ffffff;
  background: #f6fbfe;
  box-shadow: 0 14px 28px rgba(73, 157, 215, 0.22);
}

.hero-button.secondary {
  color: #2a4a67;
  border: 1px solid rgba(140, 178, 206, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.carousel-footer {
  position: relative;
  z-index: 3;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-height: 18px;
}

.carousel .carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-dot {
  width: 24px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 2px;
  background: rgba(91, 136, 174, 0.28);
  cursor: pointer;
  transition: background 180ms ease, width 180ms ease;
}

.carousel-dot.active {
  background: #d83b3b;
  width: 32px;
}

.section,
.footer-panel {
  position: relative;
  padding: 86px 0;
  color: var(--light-text);
}

.section-light {
  background: #f3f7fb;
}

.section-dark {
  color: #eef5fb;
  background: #385771;
}

.section-dark .section-title p,
.section-dark .feature-copy p,
.section-dark .feature-card-row p {
  color: rgba(239, 246, 251, 0.8);
}

.section-title {
  margin-bottom: 30px;
  position: relative;
}

.section-title.center {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title h2,
.footer-panel h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.section-title p,
.section-description,
.footer-panel p {
  margin: 0;
  color: var(--light-muted);
  font-size: 15px;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 18px;
  background: #f6fbfe;
}

.section-title.center::after {
  margin-left: auto;
  margin-right: auto;
}

.company-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.company-layout .section-copy {
  max-width: 720px;
}

.company-layout .section-title h2 {
  font-size: 54px;
  line-height: 1.14;
}

.company-layout .section-description {
  font-size: 18px;
  line-height: 1.95;
}

.partner-section {
  padding-top: 28px;
  padding-bottom: 26px;
  background: #ffffff;
}

.partner-header {
  margin-bottom: 28px;
}

.partner-header .section-title::after {
  display: none;
}

.partner-header .section-title h2 {
  font-size: 34px;
  line-height: 1.2;
}

.partner-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 22px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(176, 194, 212, 0.22);
  border-radius: 22px;
  box-shadow: 0 24px 46px rgba(26, 42, 67, 0.08);
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 10px 12px;
  background: transparent;
  border-radius: 16px;
}

.partner-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #233547;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.partner-logo-dell {
  font-size: 33px;
  color: #1877c9;
  letter-spacing: -0.06em;
}

.partner-logo-ibm {
  font-size: 31px;
  color: #1877c9;
  letter-spacing: -0.08em;
}

.partner-logo-vmware {
  font-size: 28px;
  color: #6b8db7;
  font-weight: 600;
}

.partner-logo-microsoft {
  position: relative;
  padding-left: 42px;
  font-size: 22px;
  color: #5e6470;
  font-weight: 600;
}

.partner-logo-microsoft::before {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  background:
    linear-gradient(#f25022 0 0) 0 0 / 13px 13px no-repeat,
    linear-gradient(#7fba00 0 0) 17px 0 / 13px 13px no-repeat,
    linear-gradient(#00a4ef 0 0) 0 17px / 13px 13px no-repeat,
    linear-gradient(#ffb900 0 0) 17px 17px / 13px 13px no-repeat;
}

.partner-logo-oracle {
  font-size: 26px;
  color: #ea1d25;
  letter-spacing: 0.01em;
}

.partner-logo-redhat {
  position: relative;
  padding-left: 32px;
  font-size: 21px;
  color: #18181b;
}

.partner-logo-redhat::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ff6b57 0 20%, #c51212 21% 100%);
}

.partner-logo-aws {
  position: relative;
  font-size: 24px;
  color: #111827;
}

.partner-logo-aws::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 10px;
  width: 40px;
  height: 10px;
  border-bottom: 3px solid #f59e0b;
  border-radius: 0 0 18px 18px;
}

.partner-logo-alibaba {
  font-size: 23px;
  color: #1f2937;
}

.partner-logo-tencent {
  font-size: 23px;
  color: #1492e6;
}

.partner-logo-huawei {
  font-size: 23px;
  color: #d81b1b;
}

.partner-logo-h3c {
  font-size: 31px;
  color: #ee232b;
}

.partner-logo-unis {
  font-size: 24px;
  color: #7b2cbf;
  letter-spacing: 0.03em;
}

.home-company-section {
  padding-top: 112px;
  padding-bottom: 84px;
  background: #ffffff;
}

.about-home-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-home-header .section-title::after {
  display: none;
}

.about-home-header .section-title h2 {
  font-size: 52px;
  line-height: 1.16;
}

.about-home-lead {
  margin: 18px auto 0;
  color: #44576b;
  font-size: 20px;
  line-height: 1.8;
}

.about-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 46px;
  align-items: center;
}

.about-home-visual {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 26px 56px rgba(19, 37, 62, 0.14);
}

.about-home-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-home-copy h3 {
  margin: 0 0 18px;
  color: #16263a;
  font-size: 34px;
  line-height: 1.25;
}

.about-home-narrative {
  display: grid;
  gap: 16px;
}

.about-home-narrative p {
  margin: 0;
  color: #425468;
  font-size: 17px;
  line-height: 1.95;
}

.about-home-narrative ul {
  margin: 0;
  padding-left: 1.2em;
  color: #425468;
  font-size: 17px;
  line-height: 1.9;
}

.about-home-narrative li + li {
  margin-top: 8px;
}

.about-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 192px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 26px;
  color: #ffffff;
  text-decoration: none;
  border-top: 1px solid rgba(214, 31, 53, 0.34);
  border-bottom: 1px solid rgba(214, 31, 53, 0.34);
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(180deg, #e1243e 0%, #d61f35 100%) left center / 100% 100% no-repeat,
    #d61f35;
  box-shadow: 0 12px 26px rgba(214, 31, 53, 0.14);
  transition: background-size 320ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.about-home-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(214, 31, 53, 0.24);
}

.about-home-link::after {
  content: "\2192";
  margin-left: 0;
  font-size: 22px;
  line-height: 1;
}

.coverage-section {
  padding-top: 96px;
  padding-bottom: 40px;
  background: #f5f7fa;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.coverage-map-panel {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
}

.coverage-map-canvas {
  position: relative;
  overflow: hidden;
}

.coverage-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-marker {
  --marker-size: 12px;
  position: absolute;
  width: var(--marker-size);
  height: var(--marker-size);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.coverage-marker-hangzhou {
  left: 84%;
  top: 67%;
}

.coverage-marker-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: var(--marker-size);
  height: var(--marker-size);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ff9a9a 0 18%, #f03434 19% 42%, #c70000 43% 100%);
  transform: translate(-50%, -50%);
}

.coverage-marker-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: calc(var(--marker-size) + 6px);
  height: calc(var(--marker-size) + 6px);
  border-radius: 50%;
  border: 1px solid rgba(215, 0, 0, 0.58);
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  animation: coveragePulse 4.4s ease-out infinite;
}

.coverage-marker-ring-mid {
  animation-delay: 1.46s;
}

.coverage-marker-ring-inner {
  animation-delay: 2.92s;
}

@keyframes coveragePulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }

  12% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(1.8);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-marker-ring {
    animation: none;
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(1.28);
  }
}

.coverage-copy .section-title h2 {
  font-size: 34px;
  line-height: 1.2;
}

.coverage-copy .section-description {
  margin-top: 10px;
  max-width: 520px;
}

.coverage-list-title {
  margin-top: 26px;
  margin-bottom: 14px;
  color: #4f6377;
  font-size: 15px;
}

.coverage-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px 24px;
}

.coverage-city-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-city-grid li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 16px;
  color: #53687c;
  font-size: 15px;
}

.coverage-city-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #ef4f4f;
  background: #ffffff;
}

.coverage-city-grid li.is-active::before {
  background: #d11c1c;
  border-color: #d11c1c;
}

.about-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr) 160px;
  gap: 34px;
  align-items: stretch;
  margin-top: 34px;
}

.about-visual {
  min-height: 350px;
  overflow: hidden;
  background: #e7edf3;
  border: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy-panel {
  padding: 26px 14px 14px 4px;
}

.about-copy-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.about-copy-accent {
  width: 40px;
  height: 2px;
  background: #d61f1f;
  flex-shrink: 0;
}

.about-copy-head h3 {
  margin: 0;
  color: #243a53;
  font-size: 18px;
  line-height: 1.6;
}

.about-highlights {
  margin: 0;
  padding-left: 20px;
  color: #495f75;
  font-size: 15px;
  line-height: 1.9;
}

.about-highlights li {
  margin-bottom: 8px;
}

.about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: #2c3f52;
  text-decoration: none;
  font-size: 15px;
}

.about-more-link::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.about-pillars {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-left: 1px solid rgba(157, 173, 188, 0.28);
}

.about-pillar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0 18px 18px;
  border-bottom: 1px solid rgba(157, 173, 188, 0.22);
}

.about-pillar:last-child {
  border-bottom: 0;
}

.about-pillar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 72px;
  margin-bottom: 10px;
  color: #ffffff;
  background: #d70000;
  font-size: 30px;
  font-weight: 700;
}

.about-pillar span,
.about-pillar p {
  margin: 0;
  color: #445669;
  text-align: right;
}

.about-pillar span {
  font-size: 24px;
  font-weight: 700;
}

.about-pillar p {
  font-size: 14px;
  line-height: 1.7;
}

.about-advantage-band {
  margin-top: 74px;
}

.about-advantage-title {
  margin-bottom: 34px;
}

.about-advantage-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(160, 184, 205, 0.18);
  box-shadow: var(--shadow-card);
}

.about-advantage-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 210px;
  padding: 44px 40px;
}

.about-advantage-card + .about-advantage-card {
  border-left: 1px solid rgba(160, 184, 205, 0.18);
}

.about-advantage-pattern {
  position: absolute;
  top: -34px;
  width: 160px;
  height: 74px;
  opacity: 0.85;
  background-size: 12px 12px;
  background-image: repeating-linear-gradient(110deg, currentColor 0 1px, transparent 1px 12px);
}

.about-advantage-pattern.is-red {
  left: 220px;
  color: rgba(221, 32, 32, 0.9);
}

.about-advantage-pattern.is-gray {
  left: 220px;
  color: rgba(140, 148, 158, 0.9);
}

.about-advantage-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #d70000;
}

.about-advantage-icon-lock::before,
.about-advantage-icon-lock::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.about-advantage-icon-lock::before {
  top: 20px;
  width: 34px;
  height: 26px;
  border: 4px solid #fff;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.about-advantage-icon-lock::after {
  top: 42px;
  width: 42px;
  height: 30px;
  border: 4px solid #fff;
  border-radius: 8px;
}

.about-advantage-copy strong,
.about-advantage-copy span {
  display: block;
  color: #253a52;
}

.about-advantage-copy strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.about-advantage-copy span {
  font-size: 16px;
}

.about-advantage-logo {
  color: #2b79b6;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.home-solution-section {
  padding-top: 96px;
  padding-bottom: 80px;
  background: #ffffff;
}

.home-product-section {
  padding-top: 92px;
  padding-bottom: 90px;
  background: #f5f7fa;
}

.home-title-block .section-kicker {
  color: #243a53;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.home-title-block .section-kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 12px auto 0;
  background: #d92525;
}

.home-title-block h2 {
  font-size: 28px;
}

.home-title-block p {
  font-size: 16px;
}

.home-solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: start;
}

.home-solution-card,
.home-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-solution-card {
  min-height: 280px;
  padding: 32px 24px 28px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(152, 178, 201, 0.18);
  overflow: hidden;
}

.home-solution-card:hover,
.home-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(191, 63, 78, 0.12);
}

.home-solution-card:hover {
  border-color: rgba(191, 63, 78, 0.25);
}

.home-solution-card:nth-child(2),
.home-solution-card:nth-child(4) {
  margin-top: 30px;
}

.home-solution-card::before,
.home-solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-solution-card > * {
  position: relative;
  z-index: 1;
}

.home-solution-card::before {
  z-index: 0;
  background: linear-gradient(90deg, #d95a6a, #bf3f4e);
  opacity: 0;
  transition: opacity 300ms ease;
}

.home-solution-card::after {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d95a6a, #bf3f4e);
  opacity: 0;
  transition: opacity 300ms ease;
}

.home-solution-card:hover::before {
  opacity: 0;
}

.home-solution-card:hover {
  box-shadow: 0 12px 28px rgba(191, 63, 78, 0.12);
}

.home-solution-card:hover::after {
  opacity: 1;
}

.home-solution-icon,
.home-product-icon {
  position: relative;
  display: block;
  color: #7c8187;
}

.home-solution-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
}

.home-product-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.home-solution-divider,
.home-product-divider {
  display: block;
  width: 56px;
  height: 1px;
  margin-bottom: 20px;
  background: rgba(126, 132, 139, 0.36);
}

.home-solution-card strong,
.home-product-card strong {
  color: #000000;
  font-size: 18px;
  line-height: 1.4;
}

.home-solution-card span,
.home-product-card span {
  color: #6f7f90;
  font-style: normal;
  line-height: 1.9;
}

.home-solution-card:hover strong,
.home-solution-card:hover span {
  color: inherit;
}

.home-solution-card:hover .home-solution-icon {
  color: #bf3f4e;
}

.home-solution-card:hover .home-solution-divider {
  background: linear-gradient(90deg, #d95a6a, #bf3f4e);
  opacity: 0.6;
}

.home-solution-card strong {
  margin-bottom: 14px;
}

.home-product-card strong {
  margin-bottom: 14px;
}

.home-section-link {
  margin-top: 34px;
  text-align: center;
}

.home-section-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 192px;
  min-height: 56px;
  padding: 0 26px;
  color: #38495a;
  text-decoration: none;
  border: 1px solid rgba(80, 99, 118, 0.32);
  background: rgba(255, 255, 255, 0.84);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home-section-link a::after {
  content: "鈫?;
}

.home-section-link a::after {
  content: "鈫?;
  font-size: 22px;
  line-height: 1;
}

.home-section-link a:hover {
  color: #ffffff;
  border-color: rgba(201, 13, 13, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 13, 13, 0.18);
}

.home-section-link a::after {
  content: "\2192";
  font-size: 22px;
  line-height: 1;
}

.home-section-link a {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(80, 99, 118, 0.32);
  border-bottom: 1px solid rgba(80, 99, 118, 0.32);
  border-left: 0;
  border-right: 0;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home-section-link a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f6fbfe;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 500ms ease;
}

.home-section-link a::after {
  content: "\2192";
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1;
}

.home-section-link a > * {
  position: relative;
  z-index: 1;
}

.home-section-link a:hover {
  color: #ffffff;
  border-top-color: rgba(201, 13, 13, 0.9);
  border-bottom-color: rgba(201, 13, 13, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 13, 13, 0.18);
}

.home-section-link a:hover::before {
  transform: scaleX(1);
}

.home-section-link a {
  isolation: isolate;
  background:
    linear-gradient(180deg, #db2222 0%, #c90d0d 100%) left center / 0% 100% no-repeat,
    rgba(255, 255, 255, 0.84);
  transition: background-size 500ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home-section-link a::before {
  display: none;
}

.home-section-link a:hover {
  background-size: 100% 100%, auto;
}

/* Final override for CTA readability and brand-consistent red hover state */
.home-section-link a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  border-top: 1px solid rgba(214, 31, 53, 0.34);
  border-bottom: 1px solid rgba(214, 31, 53, 0.34);
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(180deg, #e1243e 0%, #d61f35 100%) left center / 100% 100% no-repeat,
    #d61f35;
  box-shadow: 0 12px 26px rgba(214, 31, 53, 0.14);
  transition: background-size 320ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home-section-link a::before {
  display: none !important;
  content: none !important;
}

.home-section-link a::after {
  content: "\2192" !important;
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1;
}

.home-section-link a > * {
  position: relative;
  z-index: 1;
}

.home-section-link a:hover {
  color: #ffffff;
  border-top-color: rgba(214, 31, 53, 0.92);
  border-bottom-color: rgba(214, 31, 53, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(214, 31, 53, 0.24);
  background-size: 100% 100%, auto;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: transparent;
  border: 0;
}

.home-product-card {
  min-height: 280px;
  padding: 40px 26px 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(152, 178, 201, 0.18);
  position: relative;
  overflow: hidden;
}

.home-product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e1243e, #d61f35);
  opacity: 0.6;
  transition: height 300ms ease, opacity 300ms ease;
}

.home-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(191, 63, 78, 0.12);
}

.home-product-card:hover::after {
  height: 4px;
  opacity: 1;
}

@media (min-width: 1281px) {
  .home-solution-section {
    padding-top: 136px;
    padding-bottom: 114px;
  }

  .home-product-section {
    padding-top: 132px;
    padding-bottom: 128px;
  }

  .coverage-section {
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .home-company-section {
    padding-top: 132px;
  }

  .home-title-block .section-kicker {
    font-size: 24px;
  }

  .home-title-block h2 {
    font-size: 42px;
  }

  .home-title-block p {
    font-size: 20px;
  }

  .home-solution-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 42px;
  }

  .home-solution-card {
    min-height: 340px;
    padding: 44px 36px 40px;
  }

  .home-solution-card strong,
  .home-product-card strong {
    font-size: 28px;
  }

  .home-solution-card span,
  .home-product-card span {
    font-size: 19px;
  }

  .home-product-grid {
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 32px;
  }

  .home-product-card {
    min-height: 340px;
    padding: 56px 36px 44px;
  }

  .home-solution-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 30px;
  }

  .home-product-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 30px;
  }

  .home-solution-divider,
  .home-product-divider {
    width: 70px;
    margin-bottom: 24px;
  }

  .coverage-layout {
    grid-template-columns: minmax(0, 1.52fr) minmax(360px, 1fr);
    gap: 72px;
  }

  .coverage-copy .section-title h2 {
    font-size: 40px;
  }

  .coverage-copy .section-description {
    font-size: 18px;
  }

  .coverage-list-title {
    margin-top: 30px;
    margin-bottom: 16px;
    font-size: 17px;
  }

  .coverage-city-grid {
    gap: 8px 28px;
  }

  .coverage-city-grid li {
    font-size: 17px;
  }

  .company-layout {
    gap: 38px;
  }

  .company-layout .section-description {
    font-size: 20px;
  }

  .highlight-panel {
    padding: 34px;
  }

  .highlight-panel li {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1281px) and (max-width: 1599px) {
  .home-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .home-product-card {
    padding: 48px 24px 40px;
  }

  .home-product-card strong {
    font-size: 24px;
  }

  .home-product-card span {
    font-size: 16px;
  }
}

.home-solution-icon::before,
.home-solution-icon::after,
.home-product-icon::before,
.home-product-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

/* Solution icons - SVG backgrounds matching infocore.cn style */
.home-solution-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-solution-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.home-product-icon-img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.home-solution-icon-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='18' width='28' height='22' rx='2'/%3E%3Crect x='14' y='10' width='28' height='22' rx='2'/%3E%3Cline x1='20' y1='17' x2='36' y2='17'/%3E%3Cline x1='20' y1='22' x2='32' y2='22'/%3E%3C/svg%3E");
}

.home-solution-icon-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 30c-3.3 0-6-2.7-6-6 0-2.8 1.9-5.1 4.5-5.7C13.3 13.8 17.8 10 23 10c6.6 0 12 5.4 12 12 0 .3 0 .7-.1 1h.1c3.3 0 6 2.7 6 6s-2.7 6-6 6H12z'/%3E%3Crect x='19' y='24' width='10' height='10' rx='1'/%3E%3Cpath d='M22 24v-3a3 3 0 0 1 6 0v3'/%3E%3C/svg%3E");
}

.home-solution-icon-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='14' r='3'/%3E%3Cline x1='20' y1='14' x2='38' y2='14'/%3E%3Ccircle cx='12' cy='24' r='3'/%3E%3Cline x1='20' y1='24' x2='38' y2='24'/%3E%3Ccircle cx='12' cy='34' r='3'/%3E%3Cline x1='20' y1='34' x2='38' y2='34'/%3E%3C/svg%3E");
}

.home-solution-icon-4 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='3'/%3E%3Cpath d='M16 24a8 8 0 0 1 16 0'/%3E%3Cpath d='M10 24a14 14 0 0 1 28 0'/%3E%3Cpath d='M4 24a20 20 0 0 1 40 0'/%3E%3C/svg%3E");
}

.home-solution-icon-5 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='8' x2='12' y2='40'/%3E%3Cline x1='24' y1='8' x2='24' y2='40'/%3E%3Cline x1='36' y1='8' x2='36' y2='40'/%3E%3Ccircle cx='12' cy='18' r='4' fill='%23475569' stroke='%23475569'/%3E%3Ccircle cx='24' cy='30' r='4' fill='%23475569' stroke='%23475569'/%3E%3Ccircle cx='36' cy='22' r='4' fill='%23475569' stroke='%23475569'/%3E%3C/svg%3E");
}

.home-product-icon-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='16' width='28' height='22' rx='4'/%3E%3Ccircle cx='20' cy='26' r='3'/%3E%3Ccircle cx='32' cy='26' r='3'/%3E%3Cline x1='24' y1='8' x2='24' y2='16'/%3E%3Ccircle cx='24' cy='8' r='2.5' fill='%23475569'/%3E%3Cline x1='16' y1='34' x2='32' y2='34'/%3E%3C/svg%3E");
}

.home-product-icon-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='12' r='5'/%3E%3Ccircle cx='12' cy='36' r='5'/%3E%3Ccircle cx='36' cy='36' r='5'/%3E%3Cline x1='22' y1='17' x2='14' y2='31'/%3E%3Cline x1='26' y1='17' x2='34' y2='31'/%3E%3Cline x1='17' y1='36' x2='31' y2='36'/%3E%3C/svg%3E");
}

.home-product-icon-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='8' width='30' height='24' rx='3'/%3E%3Cline x1='6' y1='14' x2='36' y2='14'/%3E%3Ccircle cx='12' cy='11' r='1' fill='%23475569'/%3E%3Ccircle cx='16' cy='11' r='1' fill='%23475569'/%3E%3Ccircle cx='20' cy='11' r='1' fill='%23475569'/%3E%3Cpath d='M36 28a10 10 0 0 1-10 10'/%3E%3Cpolyline points='36 33 36 28 31 28'/%3E%3C/svg%3E");
}

.home-product-icon-4 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 28a14 14 0 0 1 28 0'/%3E%3Cpath d='M10 28c0 4.4-6.3 8-14 8 7.7 0 14-3.6 14-8'/%3E%3Cpath d='M38 28c0 4.4 6.3 8 14 8-7.7 0-14-3.6-14-8'/%3E%3Cpath d='M18 28v-8a6 6 0 0 1 12 0v8'/%3E%3Cline x1='24' y1='32' x2='24' y2='36'/%3E%3C/svg%3E");
}

.highlight-panel {
  position: relative;
  padding: 28px;
  background: #f6fbfe;
  border: 1px solid rgba(70, 121, 163, 0.14);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
}

.panel-caption {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-panel ul {
  margin: 0;
  padding-left: 18px;
}

.highlight-panel li {
  margin-bottom: 10px;
  color: #4b5d70;
}

.feature-stack {
  display: grid;
  gap: 22px;
}

.feature-card-large,
.feature-card-row,
.product-hero,
.product-list-card,
.column-card,
.industry-card,
.article-page-card {
  background: var(--light-panel);
  border: 1px solid rgba(60, 104, 145, 0.12);
  border-radius: var(--radius-lg);
}

.section-dark .feature-card-large,
.section-dark .feature-card-row {
  background: #f6fbfe;
  border-color: rgba(194, 224, 244, 0.18);
  backdrop-filter: blur(12px);
}

.feature-card-large {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 340px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-copy,
.product-hero-copy {
  padding: 34px 32px;
}

.feature-copy strong,
.product-hero-copy strong {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.feature-copy h3,
.product-hero h3,
.product-list-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.3;
}

.feature-copy p,
.product-hero p,
.product-list-card p,
.column-card p,
.industry-card span {
  margin: 0;
  color: var(--light-muted);
}

.feature-visual,
.product-hero-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(214, 243, 253, 0.58), transparent 24%),
    linear-gradient(135deg, #7bbce2 0%, #bddff2 100%);
}

.feature-visual.is-photo,
.product-hero-visual.is-photo {
  background: #d9e8f3;
}

.feature-visual.is-photo img,
.product-hero-visual.is-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visual::before,
.product-hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.feature-visual.is-photo::before,
.product-hero-visual.is-photo::before {
  inset: 0;
  border: 0;
  background: #f6fbfe;
}

.visual-ring,
.visual-grid {
  position: absolute;
}

.visual-ring {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ring-a {
  top: 30px;
  right: 36px;
  width: 160px;
  height: 160px;
}

.ring-b {
  bottom: 28px;
  left: 44px;
  width: 92px;
  height: 92px;
}

.ring-c {
  top: 26px;
  right: 24px;
  width: 130px;
  height: 130px;
}

.visual-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 100%);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card-row,
.product-list-card,
.column-card,
.industry-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.feature-card-row:hover,
.product-list-card:hover,
.column-card:hover,
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(22, 63, 103, 0.14);
  border-color: rgba(98, 155, 205, 0.26);
}

.feature-card-row {
  padding: 26px 24px;
}

.feature-card-row strong,
.product-list-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.product-hero {
  display: grid;
  grid-template-rows: 1fr 210px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-list-card {
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.column-card {
  position: relative;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(15, 41, 72, 0.06);
}

.column-card.is-link {
  overflow: hidden;
}

.column-card.is-link::after,
.advantage-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 183, 255, 0.18), transparent 72%);
}

.product-list-card::before,
.column-card::before,
.industry-card::after {
  content: "";
  position: absolute;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.product-list-card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f6fbfe;
  opacity: 0;
  z-index: 0;
}

.column-card::before {
  top: 28px;
  left: 24px;
  width: 78px;
  height: 3px;
  background: #d61f1f;
  transform: scaleX(0.72);
  transform-origin: left center;
  opacity: 0.92;
}

.industry-card::after {
  inset: 0;
  background: #f6fbfe;
  opacity: 0;
  pointer-events: none;
}

.product-list-card > *,
.column-card > *,
.industry-card > * {
  position: relative;
  z-index: 1;
}

.product-list-card:hover::before {
  height: 58%;
  opacity: 1;
}

.product-list-card:hover h3,
.product-list-card:hover span {
  color: #ffffff;
}

.product-list-card:hover p {
  color: rgba(255, 255, 255, 0.86);
}

.column-card:hover::before {
  transform: scaleX(1);
}

.column-card:hover h3,
.industry-card:hover strong {
  color: #c91f1f;
}

.industry-card:hover::before {
  background: #f6fbfe;
}

.industry-card:hover::after {
  opacity: 1;
}

.card-index {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(31, 80, 122, 0.34);
  font-size: 26px;
  font-weight: 700;
}

.column-card h3,
.industry-card strong {
  margin: 0 0 12px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  padding: 26px 22px;
  box-shadow: 0 10px 28px rgba(15, 41, 72, 0.06);
}

.industry-card strong {
  display: block;
  font-size: 20px;
}

.industry-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 14px;
  background: #f6fbfe;
}

.footer-panel {
  padding: 58px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(20, 20, 20, 1)),
    radial-gradient(circle at 18% 0%, rgba(138, 24, 24, 0.18), transparent 26%);
}

.footer-panel .container {
  width: min(76vw, calc(100vw - 48px));
  max-width: none;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(180px, 0.92fr) minmax(180px, 0.92fr) minmax(280px, 1.2fr) minmax(180px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d20f0f, rgba(210, 15, 15, 0.24));
}

.footer-column-links-list {
  display: grid;
  gap: 12px;
}

.footer-column-links-list a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.footer-column-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-company-card {
  display: grid;
  gap: 10px;
}

.footer-company-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.footer-company-details {
  display: grid;
  gap: 6px;
  padding-left: 0;
}

.footer-company-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.footer-company-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-company-subtitle {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.footer-qr-card {
  display: grid;
  place-items: center;
  width: 136px;
  min-height: 136px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.footer-qr-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #ffffff;
}

.footer-qr-placeholder {
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer-copy-row .site-footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer-copy-right {
  text-align: right;
}

.site-footer-copy-right a {
  color: inherit;
  text-decoration: none;
}

.site-footer-copy-right a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer-row-bottom {
  margin-top: 10px;
}

.site-footer-company,
.site-footer-address,
.site-footer-copy,
.site-footer-links {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer-company,
.site-footer-address {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer-links,
.site-footer-copy {
  color: rgba(255, 255, 255, 0.74);
  white-space: nowrap;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer-links a {
  color: inherit;
  text-decoration: none;
}

.site-footer-copy a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}

.site-footer-links a:hover {
  color: #ffffff;
}

.site-footer-copy a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

.site-footer-divider {
  color: rgba(255, 255, 255, 0.28);
}

.article-hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(125, 202, 240, 0.22), transparent 18%),
    linear-gradient(118deg, #ebf4fa 0%, #dfeef8 48%, #d2e6f4 100%);
  min-height: 420px;
}

.article-hero-layout {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.article-hero .carousel-overlay {
  min-height: 420px;
  padding-top: 110px;
  padding-bottom: 20px;
}

.article-hero .carousel-content {
  max-width: 860px;
  min-height: 100%;
}

body .article-hero .hero-description {
  color: #5d7488;
  font-style: italic;
}

.article-meta-line {
  margin: 22px 0 0;
  color: #70869a;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.article-page-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Article zoom wrapper - only exists when JS activates zoom (viewport ≤ 1080px) */
.article-zoom-wrapper {
  overflow: visible;
  width: 100%;
  height: 0;
}

.article-page-section .container {
  width: min(70vw, calc(100vw - 48px));
  max-width: none;
  overflow: hidden;
}

.article-side-nav {
  min-width: 0;
  align-self: start;
  position: sticky;
  top: 112px;
}

.article-side-nav-inner,
.article-side-card {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(154, 187, 214, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(29, 78, 118, 0.08);
  backdrop-filter: blur(14px);
}

.article-side-nav-title,
.article-side-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.article-side-nav-list,
.article-side-links {
  display: grid;
  gap: 10px;
}

.article-side-nav-empty {
  padding: 12px 14px;
  color: #6e8598;
  line-height: 1.6;
  background: rgba(240, 247, 252, 0.72);
  border: 1px dashed rgba(154, 187, 214, 0.3);
  border-radius: 14px;
}

.article-side-nav-link {
  display: block;
  padding: 12px 14px;
  color: #36556f;
  text-decoration: none;
  line-height: 1.55;
  background: rgba(240, 247, 252, 0.92);
  border: 1px solid rgba(154, 187, 214, 0.16);
  border-radius: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.article-side-nav-link:hover {
  transform: translateX(3px);
  color: #18344d;
  background: rgba(227, 241, 250, 0.98);
  border-color: rgba(95, 190, 242, 0.34);
}

.article-side-nav-link.is-active {
  color: #ffffff;
  background: #f6fbfe;
  border-color: rgba(43, 145, 214, 0.44);
  box-shadow: 0 12px 24px rgba(73, 157, 215, 0.18);
}

.article-page-section {
  background: transparent;
  padding: 8px 0 86px;
}

.article-page-card {
  display: block;
  flex: 1 1 100%;
  min-width: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 34px 0;
}

.page-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 56px;
  background: #fff;
  border-radius: 8px;
}

.page-card .article-page-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.page-content-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a2b3c;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.page-news-shell {
  display: block;
  width: min(1160px, calc(100vw - 48px));
  max-width: none;
  overflow: visible;
}

.article-page-section .container.page-news-shell {
  width: min(1160px, calc(100vw - 48px));
  overflow: visible;
}

.page-news-shell .page-card {
  max-width: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.page-news-shell .article-page-content {
  font-size: 16px;
  line-height: 1.7;
}

.company-news-page {
  display: grid;
  gap: 30px;
}

.company-news-list {
  display: grid;
  gap: 10px;
}

.company-news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.company-news-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  color: #315a7b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(126, 158, 188, 0.24);
  border-radius: 6px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.company-news-page-link:hover {
  color: var(--brand);
  background: #ffffff;
  border-color: rgba(0, 119, 190, 0.34);
  box-shadow: 0 8px 18px rgba(31, 56, 110, 0.08);
}

.company-news-page-link.is-current {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 18px rgba(15, 117, 189, 0.18);
}

.company-news-page-link.is-disabled {
  color: #9aa9b6;
  background: rgba(246, 249, 252, 0.88);
  border-color: rgba(126, 158, 188, 0.16);
  cursor: not-allowed;
}

.company-news-page-control {
  min-width: 66px;
}

.company-news-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(126, 158, 188, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 56, 110, 0.05);
  overflow: hidden;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.company-news-list-item:hover {
  background: #ffffff;
  border-color: rgba(0, 119, 190, 0.28);
  box-shadow: 0 12px 26px rgba(31, 56, 110, 0.08);
}

.company-news-list-main {
  min-width: 0;
}

.company-news-list-main h3 {
  margin: 0;
  color: #16334c;
  font-size: 22px;
  line-height: 1.34;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.company-news-list-item:hover h3 {
  color: var(--brand);
}

.company-news-list-main p {
  margin: 7px 0 0;
  color: #5c7185;
  font-size: 15px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.company-news-list-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: #6a7e90;
  white-space: nowrap;
}

.company-news-list-date {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.company-news-list-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
}

.company-news-list-link::after {
  content: "->";
  font-size: 17px;
  transition: transform 180ms ease;
}

.company-news-list-item:hover .company-news-list-link::after {
  transform: none;
}

.company-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.company-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(154, 187, 214, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(31, 56, 110, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.company-news-card.is-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  min-height: 336px;
}

.company-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(95, 190, 242, 0.28);
  box-shadow: 0 26px 48px rgba(31, 56, 110, 0.14);
}

.company-news-card-media {
  flex: 0 0 196px;
  height: 196px;
  min-height: 196px;
  margin-top: 0;
  background:
    linear-gradient(135deg, rgba(232, 241, 248, 0.98) 0%, rgba(202, 224, 238, 0.98) 100%);
}

.company-news-card-media.has-cover {
  background: #d8e7f3;
}

.company-news-card.is-featured .company-news-card-media {
  height: 100%;
  min-height: 336px;
}

.company-news-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 196px;
  object-fit: cover;
}

.company-news-card.is-featured .company-news-card-media img {
  min-height: 336px;
}

.company-news-page .company-news-card-media img {
  margin: 0;
}

.company-news-card-placeholder {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  min-height: 196px;
  padding: 24px 26px;
  color: #18405e;
}

.company-news-card-index {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.company-news-card-placeholder-text {
  color: rgba(24, 64, 94, 0.72);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.company-news-card-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: minmax(48px, auto) minmax(68px, auto) auto;
  align-content: start;
  gap: 8px;
  padding: 10px 18px 18px;
  min-height: 0;
  background: #ffffff;
  border-top: 1px solid rgba(154, 187, 214, 0.12);
}

.company-news-card.is-featured .company-news-card-body {
  grid-template-rows: auto minmax(82px, auto) minmax(98px, auto) auto;
  gap: 12px;
  padding: 28px 28px 24px;
  border-top: 0;
  border-left: 1px solid rgba(154, 187, 214, 0.12);
}

.company-news-card-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-news-card h3 {
  margin: 0;
  margin-top: 0;
  color: #16334c;
  font-size: 22px;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.company-news-card.is-featured h3 {
  font-size: 30px;
  line-height: 1.24;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.company-news-page .company-news-card h3 {
  margin: 0;
}

.company-news-card p {
  margin: 0;
  color: #5c7185;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.company-news-card.is-featured p {
  color: #486378;
  font-size: 16px;
  line-height: 1.7;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.company-news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.company-news-card-date {
  color: #6a7e90;
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.company-news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}

.company-news-card-link::after {
  content: "->";
  font-size: 17px;
  transition: transform 180ms ease;
}

.company-news-card:hover .company-news-card-link::after {
  transform: translateX(4px);
}

.company-news-empty {
  grid-column: 1 / -1;
  padding: 28px;
  color: #5c7185;
  text-align: center;
  background: rgba(246, 251, 254, 0.92);
  border: 1px dashed rgba(154, 187, 214, 0.28);
  border-radius: 20px;
}

.page-hero .carousel-content {
  max-width: 860px;
}

.page-hero .hero-description {
  max-width: 760px;
  min-height: 3.6em;
}

.article-page-content {
  display: block;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  color: var(--light-text);
  font-size: 16px;
  line-height: 1.9;
}

.article-page-content > :first-child {
  margin-top: 0;
}

.article-page-content > :last-child {
  margin-bottom: 0;
}

.article-page-content h2,
.article-page-content h3 {
  margin: 32px 0 14px;
  line-height: 1.35;
}

.article-page-content p,
.article-page-content ul,
.article-page-content ol,
.article-page-content blockquote {
  margin: 0 0 18px;
}

.article-page-content a {
  color: #0f75bd;
}

.article-page-content .company-news-list-main h3 {
  margin: 0;
  line-height: 1.34;
}

.article-page-content .company-news-list-main p {
  margin: 7px 0 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-page-content .section h2,
.article-page-content .section h3 {
  margin-top: 0;
}

.article-page-content .section p {
  margin-bottom: 0;
}

.article-page-content .section .sub {
  margin-bottom: 0;
}

.article-page-content .wrap {
  margin: 0 auto;
}

.article-page-content .section .card p {
  margin-bottom: 0;
  margin-right: 0;
}

.article-page-content .section .card-grid {
  margin-bottom: 0;
}

.article-page-content .section .flow-row {
  margin-bottom: 0;
}

.article-page-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px 0;
}

.article-page-content .company-news-card-media img {
  width: 100%;
  height: 100%;
  min-height: 196px;
  margin: 0;
  object-fit: cover;
}

.article-page-content .company-news-card.is-featured .company-news-card-media img {
  min-height: 336px;
}

.article-page-content .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.article-page-content img.image-align-left {
  margin-right: auto;
}

.article-page-content img.image-align-center {
  margin-left: auto;
  margin-right: auto;
}

.article-page-content [style*="text-align: center"] img,
.article-page-content [style*="text-align:center"] img,
.article-page-content [align="center"] img {
  margin-left: auto;
  margin-right: auto;
}

.article-page-content img.image-align-right {
  margin-left: auto;
}

.article-page-content img.image-wrap-none {
  display: block;
  float: none;
  clear: both;
}

.article-page-content img.image-wrap-left {
  float: left;
  clear: none;
  margin: 8px 24px 16px 0;
  max-width: min(48%, 420px);
}

.article-page-content.wechat-import-content {
  color: #24405a;
  overflow-wrap: anywhere;
}

.article-page-content.wechat-import-content > section:first-child {
  margin-top: 0 !important;
}

.article-page-content.wechat-import-content section {
  max-width: 100%;
  box-sizing: border-box;
}

.article-page-content.wechat-import-content img {
  margin-top: 12px;
  margin-bottom: 12px;
}

.article-not-found {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(69, 116, 154, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(31, 74, 105, 0.08);
}

.article-not-found h2 {
  margin: 0 0 14px;
  color: #1f5f9d;
  font-size: 28px;
  line-height: 1.35;
}

.article-not-found p {
  margin: 0;
  color: #52697c;
  font-size: 16px;
  line-height: 1.8;
}

.article-not-found-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 28px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  background: #1f75bd;
  border-radius: 6px;
}

.article-not-found-link:hover {
  background: #165e9d;
}

.article-page-content .news-clean-article {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 36px 48px 46px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(69, 116, 154, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 74, 105, 0.08);
  color: #24405a;
}

.article-page-content .news-clean-article.is-layout-balanced {
  display: flex;
  flex-direction: column;
  min-height: clamp(520px, 42vw, 620px);
}

.article-page-content .news-clean-article.is-layout-balanced > .news-clean-tagline:last-child {
  margin-top: auto;
  padding-top: 34px;
}

.article-page-content .news-clean-article.is-layout-compact {
  padding: 28px 40px 34px;
}

.article-page-content .news-clean-hero {
  margin: 0 0 28px;
  overflow: hidden;
  background: #f6f9fc;
  border: 1px solid rgba(111, 159, 195, 0.14);
  border-radius: 8px;
}

.article-page-content .news-clean-hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.article-page-content .news-clean-image {
  margin: 26px auto;
  text-align: center;
}

.article-page-content .news-clean-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
}

.article-page-content .news-clean-image--wide img {
  width: auto;
  max-width: min(100%, 760px);
}

.article-page-content .news-clean-image--diagram img {
  width: auto;
  max-width: min(100%, 420px);
}

.article-page-content .news-clean-image--poster img {
  width: auto;
  max-width: min(100%, 480px);
}

.article-page-content .news-clean-kicker {
  margin: 0 0 18px;
  color: #1f5f9d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.article-page-content .news-clean-lead {
  margin: 0 0 30px;
  padding: 18px 22px;
  color: #38536a;
  font-size: 16px;
  line-height: 1.85;
  background: #f7fbff;
  border-left: 4px solid #2a75c0;
  border-radius: 6px;
}

.article-page-content .news-clean-section {
  margin: 0 0 28px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(91, 125, 152, 0.16);
}

.article-page-content .news-clean-section h2 {
  margin: 0 0 12px;
  color: #1f5f9d;
  font-size: 22px;
  line-height: 1.4;
}

.article-page-content .news-clean-section p {
  margin: 0 0 12px;
  color: #3d5468;
  font-size: 16px;
  line-height: 1.85;
}

.article-page-content .news-clean-section p:last-child {
  margin-bottom: 0;
}

.article-page-content .news-clean-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.article-page-content .news-clean-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 18px;
  color: #3d5468;
  font-size: 16px;
  line-height: 1.75;
}

.article-page-content .news-clean-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #2a75c0;
  border-radius: 999px;
}

.article-page-content .news-clean-list strong {
  color: #24405a;
}

.article-page-content .news-clean-qr {
  margin: 34px auto 14px;
  text-align: center;
}

.article-page-content .news-clean-qr img {
  width: min(180px, 44vw);
  margin: 0 auto;
}

.article-page-content .news-clean-tagline {
  margin: 0;
  color: #395b76;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.article-page-content img.image-wrap-right {
  float: right;
  clear: none;
  margin: 8px 0 16px 24px;
  max-width: min(48%, 420px);
}

.article-page-content::after {
  content: "";
  display: block;
  clear: both;
}

/* Join Us page sections */
.article-section {
  margin-bottom: 60px;
}

.article-section-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.article-section-subtitle {
  font-size: 14px;
  color: var(--primary, #bf3f4e);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.article-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.article-section-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-section-content ol,
.article-section-content ul {
  padding-left: 20px;
  margin: 12px 0;
}

.article-section-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-section-content strong {
  color: var(--text);
  font-weight: 600;
}

.article-section-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}

.article-section-content p {
  margin: 8px 0;
}

/* Join Us Tabs - Material Design style */
.join-tab-group {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  background: #f1f3f5;
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}

.join-tab {
  padding: 10px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.join-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
}

.join-tab.active {
  color: #fff;
  background: var(--primary, #bf3f4e);
  box-shadow: 0 2px 8px rgba(191, 63, 78, 0.3);
}

.join-tab-content {
  display: none;
}

.join-tab-content.active {
  display: block;
}

/* Join Us Benefits Card */
.join-benefits-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.join-benefits-card ol {
  padding-left: 20px;
  margin: 0;
}

.join-benefits-card li {
  line-height: 1.8;
  margin-bottom: 6px;
}

.join-job-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.join-job-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--text);
}

.join-job-card p {
  margin: 0 0 8px;
  color: var(--text-secondary);
}

.join-job-card ol {
  padding-left: 20px;
  margin: 0;
}

.join-job-card li {
  line-height: 1.7;
}

/* Join Us Gallery Grid */
.join-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.join-gallery-grid li {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.join-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.join-gallery-grid li:hover img {
  transform: scale(1.05);
}

/* PPT Import Container - fixed A4 width for absolute positioning */
.pptx-import-container {
  position: relative;
  width: 21cm;
  min-height: 29.7cm;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.pptx-import-container img {
  max-width: 100%;
  height: auto;
}

.article-page-content .feature-card {
  display: inline-flex;
  flex-direction: column;
  vertical-align: top;
  width: min(100%, 320px);
  margin: 24px 36px 28px 0;
  padding: 0 26px 20px;
  background: #f6fbfe;
  border: 1px solid rgba(123, 151, 214, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(31, 56, 110, 0.08);
  overflow: hidden;
}

.article-page-content .feature-card-media {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: 180px;
  margin: 0 -26px 20px;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  background: #f6fbfe;
}

.article-page-content .feature-card h3 {
  margin: 0 0 14px;
  color: #101828;
  font-size: 18px;
  line-height: 1.3;
}

.article-page-content .feature-card p {
  margin: 0;
  color: #4f5f76;
  font-size: 15px;
  line-height: 1.9;
}

.solution-page-hero {
  min-height: 420px;
  background:
    linear-gradient(rgba(244, 249, 253, 0.88), rgba(234, 244, 250, 0.72)),
    radial-gradient(circle at 78% 20%, rgba(113, 199, 245, 0.22), transparent 18%),
    linear-gradient(120deg, #edf6fb 0%, #e1eef7 48%, #d7e9f5 100%);
}

.solution-page-overlay {
  min-height: 420px;
  padding-top: 118px;
  padding-bottom: 64px;
}

@keyframes driftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-18px, 14px, 0);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -18px, 0);
  }
}

@media (max-width: 1200px) {
  .topbar-inner {
    gap: 16px;
  }
  .nav-link {
    padding: 0 12px;
    font-size: 16px;
  }
  .topbar-contact {
    gap: 10px;
  }
}

/* Keep the longer English desktop navigation within the compact topbar. */
@media (min-width: 1081px) and (max-width: 1599px) {
  html[lang="en"] .topbar-inner {
    gap: 10px;
  }

  html[lang="en"] .nav {
    gap: 2px;
  }

  html[lang="en"] .nav-link {
    padding: 0 5px;
    font-size: 13px;
  }

  html[lang="en"] .nav-link.has-dropdown::after,
  html[lang="en"] .nav-item.has-dropdown > .nav-link::after,
  html[lang="en"] .nav-item > .nav-link[data-has-dropdown="true"]::after {
    width: 5px;
    height: 5px;
    margin-left: 4px;
  }

  html[lang="en"] .topbar-contact {
    gap: 6px;
  }

  html[lang="en"] .topbar-contact-info {
    gap: 6px;
    font-size: 12px;
  }

  html[lang="en"] .topbar-contact-info::before {
    font-size: 12px;
  }

  html[lang="en"] .topbar-lang-switch {
    width: 28px;
    height: 28px;
    margin-right: 0;
    font-size: 12px;
  }

  html[lang="en"] .topbar-contact-button {
    min-width: 0;
    height: 32px;
    padding: 0 11px;
    font-size: 13px;
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  html[lang="en"] .topbar-inner {
    gap: 6px;
  }

  html[lang="en"] .nav-link {
    padding: 0 3px;
  }

  html[lang="en"] .topbar-contact {
    gap: 4px;
  }
}

@media (max-width: 1080px) {
  :root {
    --carousel-media-scale: 1;
    --carousel-content-scale: var(--carousel-width-scale);
    --carousel-scale: var(--carousel-content-scale);
    --carousel-height: calc(828px * var(--carousel-content-scale));
  }

  .hero-layout,
  .company-layout,
  .column-grid,
  .home-solution-grid,
  .home-product-grid,
  .feature-card-large,
  .feature-card-grid,
  .product-showcase,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .article-side-nav {
    position: static;
  }

  .page-news-shell {
    width: calc(100% - 32px);
  }

  .article-page-section .container.page-news-shell {
    width: calc(100% - 32px);
  }

  .company-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .company-layout .section-title h2 {
    font-size: 44px;
  }

  .company-layout .section-description {
    font-size: 16px;
  }

  .partner-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 20px;
  }

  .home-company-section {
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .about-home-header {
    margin-bottom: 36px;
  }

  .about-home-header .section-title h2 {
    font-size: 34px;
  }

  .about-home-lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .about-home-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-home-visual img {
    min-height: 280px;
  }

  .about-home-copy h3 {
    font-size: 28px;
  }

  .about-home-narrative p {
    font-size: 16px;
    line-height: 1.85;
  }

  .footer-panel {
    padding-top: 54px;
  }

  .footer-nav-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    padding-bottom: 32px;
  }

  .footer-nav-group h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .site-footer-meta {
    padding-top: 22px;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .coverage-marker {
    --marker-size: 14px;
  }

  .coverage-copy .section-title h2 {
    font-size: 28px;
  }

  .about-showcase,
  .about-advantage-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars {
    grid-template-rows: none;
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .about-pillar {
    padding-left: 0;
  }

  .about-advantage-card + .about-advantage-card {
    border-left: 0;
    border-top: 1px solid rgba(160, 184, 205, 0.18);
  }

  .about-advantage-pattern {
    display: none;
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
    padding: 0;
  }

  .logo {
    margin-left: 0;
    justify-content: center;
  }

  .logo-image {
    height: 72px;
  }

  .nav {
    display: none !important;
  }

  .topbar-contact {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
  }

  .nav-link {
    height: 56px;
    font-size: 17px;
    border-radius: 8px;
  }

  .dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-top: 0;
    border-radius: 8px;
    padding: 8px 0;
    background: rgba(236, 242, 247, 0.98);
  }

  .dropdown-columns-4 {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .dropdown::before {
    display: none;
  }

  .nav-item:hover .dropdown {
    display: block;
  }

  .nav-item:hover .dropdown-columns-4 {
    display: grid;
  }

  .dropdown a {
    font-size: 16px;
    padding: 12px 16px;
  }

  .partner-section {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .partner-header {
    margin-bottom: 20px;
  }

  .partner-header .section-title h2 {
    font-size: 28px;
  }

  .partner-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo-card {
    min-height: 70px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .partner-logo-dell,
  .partner-logo-ibm,
  .partner-logo-h3c {
    font-size: 27px;
  }

  .partner-logo-vmware,
  .partner-logo-oracle {
    font-size: 22px;
  }

  .footer-nav-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav-links {
    gap: 10px;
  }

  .home-solution-card:nth-child(2),
  .home-solution-card:nth-child(4) {
    margin-top: 0;
  }

  .home-product-grid {
    gap: 18px;
    background: transparent;
    border: 0;
  }

  .home-product-card {
    min-height: 0;
    border-right: 0;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(152, 178, 201, 0.18);
  }

  .site-footer-row,
  .site-footer-links {
    display: block;
  }

  .site-footer-links,
  .site-footer-copy {
    margin-top: 6px;
    white-space: normal;
  }

  .site-footer-company,
  .site-footer-address,
  .site-footer-links,
  .site-footer-copy {
    font-size: 12px;
  }

  .hero,
  .carousel-overlay {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .article-page-card {
    padding: 24px 20px;
  }

  .article-page-content .feature-card {
    display: flex;
    width: 100%;
    margin-right: 0;
  }

  .page-card {
    padding: 28px 20px;
  }

  /* --- Progressive carousel scaling --- */
  body[data-page="home"] .carousel {
    height: clamp(280px, 45vh, 560px) !important;
    min-height: 280px !important;
  }

  body[data-page="home"] .carousel-overlay {
    min-height: clamp(280px, 45vh, 560px);
    height: clamp(280px, 45vh, 560px);
  }

  .carousel-slide-media {
    max-height: clamp(280px, 45vh, 560px);
  }
}

.carousel-slide {
  overflow: hidden;
}

.carousel-slide-media-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: none;
}

.carousel-slide-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--carousel-design-width) * 1px);
  height: calc(var(--carousel-design-height) * 1px);
  overflow: hidden;
  transform-origin: left top;
  z-index: 3;
  pointer-events: none;
  transform: scale(var(--carousel-content-scale));
}


.carousel-slide-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.carousel-slide-stage .carousel-slide-cta {
  pointer-events: auto;
}

.carousel-slide.has-media::after {
  background: transparent;
}

.carousel-slide.has-background::after {
  background: linear-gradient(180deg, rgba(7, 25, 47, 0.12), rgba(7, 25, 47, 0.28));
}

/* --- Carousel Text Overlay --- */

.carousel-slide-overlay {
  position: absolute;
  z-index: 3;
  bottom: clamp(60px, 12vh, 140px);
  left: clamp(24px, 6vw, 100px);
  width: 32em;
  font-size: var(--carousel-summary-size, 16px);
  display: flex;
  flex-direction: column;
  gap: var(--carousel-elem-gap, 0.6em);
}

.carousel-slide-title-en {
  font-family: var(--carousel-title-en-font, inherit);
  font-size: var(--carousel-title-en-size, 13px);
  letter-spacing: 2.5px;
  font-style: var(--carousel-title-en-style, normal);
  opacity: 0.8;
  margin: 0;
  font-weight: 500;
}

.carousel-slide-title-cn {
  font-family: var(--carousel-title-cn-font, inherit);
  font-size: var(--carousel-title-cn-size, clamp(28px, 4vw, 48px));
  font-style: var(--carousel-title-cn-style, normal);
  font-weight: 700;
  margin: 4px 0;
  line-height: var(--carousel-line-height, 1.2);
}

.carousel-slide-summary {
  font-family: var(--carousel-summary-font, inherit);
  font-size: var(--carousel-summary-size, clamp(14px, 1.4vw, 18px));
  font-style: var(--carousel-summary-style, normal);
  margin: 0;
  line-height: 1.6;
}

.carousel-slide-features {
  font-family: var(--carousel-features-font, inherit);
  font-size: var(--carousel-features-size, 14px);
  font-style: var(--carousel-features-style, normal);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.carousel-slide-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--carousel-features-size, 14px);
}

.carousel-feature-icon {
  font-size: 16px;
  line-height: 1;
}

.carousel-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.65em 1.8em;
  margin-top: 12px;
  background: var(--primary, #bf3f4e);
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--carousel-cta-font, inherit);
  font-size: var(--carousel-cta-size, 15px);
  font-style: var(--carousel-cta-style, normal);
  font-weight: 600;
  transition: opacity 200ms, transform 200ms;
  width: fit-content;
}

.carousel-slide-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* --- Carousel Text Position: 9-grid --- */

/* Bottom row */
.pos-bottom-left {
  bottom: clamp(60px, 12vh, 140px);
  left: clamp(40px, 12vw, 200px);
  right: auto;
  top: auto;
  text-align: left;
}

.pos-bottom-center {
  bottom: clamp(60px, 12vh, 140px);
  left: 50%;
  right: auto;
  top: auto;
  transform: translateX(-50%);
  text-align: center;
  align-items: center;
}

.pos-bottom-right {
  bottom: clamp(60px, 12vh, 140px);
  right: clamp(24px, 6vw, 100px);
  left: auto;
  top: auto;
  text-align: right;
  align-items: flex-end;
}

/* Middle row */
.pos-middle-left {
  top: 50%;
  left: clamp(40px, 12vw, 200px);
  right: auto;
  bottom: auto;
  transform: translateY(-50%);
  text-align: left;
}

.pos-middle-center {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  align-items: center;
}

.pos-middle-right {
  top: 50%;
  right: clamp(24px, 6vw, 100px);
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  text-align: right;
  align-items: flex-end;
}

/* Top row */
.pos-top-left {
  top: clamp(40px, 8vh, 100px);
  left: clamp(40px, 12vw, 200px);
  right: auto;
  bottom: auto;
  text-align: left;
}

.pos-top-center {
  top: clamp(40px, 8vh, 100px);
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  text-align: center;
  align-items: center;
}

.pos-top-right {
  top: clamp(40px, 8vh, 100px);
  right: clamp(24px, 6vw, 100px);
  left: auto;
  bottom: auto;
  text-align: right;
  align-items: flex-end;
}

body #contentRoot > section:not(.footer-panel) .section-title h2 {
  font-size: 38px;
}

body #contentRoot > section:not(.footer-panel) .section-title p,
body #contentRoot > section:not(.footer-panel) .section-description {
  font-size: 16px;
}

body #contentRoot .home-title-block .section-kicker {
  font-size: 19px;
}

body #contentRoot .home-solution-card strong,
body #contentRoot .home-product-card strong {
  color: #000000;
  font-size: 19px;
}

body #contentRoot .home-solution-card span,
body #contentRoot .home-product-card span {
  font-size: 16px;
}

body #contentRoot .coverage-copy .section-title h2 {
  font-size: 34px;
}

body #contentRoot .coverage-list-title,
body #contentRoot .coverage-city-grid li {
  font-size: 16px;
}

body #contentRoot .company-layout .section-title h2 {
  font-size: 48px;
}

body #contentRoot .company-layout .section-description,
body #contentRoot .highlight-panel li {
  font-size: 17px;
}

body .page-hero .hero-description,
body .article-hero .hero-description {
  font-size: 16px;
}

body .article-hero .hero-description {
  font-size: 18px;
  font-style: italic;
}

body .article-page-content {
  font-size: 17px;
  line-height: 1.8;
}

/* --- Download Center Page --- */
.download-page-hero {
  background: linear-gradient(160deg, #f0f4f8 0%, #e2eaf2 40%, #d4e0ed 100%);
  min-height: 420px;
}

.download-page-overlay {
  min-height: 420px;
  padding-top: 110px;
  padding-bottom: 20px;
}

.download-page-overlay .carousel-content {
  max-width: 860px;
}

.download-page-overlay .hero-description {
  color: #5d7488;
  font-size: 18px;
  font-style: italic;
}

.download-section {
  padding: 48px 0 80px;
}

.download-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.download-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.download-filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border, #dde3ea);
  border-radius: 20px;
  background: #fff;
  color: var(--text, #1e293b);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.download-filter-btn:hover {
  border-color: var(--primary, #bf3f4e);
  color: var(--primary, #bf3f4e);
}

.download-filter-btn.active {
  background: var(--primary, #bf3f4e);
  color: #fff;
  border-color: var(--primary, #bf3f4e);
}

.download-search {
  position: relative;
}

.download-search input {
  width: 260px;
  padding: 10px 16px;
  border: 1px solid var(--border, #dde3ea);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s;
}

.download-search input:focus {
  outline: none;
  border-color: var(--primary, #bf3f4e);
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border, #e8ecf1);
  border-radius: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.download-card:hover {
  border-color: var(--primary, #bf3f4e);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.download-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt, #f3f4f6);
  border-radius: 10px;
  color: var(--primary, #bf3f4e);
}

.download-card-info {
  flex: 1;
  min-width: 0;
}

.download-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #1e293b);
  margin: 0 0 4px;
}

.download-card-desc {
  font-size: 13px;
  color: var(--muted, #64748b);
  margin: 0 0 8px;
  line-height: 1.5;
}

.download-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted, #94a3b8);
}

.download-card-tag {
  padding: 2px 10px;
  background: var(--bg-alt, #f1f5f9);
  border-radius: 10px;
  color: var(--primary, #bf3f4e);
  font-weight: 500;
}

.download-card-action {
  flex-shrink: 0;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--primary, #bf3f4e);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.download-button:hover {
  background: #a33542;
}

.download-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted, #94a3b8);
  font-size: 15px;
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 768px)
   ============================================ */

/* --- Hamburger Button --- */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
}

.hamburger {
  position: relative;
  width: 24px;
  height: 18px;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #243e57;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.mobile-menu-toggle.is-open .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open .hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* --- Mobile Navigation Panel --- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.mobile-nav-panel.is-open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafbfc;
}

.mobile-nav-header img {
  height: 40px;
  width: auto;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #64748b;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-links {
  padding: 8px 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #243e57;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #d93536;
  background: rgba(217, 53, 54, 0.04);
}

.mobile-nav-arrow {
  font-size: 12px;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.mobile-nav-item.is-open > .mobile-nav-link .mobile-nav-arrow {
  transform: rotate(90deg);
}

/* --- Mobile Submenu --- */
.mobile-submenu {
  display: none;
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 4px 0;
}

.mobile-nav-item.is-open > .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  min-height: 44px;
  line-height: 20px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-submenu a[data-kind="column"] {
  font-weight: 700;
  color: #1e293b;
  font-size: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-submenu a[data-kind="column"]:first-child {
  border-top: none;
}

.mobile-submenu a:hover,
.mobile-submenu a:active {
  color: #d93536;
  background: rgba(217, 53, 54, 0.04);
}

/* --- Mobile Language Switch --- */
.mobile-nav-lang {
  padding: 0 20px 12px;
}

.mobile-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: transparent;
  color: #243e57;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, color 0.15s;
}

.mobile-lang-switch:hover,
.mobile-lang-switch:active {
  background: rgba(0, 0, 0, 0.05);
  color: #e1243e;
}

/* --- Mobile Contact Bar --- */
.mobile-nav-contact {
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafbfc;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #e1243e 0%, #d61f35 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

/* ============================================
   768px Breakpoint
   ============================================ */
/* --- Landscape phones: force hamburger nav to prevent overflow --- */
@media (max-width: 1080px) and (orientation: landscape) and (max-height: 500px) {
  /* Nav hamburger rules moved to 1080px breakpoint */
}

@media (max-width: 768px) {
  /* --- Hide desktop nav, show hamburger --- */
  /* Nav hamburger rules moved to 1080px breakpoint */

  /* --- Topbar --- */
  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
    padding: 8px 0;
    position: relative;
  }

  /* --- Container --- */
  .container {
    width: calc(100% - 24px);
    max-width: none;
  }

  body[data-page="home"] .container {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="home"] .topbar .container,
  body.article-page-body .topbar .container,
  body[data-page="downloads"] .topbar .container,
  body[data-page="solutions"] .topbar .container {
    width: calc(100% - 24px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }


  .logo-image {
    height: 48px;
  }

  /* --- Hero Section --- */
  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }

  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-group .cta-button,
  .hero-cta-group .cta-button-outline {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* --- Carousel --- */
  body[data-page="home"] .carousel {
    height: 280px !important;
    min-height: 200px !important;
  }

  body[data-page="home"] .carousel-overlay {
    min-height: 200px;
    height: 100%;
  }

  .carousel {
    height: 280px;
    min-height: 200px;
    max-height: 320px;
    overflow: hidden;
  }

  .carousel-track {
    height: auto;
    min-height: auto;
  }

  .carousel .hero-layout {
    min-height: auto;
  }

  .carousel .carousel-content {
    min-height: auto;
    grid-template-rows: auto auto auto auto;
  }

  .carousel .hero h1 {
    font-size: 24px;
  }

  .carousel .hero p {
    font-size: 14px;
  }

  .carousel-slide-media {
    max-height: 280px;
    object-fit: cover !important;
  }

  /* Carousel text overlay responsive */
  .carousel-slide-overlay {
    width: 32em;
  }

  /* Position adjustments for 768px */
  .carousel-slide-overlay.pos-bottom-left {
    bottom: 45px;
    left: 16px;
  }

  .carousel-slide-overlay.pos-bottom-center {
    bottom: 45px;
    left: 50%;
  }

  .carousel-slide-overlay.pos-bottom-right {
    bottom: 45px;
    right: 16px;
  }

  .carousel-slide-overlay.pos-middle-left {
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
  }

  .carousel-slide-overlay.pos-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .carousel-slide-overlay.pos-middle-right {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }

  .carousel-slide-overlay.pos-top-left {
    top: 30px;
    left: 16px;
  }

  .carousel-slide-overlay.pos-top-center {
    top: 30px;
    left: 50%;
  }

  .carousel-slide-overlay.pos-top-right {
    top: 30px;
    right: 16px;
  }

  .carousel-slide-title-en {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-slide-title-cn {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-slide-summary {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-slide-features {
    gap: 6px 16px;
  }

  .carousel-slide-features li {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-slide-cta {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-dots {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  /* --- Solutions page hero --- */
  .solution-page-hero {
    min-height: auto;
  }

  .solution-page-overlay {
    min-height: auto;
    padding: 50px 28px 24px;
    justify-content: flex-start;
  }

  .solution-page-hero h1 {
    font-size: 24px;
  }

  .solution-page-hero .hero-description {
    font-size: 14px;
  }

  /* --- Download page hero --- */
  .download-page-hero {
    min-height: auto;
  }

  .download-page-overlay {
    min-height: auto;
    padding: 50px 28px 24px;
    justify-content: flex-start;
  }

  .download-page-overlay .hero-description {
    font-size: 14px;
  }


  /* Flow grid mobile */
  .flow-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .flow-arrow-item {
    transform: rotate(90deg);
    margin: 2px 0;
  }

  /* --- Section Titles --- */
  .section-title h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .section-title p {
    font-size: 14px;
  }

  body #contentRoot > section:not(.footer-panel) .section-title h2 {
    font-size: 24px;
  }

  body #contentRoot > section:not(.footer-panel) .section-title p,
  body #contentRoot > section:not(.footer-panel) .section-description {
    font-size: 14px;
  }

  /* --- Card Grids --- */
  .home-solution-grid,
  .home-product-grid,
  .column-grid,
  .feature-card-grid,
  .industry-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .feature-card-large {
    grid-template-columns: 1fr !important;
    padding: 20px;
  }

  .product-showcase {
    grid-template-columns: 1fr !important;
    padding: 20px;
  }

  /* --- Article Content Tables --- */
  .article-body table,
  .article-page-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .article-body table td,
  .article-body table th,
  .article-page-content table td,
  .article-page-content table th {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* --- Tabs (article tab switch) --- */
  .sol-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 4px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .sol-tabs::-webkit-scrollbar {
    display: none;
  }

  .sol-tab {
    flex-shrink: 0;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .sol-panel {
    padding: 16px;
  }

  /* --- Company/About --- */
  .company-layout .section-title h2 {
    font-size: 24px;
  }

  .company-news-grid {
    grid-template-columns: 1fr !important;
  }

  .company-news-list-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 16px;
  }

  .company-news-list-main h3 {
    font-size: 18px;
    line-height: 1.38;
  }

  .company-news-list-main p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.55;
  }

  .company-news-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .company-news-list-date,
  .company-news-list-link {
    font-size: 14px;
  }

  .company-news-pagination {
    gap: 6px;
  }

  .company-news-page-link {
    min-width: 36px;
    min-height: 36px;
    padding: 0 10px;
  }

  .company-news-page-control {
    min-width: 62px;
  }

  .company-news-card.is-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company-news-card.is-featured .company-news-card-media,
  .company-news-card.is-featured .company-news-card-media img {
    min-height: 0;
    height: 210px;
  }

  .company-news-card.is-featured .company-news-card-body {
    grid-template-rows: auto minmax(48px, auto) minmax(52px, auto) auto;
    gap: 8px;
    padding: 14px 16px 16px;
    border-left: 0;
    border-top: 1px solid rgba(154, 187, 214, 0.12);
  }

  .company-news-card.is-featured h3 {
    font-size: 20px;
  }

  .company-news-card h3 {
    font-size: 18px;
  }

  .company-news-card-date,
  .company-news-card-link {
    font-size: 14px;
  }

  .company-news-card-link::after {
    font-size: 15px;
  }

  .company-news-card.is-featured p {
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .partner-logo-wall {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    padding: 12px;
  }

  .partner-logo-wall .partner-logo-item img {
    height: 40px;
  }

  /* --- Download Cards --- */
  .download-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .download-card-action {
    width: 100%;
  }

  .download-button {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  /* --- Footer --- */
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 0;
  }

  /* --- Page sections --- */
  .home-company-section,
  .home-solutions-section,
  .home-products-section {
    padding: 40px 0;
  }

  /* --- Flow animation items --- */
  .flow-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .flow-arrow-item {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .flow-item {
    padding: 16px;
  }

  /* --- Service table in articles --- */
  .article-body table,
  .article-page-content table {
    font-size: 13px;
  }

  /* --- Generic button touch targets --- */
  .cta-button,
  .secondary-button,
  .download-button,
  .filter-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* --- Links spacing for touch --- */
  .mobile-nav-link,
  .mobile-submenu a,
  .footer-column-links-list a {
    min-height: 44px;
  }

  /* --- Download page search fix --- */
  .download-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .download-search {
    width: 100%;
  }

  .download-search input {
    width: 100%;
  }

  /* --- Coverage map area --- */
  .coverage-map-panel {
    padding: 8px;
  }

  .coverage-copy .section-description {
    font-size: 14px;
  }

  /* --- About us section --- */
  .about-home-visual img {
    max-height: 200px;
    object-fit: cover;
  }

  .about-home-narrative p {
    font-size: 14px;
  }

  /* --- Article hero --- */
  .article-hero {
    padding: 60px 0 32px;
  }

  .article-hero .carousel-overlay {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 16px;
    justify-content: flex-start;
  }

  .article-hero h1 {
    font-size: 24px;
  }

  /* --- Solutions feature stack --- */
  .feature-stack .feature-card-large {
    flex-direction: column;
  }

  /* --- Reduce section padding on mobile --- */
  .article-page-section {
    padding-bottom: 16px;
  }

  .article-page-section .container {
    padding-top: 12px;
  }

  .footer-panel {
    padding: 32px 0 12px;
  }

  .section-dark,
  .section-light,
  .section {
    padding: 40px 0;
  }
}

/* ============================================
   480px Breakpoint (small phones)
   ============================================ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 22px;
  }

  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-title h2 {
    font-size: 20px;
  }


  body[data-page="home"] .carousel-overlay {
    min-height: 160px;
  }

  .carousel {
    height: 220px;
    max-height: 220px;
  }

  .carousel-slide-media {
    max-height: 220px;
  }

  /* Carousel text overlay small screen */
  .carousel-slide-overlay {
    /* No default positioning - handled by pos-* classes */
  }

  /* Position adjustments for 480px */
  .carousel-slide-overlay.pos-bottom-left {
    bottom: 36px;
    left: 12px;
  }

  .carousel-slide-overlay.pos-bottom-center {
    bottom: 36px;
    left: 50%;
  }

  .carousel-slide-overlay.pos-bottom-right {
    bottom: 36px;
    right: 12px;
  }

  .carousel-slide-overlay.pos-middle-left {
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
  }

  .carousel-slide-overlay.pos-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .carousel-slide-overlay.pos-middle-right {
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
  }

  .carousel-slide-overlay.pos-top-left {
    top: 24px;
    left: 12px;
  }

  .carousel-slide-overlay.pos-top-center {
    top: 24px;
    left: 50%;
  }

  .carousel-slide-overlay.pos-top-right {
    top: 24px;
    right: 12px;
  }

  .carousel-slide-title-cn {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-slide-summary {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-slide-features {
    gap: 4px 12px;
  }

  .carousel-slide-features li {
    /* responsive via clamp() in CSS variable */
  }

  .carousel-slide-cta {
    /* responsive via clamp() in CSS variable */
  }

  .partner-logo-wall {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .partner-logo-wall .partner-logo-item img {
    height: 32px;
  }

  .container:not(.carousel-overlay) {
    padding: 0 10px;
  }

  .home-company-section,
  .home-solutions-section,
  .home-products-section {
    padding: 28px 0;
  }

  .hero {
    padding: 60px 0 28px;
  }

  .section-title p {
    font-size: 13px;
  }

  .download-card {
    padding: 12px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Keep the homepage carousel as a single scaled stage across all widths. */
body[data-page="home"] .carousel,
body[data-page="home"] .carousel-overlay {
  height: var(--carousel-height) !important;
  min-height: 0 !important;
  max-height: none !important;
}

body[data-page="home"] .carousel {
  padding: 0;
}

body[data-page="home"] .carousel-slide-media {
  max-height: none !important;
}

body[data-page="home"] .carousel-slide-features {
  gap: 10px 24px !important;
}

body[data-page="home"] .carousel-slide-title-en {
  font-size: var(--carousel-title-en-size, 13px) !important;
  line-height: 1.8 !important;
}

body[data-page="home"] .carousel-slide-title-cn {
  font-size: var(--carousel-title-cn-size, 36px) !important;
  line-height: var(--carousel-line-height, 1.2) !important;
}

body[data-page="home"] .carousel-slide-summary {
  font-size: var(--carousel-summary-size, 16px) !important;
  line-height: 1.6 !important;
  max-width: none !important;
}

body[data-page="home"] .carousel-slide-features li {
  font-size: var(--carousel-features-size, 14px) !important;
}

body[data-page="home"] .carousel-slide-cta {
  font-size: var(--carousel-cta-size, 15px) !important;
}

body[data-page="home"] .carousel-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--carousel-height) - (780px * var(--carousel-content-scale)));
  margin-top: 0;
  transform: scale(var(--carousel-content-scale));
  transform-origin: center bottom;
}

@media (max-width: 768px) {
  body.wechat-article-body .article-page-section .container {
    width: calc(100vw - 24px);
    padding-left: 0;
    padding-right: 0;
  }

  body.wechat-article-body .article-page-card {
    padding-left: 0;
    padding-right: 0;
  }

  .article-not-found {
    padding: 44px 22px;
  }

  .article-not-found h2 {
    font-size: 24px;
  }

  .article-not-found p {
    font-size: 15px;
  }

  .article-page-content .news-clean-article {
    width: 100%;
    padding: 24px 20px 30px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(31, 74, 105, 0.07);
  }

  .article-page-content .news-clean-article.is-layout-balanced {
    min-height: 0;
  }

  .article-page-content .news-clean-article.is-layout-balanced > .news-clean-tagline:last-child {
    margin-top: 0;
    padding-top: 0;
  }

  .article-page-content .news-clean-article.is-layout-compact {
    padding: 18px 14px 24px;
  }

  .article-page-content .news-clean-hero {
    margin-bottom: 20px;
  }

  .article-page-content .news-clean-image {
    margin: 20px auto;
  }

  .article-page-content .news-clean-kicker {
    font-size: 16px;
    line-height: 1.55;
  }

  .article-page-content .news-clean-lead {
    margin-bottom: 24px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.75;
  }

  .article-page-content .news-clean-section {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .article-page-content .news-clean-section h2 {
    font-size: 20px;
  }

  .article-page-content .news-clean-section p {
    font-size: 15px;
    line-height: 1.78;
  }

  .article-page-content .news-clean-list li {
    font-size: 15px;
    line-height: 1.72;
  }

  .article-page-content .news-clean-qr {
    margin-top: 26px;
  }
}
/* The image and CTA share one source-ratio artboard, so they crop and scale together. */
.carousel-slide--banner::after {
  background: transparent;
}

.carousel-slide-artboard {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 5216px;
  height: 1890px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(var(--carousel-artboard-scale, 1));
  transform-origin: center center;
}

.carousel-slide-artboard .carousel-slide-media {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

body[data-page="home"] .carousel-slide-artboard .carousel-slide-cta {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 19px;
  min-width: 344px;
  min-height: 119px;
  margin: 0;
  padding: 0 60px;
  border-radius: 14px;
  box-shadow: 0 19px 53px rgba(7, 25, 47, 0.2);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 39px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.carousel-slide-artboard .carousel-slide-cta:hover {
  opacity: 0.9;
  transform: translate(-50%, -50%) translateY(-2px);
}

html[lang="en"] .carousel-slide-artboard .carousel-slide-cta {
  font-family: "Inter", "Poppins", sans-serif;
}

/* Dots are navigation UI, not part of the scalable Banner design canvas. */
body[data-page="home"] .carousel-footer {
  position: absolute;
  right: 0;
  bottom: clamp(14px, 2.2vw, 32px);
  left: 0;
  z-index: 4;
  margin: 0;
  transform: none;
}

@media (max-width: 480px) {
  body[data-page="home"] .carousel-footer {
    bottom: 12px;
  }

  body[data-page="home"] .carousel-dots {
    gap: 8px;
  }
}
