/* Generated by scripts/tools/build-css-bundles.mjs. */
/* source: styles/fonts.css */
@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-sc-v40-chinese-simplified_latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-sc-v40-chinese-simplified_latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-sc-v40-chinese-simplified_latin-700.woff2") format("woff2");
}

/* source: styles/reset.css */
/*
 * 基础重置：保持最小侵入，优先消除不同浏览器的默认差异。
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* source: styles/variables.css */
:root {
  color-scheme: light;

  /* 色板 */
  --color-bg: #f3f4f6;
  --color-bg-strong: #eaf0f8;
  --color-surface: #ffffff;
  --color-surface-muted: #eef4fb;
  --color-surface-accent: #e7f0ff;
  --color-surface-strong: #102347;
  --color-surface-stronger: #0a1731;
  --color-border: rgba(16, 35, 71, 0.1);
  --color-border-strong: rgba(36, 107, 255, 0.2);
  --color-text: #102347;
  --color-text-soft: #5b7090;
  --color-text-muted: #7d90ac;
  --color-text-inverse: #f8fbff;
  --color-primary: #246bff;
  --color-primary-hover: #1a56d0;
  --color-primary-soft: rgba(36, 107, 255, 0.08);
  --color-secondary: #163a84;
  --color-accent: #6fb8ff;
  --color-success: #1c8b6b;
  --color-error: #c94f4f;
  --color-overlay: rgba(7, 16, 34, 0.56);
  --color-shadow: rgba(15, 39, 81, 0.16);

  /* 字体 */
  --font-sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;

  /* 字号 */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.35rem, 1.1rem + 0.9vw, 1.9rem);
  --text-2xl: clamp(1.95rem, 1.45rem + 1.35vw, 2.9rem);
  --text-3xl: clamp(2.5rem, 1.75rem + 2.15vw, 4.3rem);
  --text-hero: clamp(2.85rem, 1.95rem + 2.8vw, 5.3rem);
  --text-section-title: 2.5rem; /* 40px Standard */
  --text-section-subtitle: 1.125rem;

  /* 间距 */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --section-padding-bg: 5rem 0;
  --section-padding-sm: 4rem 0;

  /* 圆角与阴影 */
  --radius-xs: 0.25rem;     /* 4px */
  --radius-sm: 0.375rem;    /* 6px */
  --radius-standard: 0.5rem; /* 8px B2B Standard */
  --radius-md: 0.625rem;    /* 10px */
  --radius-lg: 0.75rem;     /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-pill: 999px;
  --shadow-xs: 0 8px 20px rgba(15, 39, 81, 0.05);
  --shadow-sm: 0 16px 36px rgba(15, 39, 81, 0.08);
  --shadow-md: 0 24px 60px rgba(15, 39, 81, 0.12);
  --shadow-lg: 0 28px 80px rgba(10, 23, 49, 0.18);

  /* 设计稿主列上限；桌面三档实际 cap 见 html.is-desktop 的 --content-width-cap */
  --content-max-width: 1524px;

  /* 容器 */
  --container-padding: clamp(1rem, 0.45rem + 1.8vw, 2rem);
  --container-sm: 44rem;
  --container-md: 61rem;
  --container-lg: 78rem;
  --container-xl: 95.25rem;
  --container-hero: 95.25rem;

  /* 动效 */
  --transition-fast: 180ms ease;
  --transition-base: 260ms ease;
  --transition-slow: 420ms ease;

  /* 断点说明（与常见 16px 根字号对应）
   * 手机：<768px
   * 平板：768px–1023px
   * 桌面：1024px–1439px
   * 大屏：>=1440px
   */
}

/* PC 三档：列宽 cap + 左右最小边距搭配；实际主列 = min(cap, 视口 − 2×边距)，与 --gutter-x 一致
 * 窗口化时主列随真实视口收缩，避免整页横向滚动。
 * 档 1  <1440px  cap 1280 / 边距 20 — 窄桌面、小外接
 * 档 2  1440px–1919px  cap 1336 / 边距 24 — 14 寸 Mac、2K 缩放约 1512–1700 等同档
 * 档 3  ≥1920px  cap 1548 / 边距 32 — 全高清及以上外接 / 未缩放大屏
 */
html.is-desktop {
  --content-edge-min: 20px;
  --content-width-cap: 1524px;
  /* 首页各内容模块与全站主列统一对齐 */
  --home-core-inset: 0px;
  --content-max-width: min(
    var(--content-width-cap),
    calc(100vw - 2 * var(--content-edge-min))
  );
  --gutter-x: max(
    var(--content-edge-min),
    calc(
      (100vw - var(--content-max-width)) / 2
    )
  );
}

@media (min-width: 1440px) {
  html.is-desktop {
    --content-edge-min: 24px;
    --content-width-cap: 1524px;
  }
}

@media (min-width: 1920px) {
  html.is-desktop {
    --content-edge-min: 32px;
    --content-width-cap: 1524px;
  }
}

html.is-mobile {
  --gutter-x: 0px;
}

/* source: styles/base.css */
html {
  background: var(--color-bg);
}

body {
  position: relative;
  min-width: 360px;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: var(--color-text);
  background: var(--color-bg);
}

html.is-desktop body {
  min-width: 360px;
  overflow-x: hidden;
}

html.is-desktop body.is-locked {
  overflow: hidden;
}

body::before {
  content: none;
}

body.is-locked {
  overflow: hidden;
}

main {
  display: block;
}

section,
article,
aside {
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

p {
  color: var(--color-text-soft);
  line-height: 1.75;
}

a,
button,
input,
textarea,
select {
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    opacity var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

:focus-visible {
  outline: 0.2rem solid rgba(36, 107, 255, 0.32);
  outline-offset: 0.15rem;
}

::selection {
  color: var(--color-text-inverse);
  background: rgba(36, 107, 255, 0.86);
}

/* source: styles/motion.css */
/* ==========================================================================
   Site motion — entrance + scroll reveal
   ========================================================================== */

:root {
  --m-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --m-dur: 0.9s;
  --m-dur-fast: 0.65s;
}

@keyframes m-slide-down {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes m-fade-up {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes m-fade-in-scale {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes m-slide-left {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── First-paint entrance ── */
@media (prefers-reduced-motion: no-preference) {

  /* Hero title + subtitle: strong rise */
  html.site-motion--intro .hero-carousel__text {
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.15s both;
  }

  /* Hero image: slide from right */
  html.site-motion--intro .hero-carousel__media {
    animation: m-slide-left 1s var(--m-ease) 0.35s both;
  }

  html.site-motion--intro .data-center-platform-page.is-shell-entering .dp-hero__content {
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.15s both;
  }

  html.site-motion--intro .data-center-platform-page.is-shell-entering .dp-section--architecture .dp-heading {
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.88s both;
  }

  html.site-motion--intro .data-center-platform-page.is-shell-entering .dp-section--architecture .dp-architecture {
    animation: m-fade-up var(--m-dur) var(--m-ease) 1s both;
  }

  html.site-motion--intro .hqd-page.is-shell-entering .hqd-hero__content {
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.15s both;
  }

  html.site-motion--intro .hqd-page.is-shell-entering #hqd-pain-points .hqd-section-heading {
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.88s both;
  }

  html.site-motion--intro .hqd-page.is-shell-entering #hqd-pain-points .hqd-visual--pain-points {
    animation: m-fade-up var(--m-dur) var(--m-ease) 1s both;
  }

  /* Feature cards: staggered pop-up */
  html.site-motion--intro .hero-features__card:nth-child(1) {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) 0.55s both;
  }
  html.site-motion--intro .hero-features__card:nth-child(2) {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) 0.68s both;
  }
  html.site-motion--intro .hero-features__card:nth-child(3) {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) 0.81s both;
  }
  html.site-motion--intro .hero-features__card:nth-child(4) {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) 0.94s both;
  }
  html.site-motion--intro .hero-features__card:nth-child(n + 5) {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) 1.07s both;
  }

  /* 核心产品体系：由 intro 接在 hero-features 后入场（scroll 模块中已排除该 section） */
  html.site-motion--intro .home-core-products .core-products__header {
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.88s both;
  }

  html.site-motion--intro .home-core-products .cp-hero {
    animation: m-fade-up var(--m-dur) var(--m-ease) 1s both;
  }

  html.site-motion--intro .home-core-products .core-products__container > .cp-row:nth-child(2) {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) 1.12s both;
  }

  html.site-motion--intro .home-core-products .core-products__container > .cp-row:nth-child(3) {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) 1.24s both;
  }

  /* ── Scroll reveal ── */

  .motion-reveal {
    opacity: 0;
    transition:
      opacity 0.85s var(--m-ease),
      transform 0.85s var(--m-ease);
    will-change: opacity, transform;
  }

  .motion-reveal--up {
    transform: translateY(50px);
  }

  .motion-reveal--scale {
    transform: translateY(35px) scale(0.97);
  }

  .motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    will-change: auto;
  }

  /* Stagger children inside a visible section */
  .motion-reveal.is-visible .motion-child {
    animation: m-fade-in-scale var(--m-dur-fast) var(--m-ease) both;
  }

  .motion-reveal.is-visible .motion-child:nth-child(1) { animation-delay: 0.06s; }
  .motion-reveal.is-visible .motion-child:nth-child(2) { animation-delay: 0.14s; }
  .motion-reveal.is-visible .motion-child:nth-child(3) { animation-delay: 0.22s; }
  .motion-reveal.is-visible .motion-child:nth-child(4) { animation-delay: 0.30s; }
  .motion-reveal.is-visible .motion-child:nth-child(5) { animation-delay: 0.38s; }
  .motion-reveal.is-visible .motion-child:nth-child(6) { animation-delay: 0.46s; }
  .motion-reveal.is-visible .motion-child:nth-child(n+7) { animation-delay: 0.52s; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .motion-child {
    animation: none !important;
  }
}

/* source: styles/layout.css */
.site-shell {
  min-height: 100vh;
}

.site-shell > main,
main#main-content {
  min-height: max(34rem, calc(100vh - 16rem));
  display: block; /* Change from grid to block for normal flow */
}

.site-container {
  width: min(100% - (var(--container-padding) * 2), var(--container-lg));
  margin-inline: auto;
}

.site-container--wide {
  width: min(100% - (var(--container-padding) * 2), var(--container-xl));
}

.site-container--hero {
  width: min(100% - (var(--container-padding) * 2), var(--container-hero));
  margin-inline: auto;
}

.site-container--narrow {
  width: min(100% - (var(--container-padding) * 2), var(--container-sm));
}

/* PC：与主内容列同宽（页头 / 页脚等 site-container--wide） */
html.is-desktop .site-container.site-container--wide {
  width: var(--content-max-width);
  margin-inline: auto;
  max-width: none;
  box-sizing: border-box;
}

.section {
  padding-block: var(--section-padding-bg);
}

.section--tight {
  padding-block: var(--section-padding-sm);
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(238, 244, 251, 0.92)),
    var(--color-surface-muted);
}

.section--surface {
  background-color: #f8fafc; /* Standard Light Gray Alternance */
}

.section--white {
  background-color: #ffffff;
}

.section--dark {
  color: var(--color-text-inverse);
  background: var(--color-surface-stronger);
}

.section--dark p,
.section--dark .section-heading__description,
.section--dark .footer-nav__link,
.section--dark .footer-meta,
.section--dark .cta-panel__meta,
.section--dark .cta-panel__contact {
  color: rgba(248, 251, 255, 0.76);
}

.stack {
  display: grid;
  gap: var(--space-6);
}

.stack--sm {
  gap: var(--space-4);
}

/* --- Standard Section Heading & Utility Map --- */
.section-heading,
.core-products__header,
.industries__header,
.scenarios__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.section-heading__title {
  font-size: var(--text-section-title) !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.02em;
}

.section-heading__description {
  font-size: var(--text-section-subtitle) !important;
  color: var(--color-text-soft) !important;
  line-height: 1.6 !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stack--lg {
  gap: var(--space-8);
}

.stack--xl {
  gap: var(--space-10);
}

.split-layout {
  display: grid;
  gap: var(--space-10);
  align-items: start;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--cards,
.grid--3,
.grid--4,
.grid--cards-3,
.grid--cards-4 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.cluster--sm {
  gap: var(--space-3);
}

.site-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 80;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--color-text-inverse);
  background: var(--color-surface-stronger);
  transform: translateY(-200%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

@media (min-width: 48rem) {
  .grid--cards,
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .grid--cards-3,
  .grid--cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  }
}

@media (min-width: 64rem) {
  .grid--cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .grid--cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .section {
    padding-block: clamp(5rem, 3rem + 3vw, 8rem);
  }
}

@media (min-width: 1440px) {
  .section {
    padding-block: clamp(5.5rem, 3rem + 2vw, 8.5rem);
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .site-container,
  html:not(.is-desktop) .site-container--wide,
  html:not(.is-desktop) .site-container--hero,
  html:not(.is-desktop) .site-container--narrow {
    width: calc(100% - 16px);
    padding-inline: 0;
  }

  html:not(.is-desktop) .section {
    padding-block: var(--space-8);
  }

  html:not(.is-desktop) .section-heading,
  html:not(.is-desktop) .core-products__header,
  html:not(.is-desktop) .industries__header,
  html:not(.is-desktop) .scenarios__header {
    margin-bottom: 24px;
  }

  html:not(.is-desktop) .section-heading__title {
    font-size: 20px !important;
  }

  html:not(.is-desktop) .section-heading__description {
    font-size: 14px !important;
  }
}

/* source: styles/utilities.css */
.u-text-muted {
  color: var(--color-text-soft);
}

.u-surface {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.u-surface-strong {
  color: var(--color-text-inverse);
  background: linear-gradient(180deg, rgba(16, 35, 71, 0.96), rgba(10, 23, 49, 0.96));
}

.u-shadow-md {
  box-shadow: var(--shadow-md);
}

.u-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  padding: 0.48rem 0.88rem;
  border: 1px solid rgba(36, 107, 255, 0.16);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: rgba(36, 107, 255, 0.08);
  font-size: var(--text-sm);
  font-weight: 700;
}

.u-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 2.25rem;
  padding-inline: 0.85rem;
  border: 1px solid rgba(16, 35, 71, 0.08);
  border-radius: var(--radius-pill);
  color: var(--color-text-soft);
  font-size: var(--text-sm);
  background: rgba(255, 255, 255, 0.78);
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-flow > * + * {
  margin-top: var(--space-4);
}

.u-flow-lg > * + * {
  margin-top: var(--space-6);
}

.u-center {
  text-align: center;
}

/* source: styles/components/button.css */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  padding-inline: 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--color-text-inverse);
  background: linear-gradient(135deg, var(--color-primary), #3d83ff);
  box-shadow: 0 18px 34px rgba(36, 107, 255, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(36, 107, 255, 0.22);
}

.button--secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 35, 71, 0.12);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(36, 107, 255, 0.22);
}

.button--ghost {
  color: var(--color-secondary);
  border-color: rgba(36, 107, 255, 0.14);
  background: rgba(36, 107, 255, 0.08);
}

.button--light {
  color: var(--color-text-inverse);
  border-color: rgba(248, 251, 255, 0.18);
  background: rgba(248, 251, 255, 0.08);
}

.button--block {
  width: 100%;
}

/* source: styles/components/sidebar.css */
.sidebar {
    position: fixed;
    width: 78px;
    height: 340px;
    box-shadow: 0px 12px 38px 0px rgba(55, 14, 138, 0.12);
    background: rgba(255, 255, 255, 1);
    z-index: 9999;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 48px;
}

.sidebar-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sidebar .sidebar-item {
    position: relative;
    cursor: pointer;
    padding: 6px 0;
}

.sidebar .sidebar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 58px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(235, 236, 237, 1);
    height: 1px;
}

.sidebar .sidebar-item:last-child::after {
    display: none;
}

.sidebar .sidebar-item__content {
    position: relative;
    width: 66px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    z-index: 8;
}

.sidebar .sidebar-item__content .title {
    font-size: 14px;
    line-height: 1;
}

.sidebar .sidebar-item__content .hover {
    display: none;
}

.sidebar .sidebar-item__content .icon {
    margin-bottom: 6px;
}

.sidebar .sidebar-item__content img {
    width: 24px;
    display: block;
}

.sidebar .sidebar-item__popup {
    display: none;
    position: absolute;
    padding: 26px 24px;
    right: calc(100% + 40px);
    background: rgba(255, 255, 255, 1);
    z-index: 99;
    box-shadow: 0px 12px 38px 0px rgba(55, 14, 138, 0.12);
    border-radius: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar .sidebar-item__popup::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-left: 20px solid #fff;
}

.sidebar .sidebar-item__popup .popup-content {
    display: flex;
    gap: 15px;
}

.sidebar .popup-info .popup-info__title {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: rgba(7, 109, 234, 1);
    display: flex;
    white-space: nowrap;
    margin-bottom: 18px;
    gap: 6px;
}

.sidebar .popup-info .popup-info__title img {
    width: 24px;
    display: block;
}

.sidebar .popup-info .popup-info__title::after {
    content: '';
    position: absolute;
    bottom: -9px;
    width: 100%;
    height: 1px;
    background: rgba(235, 236, 237, 1);
}

.sidebar .popup-info .popup-info__desc {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 24px;
    white-space: nowrap;
}

.sidebar .popup-img {
    width: 92px;
    height: 92px;
}

.sidebar-item:hover .sidebar-item__popup {
    display: block;
}

.sidebar-item:hover .sidebar-item__content img {
    display: none;
}

.sidebar-item:hover .sidebar-item__content .hover {
    display: block;
}

.sidebar .sidebar-item:hover .sidebar-item__content {
    background: rgba(230, 233, 255, 0.67);
    color: rgba(14, 120, 255, 1);
}

html[lang^="en"] .sidebar {
    width: 96px;
}

html[lang^="en"] .sidebar .sidebar-item__content {
    width: 84px;
}

html[lang^="en"] .sidebar .sidebar-item::after {
    width: 74px;
}

.is-mobile .sidebar {
    display: none;
}

/* source: styles/components/header.css */
/* ==========================================================================
   Header – Top Navigation Bar
   Based on Pixso design export (1920px canvas, 72px header height)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header__surface {
  position: relative;
  background: #ffffff;
}

.site-header__surface::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, #d4e4f7 30%, #bdd5f1 50%, #d4e4f7 70%, transparent 95%);
}

.site-header .site-container--wide {
  width: 100%;
  max-width: none;
  padding-left: 32px;
  padding-right: 29px;
}

html.is-desktop .site-header .site-container--wide {
  width: var(--content-max-width);
  margin-inline: auto;
  max-width: none;
  padding-inline: 0;
  box-sizing: border-box;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
  white-space: nowrap;
}

/* ---------- Brand / Logo ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand__logo {
  display: block;
  height: 2.25rem;
  width: auto;
}

.brand__mark {
  display: none;
}

.brand__name {
  display: none;
}

.brand__tagline {
  display: none;
}

/* ---------- Main Navigation ---------- */

.site-nav {
  display: none;
  min-width: 0;
  flex: 1;
}

.site-nav__list {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
  height: 100%;
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 4.5rem;
  padding-inline: 1.125rem;
  color: rgba(0, 0, 0, 0.85);
  font-size: 1rem;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background-color: #0156c9;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #0156C9;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  width: 2.625rem;
}

.site-nav__link.is-current {
  color: #0156C9;
  font-weight: 600;
}

.site-nav__link.is-current::after {
  width: 2.625rem;
}

.site-nav__link[aria-expanded="true"] {
  color: #0156c9;
}

.site-nav__link > span {
  position: relative;
  z-index: 1;
}

/* 导航文案右上角星标（如「开源社区」+ notification-star.svg） */
.site-nav__link-label--notify {
  position: relative;
  display: inline-block;
  padding-right: 0.4rem;
}

.site-nav__notify-star {
  position: absolute;
  top: -0.12rem;
  right: auto;
  left: calc(100% - 0.35rem);
  width: 23px;
  height: 16px;
  pointer-events: none;
  opacity: 1;
}

.site-nav .site-nav__notify-star {
  top: -0.75rem;
  right: auto;
  left: calc(100% - 0.35rem);
  width: 23px;
  height: 16px;
}

.site-nav__item--price {
  margin-right: 2rem;
}

.site-nav__link[data-nav-key="price"]::before {
  content: "特惠";
  position: absolute;
  top: 10px;
  right: -11px;
  color: #ffffff;
  font-size: 10px;
  border-radius: 4px;
  line-height: 16px;
  padding: 0 4px;
  background-image: linear-gradient(to right bottom, rgb(255, 180, 48), rgb(255, 87, 0));
}

html[lang^="en"] .site-nav__link[data-nav-key="price"]::before {
  content: "Special Offer";
  right: -28px;
  font-size: 9px;
  padding: 0 3px;
}

html[lang^="ja"] .site-nav__link[data-nav-key="price"]::before {
  content: "お得";
}

.site-nav__link:hover .site-nav__notify-star,
.site-nav__link:focus-visible .site-nav__notify-star,
.mobile-nav__link:hover .site-nav__notify-star,
.mobile-nav__link:focus-visible .site-nav__notify-star {
  animation: none;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__notify-star {
    opacity: 1;
    transform: none;
  }
}

/* Chevron (dropdown arrow) */

.site-nav__chevron {
  position: relative;
  z-index: 1;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.55;
}

.site-nav__link:hover .site-nav__chevron,
.site-nav__link[aria-expanded="true"] .site-nav__chevron,
.site-nav__link.is-current .site-nav__chevron {
  opacity: 0.85;
}

.site-nav__link[aria-expanded="true"] .site-nav__chevron,
.site-nav__item.is-open .site-nav__chevron {
  transform: rotate(225deg) translateY(1px);
}

.site-nav__link--button {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

/* Dropdown panel (solutions / cases / resources) */

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  min-width: 15.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -0.35rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav__item.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.4rem;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.site-nav__dropdown-label {
  position: relative;
  z-index: 1;
  margin: 0 0 0.25rem;
  padding: 0.45rem 0.65rem 0.35rem;
  color: #94a3b8;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav__dropdown a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.75rem 0.75rem;
  border-radius: 0.375rem;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus-visible {
  color: #0156c9;
  background: rgba(1, 86, 201, 0.05);
}

/* ---------- Header Actions (Right Side) ---------- */

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header__utility-cluster {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.site-header__utility {
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0 0.5rem;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: rgba(0, 0, 0, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-header__utility:hover,
.site-header__utility:focus-visible {
  color: #0156c9;
}

.site-header__utility-icon {
  width: 1.03rem;
  height: 1.03rem;
  flex-shrink: 0;
  color: #6b7280;
}

.site-header__divider {
  display: none;
  width: 1px;
  height: 1rem;
  background: rgba(0, 0, 0, 0.1);
}

.site-header__cta-cluster {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* CTA Buttons */

.site-header__cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 6.3125rem;
  height: 2rem;
  padding-inline: 1rem;
  border-radius: 1.125rem;
  font-size: 0.875rem;
  /* font-weight: 500; */
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}

.site-header__cta:hover {
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 102, 255, 0.3);
}

.site-header__cta--ghost {
  border: 1px solid #0f69e6;
  background: transparent;
  color: #0f69e6;
}

.site-header__cta--ghost:hover,
.site-header__cta--ghost:focus-visible {
  color: #0f69e6;
}

.site-header__cta--primary {
  border: none;
  background: linear-gradient(135deg, #0b66ff 0%, #00bbff 100%);
  color: #ffffff;
  /* font-weight: 600; */
  box-shadow: 0 2px 8px rgba(11, 102, 255, 0.25);
}

.site-header__cta--primary:hover,
.site-header__cta--primary:focus-visible {
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(11, 102, 255, 0.35);
}

/* ---------- Language Switcher ---------- */

.language-switcher {
  position: relative;
}

.language-switcher__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 8.5rem;
  height: 2rem;
  padding: 0 0.875rem;
  border: 1px solid rgba(15, 105, 230, 0.5);
  border-radius: 1.125rem;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  font-size: 0.875rem;
  /* font-weight: 600; */
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 105, 230, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.language-switcher__trigger:hover,
.language-switcher__trigger:focus-visible,
.language-switcher.is-open .language-switcher__trigger {
  border-color: rgba(15, 105, 230, 0.72);
  color: #0156c9;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 105, 230, 0.14);
}

.language-switcher__trigger::after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: -2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.65;
}

.language-switcher__trigger .site-header__utility-icon {
  color: #0f69e6;
}

.language-switcher.is-open .language-switcher__trigger::after {
  transform: rotate(225deg) translateY(-2px);
}

.language-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  z-index: 120;
  min-width: 8.375rem;
  padding: 0.5rem;
  border: 1px solid rgba(214, 226, 245, 0.92);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(15, 54, 115, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.35rem);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-switcher__menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.language-switcher.is-open .language-switcher__menu,
.language-switcher:focus-within .language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.375rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  color: #344054;
  font-size: 0.875rem;
  /* font-weight: 600; */
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher__option[hidden],
.mobile-nav__cta[hidden] {
  display: none;
}

.language-switcher__option:hover,
.language-switcher__option:focus-visible {
  color: #0156c9;
  background: rgba(15, 105, 230, 0.06);
}

.language-switcher__option[aria-current="page"] {
  color: #0f69e6;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px rgba(15, 105, 230, 0.1);
}

.language-switcher__option[aria-current="page"]::after {
  content: "";
  width: 0.4rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.9;
}

/* ---------- Mobile Menu Toggle ---------- */

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.menu-toggle__line {
  position: relative;
  display: block;
  width: 1rem;
  height: 0.1rem;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle__line::before,
.menu-toggle__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1rem;
  height: 0.1rem;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle__line::before {
  top: -0.32rem;
}

.menu-toggle__line::after {
  top: 0.32rem;
}

/* ==========================================================================
   Mega Menu (Products Dropdown)
   ========================================================================== */

.site-mega-menu {
  position: absolute;
  top: 100%;
  left: 58px;
  right: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-4px);
  z-index: 100;
}

.site-header.is-products-open [data-products-mega-menu],
.site-header.is-cases-open [data-cases-mega-menu],
.site-header.is-solutions-open [data-solutions-mega-menu] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-products-open .site-header__surface,
.site-header.is-cases-open .site-header__surface,
.site-header.is-solutions-open .site-header__surface {
  border-bottom-color: transparent;
}

.site-header.is-products-open .site-header__surface::after,
.site-header.is-cases-open .site-header__surface::after,
.site-header.is-solutions-open .site-header__surface::after {
  opacity: 0;
}

.site-header.is-products-open [data-nav-key="products"],
.site-header.is-cases-open [data-nav-key="cases"],
.site-header.is-solutions-open [data-nav-key="solutions"] {
  color: rgba(1, 86, 201, 1);
  font-weight: 800;
}

.site-header.is-products-open [data-nav-key="products"]::after,
.site-header.is-cases-open [data-nav-key="cases"]::after,
.site-header.is-solutions-open [data-nav-key="solutions"]::after {
  width: 57px;
}

/* ---------- Mega Menu Layout ---------- */

.site-mega-menu__inner {
  display: flex;
}

.site-mega-menu__sidebar {
  position: relative;
  width: 290px;
  flex-shrink: 0;
  padding: 28px 32px 32px 25px;
  background-image: url("/assets/images/header/mega-menu/sidebar-deco-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.site-mega-menu__sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/header/mega-menu/sidebar-deco-top.png");
  background-size: 290px auto;
  background-position: top left;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.site-mega-menu__sidebar-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(36, 40, 58, 1);
  line-height: 20px;
}

.site-mega-menu__sidebar-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(57, 62, 79, 1);
  line-height: 22px;
}

.site-mega-menu__products {
  flex: 1;
  min-width: 0;
  padding: 26px 32px 26px 40px;
}

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

/* ---------- Product Item ---------- */

.mega-product {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  padding: 0;
  position: relative;
}

.mega-product--link {
  cursor: pointer;
}

.mega-product__icon {
  flex-shrink: 0;
  width: 22px;
  height: 20px;
  margin-top: 2px;
}

.mega-product__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-product__name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.mega-product__link {
  font-size: 18px;
  font-weight: normal;
  color: rgba(51, 51, 51, 1);
  line-height: 22px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.mega-product__name {
  font-size: 18px;
  font-weight: normal;
  color: rgba(51, 51, 51, 1);
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.mega-product__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 20px;
}

.mega-product__badge--hot {
  background-color: rgba(255, 69, 75, 1);
}

.mega-product__badge--new {
  background-color: rgba(255, 138, 4, 1);
}

.mega-product__desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(172, 181, 198, 1);
  line-height: 22px;
}

.mega-product__open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 77px;
  height: 20px;
  background: #E6EEFE;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0F69E6;
  line-height: 17px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 10px;
}

.mega-product__open-link svg {
  width: 5px;
  height: 9px;
}

html[lang^="en"] .mega-product__open-link {
  width: auto;
  min-width: 96px;
  padding-inline: 10px;
}

html[lang^="en"] [data-products-mega-menu] .site-mega-menu__product-grid {
  grid-template-columns: minmax(430px, 1.3fr) repeat(3, minmax(210px, 1fr));
  column-gap: 28px;
}

.mega-product:hover {
  color: inherit;
}

.mega-product:hover .mega-product__link {
  color: rgba(15, 105, 230, 1);
}

.mega-product:hover .mega-product__name {
  color: rgba(15, 105, 230, 1);
}

.mega-product:hover .mega-product__desc {
  color: rgba(172, 181, 198, 1);
}

/* ---------- Solutions Mega Menu ---------- */
.site-mega-menu--solutions .mega-product__name {
  font-size: 16px;
}

/* 解决方案条目文案长，默认补上列间距（产品 mega 仍用 grid gap 纵向为主） */
.site-mega-menu--solutions .site-mega-menu__product-grid {
  gap: 28px 14px;
}

/* 约 1280–1679px（如 14 寸 / 2K 缩放 ~1512）：版心较窄，四列过挤，改为三列并允许换行 */
@media (min-width: 1280px) and (max-width: 1679px) {
  html.is-desktop[lang^="en"] [data-products-mega-menu] .site-mega-menu__product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 20px;
  }

  html.is-desktop[lang^="en"] [data-products-mega-menu] .mega-product__name-row {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  html.is-desktop[lang^="en"] [data-products-mega-menu] .mega-product__open-link {
    margin-left: 0;
  }

  html.is-desktop .site-mega-menu--solutions .site-mega-menu__product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 20px;
  }

  html.is-desktop .site-mega-menu--solutions .mega-product__name {
    white-space: normal;
    line-height: 1.4;
  }
}

/* ---------- Cases Mega Menu ---------- */

.site-mega-menu__cases {
  flex: 1;
  min-width: 0;
  padding: 26px 32px 26px 65px;
}

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

.mega-cases__category {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(36, 40, 58, 1);
  line-height: 22px;
}

.mega-cases__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-cases__list li a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(102, 102, 102, 1);
  line-height: 22px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-cases__list li a:hover {
  color: rgba(15, 105, 230, 1);
}

/* ---------- Mobile Drawer Navigation ---------- */

.mobile-nav {
  display: grid;
  gap: var(--space-4, 1rem);
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav__link,
.mobile-nav__submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav__submenu-toggle::after {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.mobile-nav__link.is-current {
  color: #0156c9;
}

.mobile-nav__item.is-open .mobile-nav__submenu-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.mobile-nav__submenu {
  display: none;
  padding: 0 0 1rem 1rem;
}

.mobile-nav__submenu a {
  display: block;
  padding: 0.55rem 0;
  color: #64748b;
  text-decoration: none;
}

.mobile-nav__item.is-open .mobile-nav__submenu {
  display: block;
}

.mobile-nav__meta {
  display: grid;
  gap: 0.75rem;
  padding-top: var(--space-6, 1.5rem);
}

.mobile-nav__lang-row {
  display: flex;
  gap: 0.75rem;
}

.mobile-nav__cta {
  display: inline-flex !important;
  height: 2.5rem;
  border-radius: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.mobile-nav__cta--block {
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav__lang-row .mobile-nav__cta,
.mobile-nav__lang-row .button {
  flex: 1;
}

.mobile-nav__badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  vertical-align: middle;
  margin-left: 4px;
}

.mobile-nav__badge--hot {
  background: #FFF1F0;
  color: #FF4D4F;
}

.mobile-nav__badge--new {
  background: #E6F7FF;
  color: #1890FF;
}

.mobile-nav__submenu-category {
  display: block;
  padding: 0.6rem 0 0.25rem;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mobile-nav__submenu-category:first-child {
  padding-top: 0;
}

/* ---------- Animations ---------- */

@keyframes mega-menu-fade {
  from {
    opacity: 0;
    transform: translateY(0.3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive – Desktop (>= 80rem / 1280px)
   ========================================================================== */

@media (min-width: 80rem) {
  .site-nav {
    display: block;
    min-width: 0;
    flex: 1;
  }

  .site-nav__item:first-child {
    margin-left: 0.6875rem;
  }

  .site-nav__list {
    justify-content: flex-start;
    height: 100%;
    gap: 0;
  }

  .site-header__utility-cluster,
  .site-header__cta-cluster {
    display: flex;
  }

  .site-header__utility,
  .site-header__divider,
  .site-header__cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* PC 宽屏使用桌面顶栏；窄屏由 1280px 以下规则强制切到移动导航 */
html.is-desktop .site-nav {
  display: block;
  min-width: 0;
  flex: 1;
}

html.is-desktop .site-nav__item:first-child {
  margin-left: 0.6875rem;
}

html.is-desktop .site-nav__list {
  justify-content: flex-start;
  height: 100%;
  gap: 0;
}

html.is-desktop .site-header__utility-cluster,
html.is-desktop .site-header__cta-cluster {
  display: flex;
}

html.is-desktop .site-header__utility,
html.is-desktop .site-header__divider,
html.is-desktop .site-header__cta {
  display: inline-flex;
}

html.is-desktop .menu-toggle {
  display: none;
}

@media (max-width: 79.9375rem) {
  .site-header .site-container--wide,
  html.is-desktop .site-header .site-container--wide {
    width: 100%;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .site-header__inner,
  html.is-desktop .site-header__inner {
    height: 3.75rem;
    gap: 1rem;
  }

  .brand__logo {
    height: 2rem;
  }

  .site-nav,
  html.is-desktop .site-nav,
  .site-header__utility-cluster,
  html.is-desktop .site-header__utility-cluster,
  .site-header__cta-cluster,
  html.is-desktop .site-header__cta-cluster,
  .site-header__utility,
  html.is-desktop .site-header__utility,
  .site-header__divider,
  html.is-desktop .site-header__divider,
  .site-header__cta,
  html.is-desktop .site-header__cta {
    display: none;
  }

  .menu-toggle,
  html.is-desktop .menu-toggle {
    display: inline-grid;
  }

  .site-mega-menu,
  html.is-desktop .site-mega-menu {
    display: none !important;
  }

  .brand__tagline {
    display: none;
  }
}

/* ==========================================================================
   Responsive – Tablet and below (<= 63.9375rem)
   ========================================================================== */

@media (max-width: 63.9375rem) {
  html:not(.is-desktop) .site-header .site-container--wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  html:not(.is-desktop) .site-header__inner {
    height: 3.75rem;
  }

  html:not(.is-desktop) .site-mega-menu {
    display: none;
  }

  html:not(.is-desktop) .brand__tagline {
    display: none;
  }
}

@media (max-width: 47.9375rem) {
  html:not(.is-desktop) .brand__logo {
    height: 1.75rem;
  }

  html:not(.is-desktop) .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  html:not(.is-desktop) .mobile-nav__link,
  html:not(.is-desktop) .mobile-nav__submenu-toggle {
    min-height: 2.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

/* PC：视口 <1280px 使用紧凑顶栏 / mega（原 64rem–80rem 区间）。
 * 低于 1105px 不再换一套规则：与 1105–1279px 相同，避免 <1024 时误用默认宽松导航撑破布局 */
@media (max-width: 1279px) {
  html.is-desktop .site-mega-menu {
    left: 24px;
  }

  html.is-desktop .site-mega-menu__sidebar {
    width: 240px;
    padding: 24px 20px 28px 20px;
  }

  html.is-desktop .site-mega-menu__products,
  html.is-desktop .site-mega-menu__cases {
    padding: 20px 20px 20px 24px;
  }

  html.is-desktop .site-mega-menu__product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
  }

  html.is-desktop[lang^="en"] [data-products-mega-menu] .site-mega-menu__product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 12px;
  }

  html.is-desktop .mega-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }

  html.is-desktop .site-nav__link {
    padding-inline: 0.75rem;
    font-size: 0.9375rem;
  }

  html.is-desktop .mega-product__name,
  html.is-desktop .mega-product__link {
    white-space: normal;
  }
}

/* Tablet: compact header CTAs next to menu */
@media (min-width: 48rem) and (max-width: 63.9375rem) {
  html:not(.is-desktop) .site-header__cta-cluster {
    display: flex;
    gap: 0.375rem;
  }

  html:not(.is-desktop) .site-header__cta {
    display: inline-flex;
    min-width: auto;
    padding-inline: 0.625rem;
    height: 1.875rem;
    font-size: 0.75rem;
    border-radius: 1rem;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .site-header .site-container--wide {
    padding-left: 8px;
    padding-right: 8px;
  }

  html:not(.is-desktop) .site-header__inner {
    gap: 0.5rem;
    height: 3.25rem;
  }

  html:not(.is-desktop) .brand__logo {
    height: 1.5rem;
  }

  html:not(.is-desktop) .menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  html:not(.is-desktop) .mobile-nav__link,
  html:not(.is-desktop) .mobile-nav__submenu-toggle {
    font-size: 0.875rem;
    padding: 0.625rem 0;
  }
}

/* source: styles/components/browser-language-prompt.css */
.browser-language-prompt {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  font-family: var(--font-sans);
}

.browser-language-prompt__scrim {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 45, 0.34);
  backdrop-filter: blur(7px) saturate(1.08);
}

.browser-language-prompt__dialog {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: min(39.5rem, 100%);
  padding: 2.25rem;
  overflow: hidden;
  border: 1px solid rgba(184, 212, 240, 0.78);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 0%, rgba(36, 107, 255, 0.13), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(0, 187, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, #ffffff 52%);
  box-shadow: 0 28px 80px rgba(15, 38, 84, 0.22), 0 10px 28px rgba(36, 107, 255, 0.08);
  color: var(--color-text);
  transform-origin: center;
  animation: browser-language-prompt-enter 220ms ease-out;
}

.browser-language-prompt__dialog::before {
  content: none;
}

.browser-language-prompt__dialog::after {
  content: "";
  position: absolute;
  right: -4.25rem;
  top: -4.5rem;
  z-index: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(36, 107, 255, 0.08);
  pointer-events: none;
}

.browser-language-prompt__dialog > * {
  position: relative;
  z-index: 1;
}

.browser-language-prompt__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(36, 107, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.browser-language-prompt__close::before,
.browser-language-prompt__close::after {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
}

.browser-language-prompt__close::before {
  transform: rotate(45deg);
}

.browser-language-prompt__close::after {
  transform: rotate(-45deg);
}

.browser-language-prompt__close:hover,
.browser-language-prompt__close:focus-visible {
  color: var(--color-primary);
  border-color: rgba(36, 107, 255, 0.26);
  background: #ffffff;
  outline: 2px solid rgba(36, 107, 255, 0.22);
  outline-offset: 2px;
  transform: rotate(90deg);
}

.browser-language-prompt__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding-right: 2.25rem;
}

.browser-language-prompt__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--color-primary), #00bbff);
  box-shadow: 0 16px 30px rgba(36, 107, 255, 0.26);
}

.browser-language-prompt__mark::before {
  content: "A";
  position: absolute;
  left: 0.72rem;
  top: 0.62rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.browser-language-prompt__mark::after {
  content: "文";
  position: absolute;
  right: 0.58rem;
  bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.browser-language-prompt__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.browser-language-prompt__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.08rem, 1.2vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
}

.browser-language-prompt__title--secondary {
  margin-top: 1rem;
  padding-left: 4.25rem;
  color: var(--color-text-soft);
}

.browser-language-prompt__remember {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 1.25rem 0 0 4.25rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
}

.browser-language-prompt__remember input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.browser-language-prompt__check {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(36, 107, 255, 0.32);
  background: #ffffff;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.browser-language-prompt__remember input:focus-visible + .browser-language-prompt__check {
  outline: 2px solid rgba(36, 107, 255, 0.42);
  outline-offset: 3px;
}

.browser-language-prompt__remember input:checked + .browser-language-prompt__check {
  border-color: var(--color-primary);
  background: radial-gradient(circle at center, var(--color-primary) 0 44%, #ffffff 48% 100%);
  box-shadow: 0 0 0 3px rgba(36, 107, 255, 0.12);
}

.browser-language-prompt__actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.45rem;
  padding-left: 4.25rem;
}

.browser-language-prompt__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.1rem;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.browser-language-prompt__button:hover,
.browser-language-prompt__button:focus-visible {
  transform: translateY(-1px);
}

.browser-language-prompt__button:focus-visible {
  outline: none;
}

.browser-language-prompt__button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #00bbff);
  box-shadow: 0 16px 32px rgba(36, 107, 255, 0.22);
}

.browser-language-prompt__button--primary:hover,
.browser-language-prompt__button--primary:focus-visible {
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(36, 107, 255, 0.28);
}

.browser-language-prompt__button--secondary {
  color: var(--color-text-soft);
  background: rgba(239, 246, 255, 0.72);
}

.browser-language-prompt__button--secondary:hover,
.browser-language-prompt__button--secondary:focus-visible {
  color: var(--color-primary);
  background: #ffffff;
}

@keyframes browser-language-prompt-enter {
  from {
    opacity: 0;
    transform: translateY(0.5rem) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .browser-language-prompt {
    padding: 1rem;
  }

  .browser-language-prompt__dialog {
    padding: 2rem 1.25rem 1.5rem;
  }

  .browser-language-prompt__header {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-right: 2rem;
  }

  .browser-language-prompt__mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .browser-language-prompt__title {
    font-size: 1rem;
  }

  .browser-language-prompt__title--secondary,
  .browser-language-prompt__actions {
    padding-left: 0;
  }

  .browser-language-prompt__remember {
    align-items: flex-start;
    margin-left: 0;
    font-size: 0.9rem;
  }

  .browser-language-prompt__button {
    min-height: 3rem;
    font-size: 0.95rem;
  }
}

/* source: styles/components/drawer.css */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--color-overlay);
}

.site-drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(100vw, 24rem);
  height: 100vh;
  padding: var(--space-6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.98)),
    var(--color-surface);
  box-shadow: -32px 0 72px rgba(10, 23, 49, 0.16);
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.site-drawer.is-open {
  transform: translateX(0);
}

.site-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.site-drawer__close {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
  color: var(--color-text);
  background: rgba(16, 35, 71, 0.06);
}

.site-drawer__close::before,
.site-drawer__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 0.12rem;
  border-radius: 999px;
  background: currentColor;
}

.site-drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-drawer__body {
  overflow-y: auto;
  padding-top: var(--space-5);
  padding-bottom: max(var(--space-5), env(safe-area-inset-bottom, 0px));
}

@media (max-width: 47.9375rem) {
  html:not(.is-desktop) .site-drawer {
    width: min(100vw - 0.5rem, 24rem);
    padding: var(--space-4) max(var(--space-4), env(safe-area-inset-right, 0px)) var(--space-4)
      max(var(--space-4), env(safe-area-inset-left, 0px));
  }
}

@media (min-width: 80rem) {
  .drawer-backdrop,
  .site-drawer {
    display: none;
  }
}

html.is-desktop .drawer-backdrop,
html.is-desktop .site-drawer {
  display: none !important;
}

@media (max-width: 79.9375rem) {
  html.is-desktop .drawer-backdrop:not([hidden]) {
    display: block !important;
  }

  html.is-desktop .site-drawer:not([hidden]) {
    display: grid !important;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .site-drawer {
    width: 100vw;
    padding: 56px 8px var(--space-6) 8px;
  }

  html:not(.is-desktop) .mobile-nav__link {
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }

  html:not(.is-desktop) .mobile-nav__submenu-toggle {
    font-size: 0.875rem;
  }

  html:not(.is-desktop) .mobile-nav__submenu-link {
    font-size: 0.8125rem;
    padding-left: 1rem;
  }
}

/* source: styles/components/hero.css */
.hero {
  padding-top: clamp(2rem, 1rem + 1.8vw, 3rem);
}

.hero__layout {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

.hero__content {
  display: grid;
  gap: var(--space-6);
}

.hero__description {
  max-width: 40rem;
  font-size: clamp(1.05rem, 0.95rem + 0.25vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero__proof {
  display: grid;
  gap: var(--space-4);
}

.hero__proof-item {
  display: grid;
  gap: var(--space-2);
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(16, 35, 71, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xs);
}

.hero__proof-item strong {
  font-size: 1.25rem;
  color: var(--color-text);
}

.hero__media {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: var(--space-4);
  padding: clamp(1rem, 0.8rem + 0.8vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(111, 184, 255, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(16, 35, 71, 0.98), rgba(10, 23, 49, 0.98));
  box-shadow: var(--shadow-lg);
}

.hero__media > img {
  width: 100%;
  border-radius: 1.45rem;
}

.hero__media-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(36, 107, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.hero__media-card strong {
  font-size: 1.1rem;
  color: var(--color-text);
}

@media (min-width: 48rem) {
  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(30rem, 0.96fr);
  }

  .hero__media-card {
    position: absolute;
    max-width: 15rem;
  }

  .hero__media-card--top {
    top: 1.5rem;
    right: 1.5rem;
  }

  .hero__media-card--bottom {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 63.9375rem) {
  html:not(.is-desktop) .hero__layout {
    gap: var(--space-8);
  }

  html:not(.is-desktop) .hero__media-card {
    position: relative;
    inset: auto;
  }
}

@media (max-width: 47.9375rem) {
  html:not(.is-desktop) .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  html:not(.is-desktop) .hero__actions > * {
    width: 100%;
    justify-content: center;
  }

  html:not(.is-desktop) .hero__proof {
    grid-template-columns: 1fr;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .hero__title {
    font-size: 1.375rem;
  }

  html:not(.is-desktop) .hero__subtitle {
    font-size: 0.875rem;
  }

  html:not(.is-desktop) .hero__actions {
    gap: 0.5rem;
  }
}

/* source: styles/components/carousel.css */
/* ==========================================================================
   Hero Carousel
   Design: bg image aspect-ratio 1024/281, light blue gradient
   ========================================================================== */

.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-carousel__track {
  position: relative;
  height: 527px;
}

html.is-desktop [data-hero-carousel] .hero-carousel__track {
  height: 527px;
  min-height: 527px;
  max-height: 527px;
  overflow: hidden;
}

/* ---------- Slide ---------- */

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s 0.6s;
}

.hero-carousel__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s 0s;
  z-index: 2;
}

/* 首页轮播：激活页高度与轨道一致，避免变窄时左侧换行把整块（含配图）撑高 */
html.is-desktop [data-hero-carousel] .hero-carousel__slide.is-active {
  height: 527px;
  max-height: 527px;
  overflow: hidden;
  padding-bottom: 22px;
}

.hero-carousel__bg {
  position: absolute;
  inset: 0;
  height: 527px;
  background: url("/assets/images/home/hero-bg.png") center / cover no-repeat;
  z-index: 0;
}

/* ---------- Slide Inner ---------- */

.hero-carousel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

html.is-desktop .hero-carousel__inner {
  width: var(--content-max-width);
  max-width: none;
  padding-inline: 0;
}

/* ---------- Text (Left) ---------- */

.hero-carousel__text {
  flex: 0 0 49%;
  /* padding-top: 112px; */
}

.hero-carousel__title {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(22px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.53;
  color: #1d2234;
  letter-spacing: -0.01em;
}

.hero-carousel__subtitle {
  margin: 22px 0 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(15px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing:-2px;
  color: #313647;
}

.hero-carousel__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(24px, 4vw, 76px);
}

/* ---------- CTA Buttons ---------- */

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  height: 42px;
  padding: 0 28px;
  border-radius: 21px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  /* font-weight: 500; */
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.hero-btn--primary {
  background: linear-gradient(135deg, #0c66ff 0%, #00bbff 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(12, 102, 255, 0.2);
}

.hero-btn--primary:hover {
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(12, 102, 255, 0.35);
  transform: translateY(-1px);
}

.hero-btn--ghost {
  background: #ffffff;
  color: #1d2234;
}

.hero-btn--ghost:hover {
  border-color: #0c66ff;
  color: #0c66ff;
  transform: translateY(-1px);
}

/* ---------- Media (Right) ---------- */

.hero-carousel__media {
  flex: 1 1 56%;
  min-width: 0;
  /* padding-top: 29px; */
  display: flex;
  justify-content: flex-end;
}

.hero-carousel__media img {
  display: block;
  max-width: 813px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 首页轮播配图：固定宽高比，随列宽变窄时等比变矮 */
html.is-desktop [data-hero-carousel] .hero-carousel__media img {
  width: min(100%, 813px);
  max-width: none;
  aspect-ratio: 813 / 449;
  object-fit: contain;
}

html.is-desktop[lang^="ja"] .hero-carousel__subtitle br {
  display: none;
}

/* ---------- Controls ---------- */

.hero-controls {
  position: absolute;
  bottom: 60px;
  left: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

html.is-desktop .hero-controls {
  left: var(--gutter-x);
}

.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-carousel__dot {
  width: 36px;
  height: 3px;
  border: none;
  border-radius: 1.5px;
  background: rgba(12, 102, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-carousel__dot.is-active {
  width: 56px;
  background: #0c66ff;
}

.hero-carousel__dot:hover:not(.is-active) {
  background: rgba(12, 102, 255, 0.4);
}

.hero-carousel__arrows {
  display: flex;
  gap: 8px;
}

.hero-carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d9dce6;
  border-radius: 50%;
  background: #ffffff;
  color: #313647;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.hero-carousel__arrow svg {
  width: 16px;
  height: 16px;
}

.hero-carousel__arrow:hover {
  background: #0c66ff;
  border-color: #0c66ff;
  color: #ffffff;
}

/* ==========================================================================
   Hero Features (Bottom Bar)
   Design: 4 independent cards, 396×92, white bg, border-radius 8px, gap 21px
   Container: padding 0 136px, margin-top -22px (overlap carousel)
   ========================================================================== */

.hero-features {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin-inline: auto;
  padding: 0 1rem;
  margin-top: -22px;
  box-sizing: border-box;
}

html.is-desktop .hero-features {
  width: var(--content-max-width);
  max-width: none;
  padding-inline: 0;
  /* 保持四列且不出主列：在 --content-max-width 内均分，可略窄于设计稿 396px */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}

.hero-features__card {
  display: flex;
  flex-direction: column;
  height: 92px;
  padding: 14px 32px 0;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.hero-features__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.hero-features__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #24283A;
  line-height: 30px;
  text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.16);
  text-align: left;
}

.hero-features__arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #24283A;
  transition: transform 0.2s ease, color 0.2s ease;
  margin-top: 2px;
}

.hero-features__card:hover .hero-features__arrow {
  transform: translateX(4px);
  color: #0c66ff;
}

.hero-features__desc {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  color: #393E4F;
  line-height: 30px;
  text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.16);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 64rem) {
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
  }
}

@media (max-width: 79.9375rem) {
  html:not(.is-desktop) .hero-carousel__inner {
    padding: 0 32px;
  }

  html:not(.is-desktop) .hero-controls {
    left: 32px;
  }

  html:not(.is-desktop) .hero-features {
    padding: 0 32px;
  }

  html:not(.is-desktop) .hero-carousel__text {
    flex: 0 1 50%;
  }

  html:not(.is-desktop) .hero-carousel__media {
    flex: 1;
    min-width: 0;
  }

  html:not(.is-desktop) .hero-carousel__media img {
    max-width: 100%;
  }
}

@media (max-width: 63.9375rem) {
  html:not(.is-desktop) .hero-carousel__track {
    aspect-ratio: auto;
    min-height: 480px;
  }

  html:not(.is-desktop) .hero-carousel__slide {
    min-height: 480px;
  }

  html:not(.is-desktop) .hero-carousel__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 24px 80px;
    gap: 2rem;
  }

  html:not(.is-desktop) .hero-carousel__text {
    max-width: 100%;
    padding-top: 0;
  }

  html:not(.is-desktop) .hero-carousel__media {
    padding-top: 0;
    width: 100%;
    justify-content: center;
  }

  html:not(.is-desktop) .hero-carousel__media img {
    max-width: 100%;
  }

  html:not(.is-desktop) .hero-controls {
    left: 24px;
    bottom: 32px;
  }

  html:not(.is-desktop) .hero-features {
    padding: 0 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  html:not(.is-desktop) .hero-features__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .hero-features__desc {
    font-size: 14px;
  }
}

@media (max-width: 47.9375rem) {
  html:not(.is-desktop) .hero-carousel__track {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  html:not(.is-desktop) .hero-carousel__slide {
    min-height: 0;
  }

  html:not(.is-desktop) .hero-carousel__bg {
    height: 100%;
    min-height: 0;
  }

  html:not(.is-desktop) .hero-carousel__inner {
    padding: 32px max(16px, env(safe-area-inset-left)) 64px max(16px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .hero-carousel__title {
    line-height: 1.4;
  }

  html:not(.is-desktop) .hero-carousel__subtitle {
    letter-spacing: -0.02em;
    margin-top: 10px;
  }

  html:not(.is-desktop) .hero-carousel__actions {
    flex-direction: column;
    gap: 10px;
  }

  html:not(.is-desktop) .hero-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 42px;
    font-size: 15px;
  }

  html:not(.is-desktop) .hero-carousel__media {
    display: none;
  }

  html:not(.is-desktop) .hero-controls {
    left: max(16px, env(safe-area-inset-left));
    bottom: max(12px, env(safe-area-inset-bottom));
    flex-wrap: wrap;
    gap: 10px;
  }

  html:not(.is-desktop) .hero-features {
    padding: 0 max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-right));
    grid-template-columns: 1fr;
    gap: 10px;
  }

  html:not(.is-desktop) .hero-features__card {
    height: auto;
    min-height: 72px;
    padding: 12px 14px;
  }

  html:not(.is-desktop) .hero-features__title {
    font-size: 16px;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .hero-carousel__inner {
    padding: 16px 8px 72px;
  }

  html:not(.is-desktop) .hero-carousel__subtitle {
    margin-top: 12px;
  }

  html:not(.is-desktop) .hero-carousel__actions {
    gap: 8px;
  }

  html:not(.is-desktop) .hero-btn {
    font-size: 14px;
    height: 38px;
    border-radius: 19px;
    padding: 0 16px;
  }

  html:not(.is-desktop) .hero-controls {
    left: 8px;
    bottom: 12px;
    gap: 8px;
  }

  html:not(.is-desktop) .hero-carousel__dot {
    width: 24px;
    height: 2px;
  }

  html:not(.is-desktop) .hero-carousel__dot.is-active {
    width: 36px;
  }

  html:not(.is-desktop) .hero-features {
    padding: 0 8px;
    gap: 8px;
  }

  html:not(.is-desktop) .hero-features__card {
    min-height: 56px;
    padding: 10px;
  }

  html:not(.is-desktop) .hero-features__title {
    font-size: 14px;
  }

  html:not(.is-desktop) .hero-features__desc {
    font-size: 11px;
  }
}

/* source: styles/components/core-products.css */
/* ═══════════════════════════════════════════════════════
   Core Products Section — Enterprise-Grade Visual System
   ═══════════════════════════════════════════════════════ */

/* ── Section Shell ── */
.home-core-products {
  padding: 0px 0 0 0;
  margin-top: 31px;
  height: 2030px;
  background: url("/assets/images/home/core-products-bg.png") top center / 100% 100% no-repeat;
  width: 100%;
  position: relative;
  z-index: 10;
}

.home-core-products::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("/assets/images/home/hero-core-transition-bg.png") center / cover no-repeat;
  pointer-events: none;
}

/* ── Section Header ── */
.core-products__header {
  text-align: center;
  padding-top: 32px;
  margin-bottom: 40px;
}

html.is-desktop .core-products__header {
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
  margin-inline: auto;
  box-sizing: border-box;
}

.core-products__eyebrow {
  display: none;
}

.core-products__title {
    display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.5vw, 36px);
  color: #000000;
  line-height: 1.3;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 0 0 16px;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
}

.core-products__title::before {
  content: none !important;
}

.core-products__title::after {
    content: "";
    position: absolute;
    width: calc(100% - 50px);
  height: 26px;
  background-image: url("/assets/images/home/core-title-pill-image.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
    right: -18px;
    bottom: 6px;
    transform: none;
  z-index: -1;
  pointer-events: none;
}

.core-products__icon {
  display: inline-block;
  width: 46px;
  height: 36px;
  flex-shrink: 0;
}

.core-products__subtitle {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: normal;
  font-size: clamp(15px, 1.4vw, 20px);
  color: #393E4F;
  line-height: 28px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  width: 100%;
  margin: 13px auto 0;
}

/* ── Container ── */
.core-products__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 82px;
  box-sizing: border-box;
}

html.is-desktop .core-products__container {
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
}

/* ═══════════════════════════════════════
   数据中台 Hero
   ═══════════════════════════════════════ */
.cp-hero {
  width: 100%;
}

.cp-hero__header {
  margin-bottom: 20px;
}

.cp-hero__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.85);
  line-height: 50px;
  margin: 0;
}

.cp-hero__title-icon {
  width: 16px;
  height: 32px;
  flex-shrink: 0;
}

.cp-hero__desc {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #393E4F;
  line-height: 28px;
  margin: 10px 0 0;
}

.cp-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cp-hero__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* 与截图区「产品试用 / 产品详情」胶囊按钮一致：宽度随文案，非固定 105px */
.cp-hero__actions .cp-action-btn {
  width: auto;
  min-width: 0;
  padding: 0 22px;
}

.cp-row__buttons .cp-action-btn {
  width: auto;
  min-width: 0;
  height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 14px;
}

.cp-action-btn--external img {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  margin-top: 2px;
}

.cp-row__buttons .cp-action-btn--external img {
  width: 10px;
  height: 10px;
  margin-left: 6px !important;
  margin-top: 1px !important;
}

/* 与附件主按钮一致：左深右浅的横向渐变（截图区按钮仍为 135deg） */
.cp-hero__actions .cp-action-btn--primary {
  background: linear-gradient(90deg, #0c66ff 0%, #00bbff 100%);
}

.cp-action-btn__icon {
  flex-shrink: 0;
  margin-inline-end: 6px;
}

.cp-hero__screenshot {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  /*border: 1px solid #E1E9F2;*/
  /*box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);*/
}

.cp-hero__screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════
   Gradient Tags
   ═══════════════════════════════════════ */
.cp-tag--gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 6px;
  background: linear-gradient(99deg, #0B66FF 0%, #00BBFF 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   Two-Column Rows
   ═══════════════════════════════════════ */
.cp-row {
  margin-top: -20px;
  display: flex;
  flex-wrap: wrap;
  gap: 53px;
  align-items: stretch;
}

.cp-row__cards {
  flex: 40 1 0;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cp-row__image {
  position: relative;
  flex: 56 1 0;
  min-width: 0;
  width: 100%;
  max-width: 933px;
  aspect-ratio: 933 / 570;
  min-height: 240px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 12px 1px rgba(0, 0, 0, 0.06);
}

.cp-row__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(224deg, #DBECFC 0%, #F7FBFF 100%);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.cp-row__buttons {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  z-index: 10;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: calc(100% - 32px);
  pointer-events: auto;
}

.cp-row__buttons--right {
  left: auto;
  right: 16px;
}

.cp-row__screenshot {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
    padding: 46px 50px 10px 50px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.55) 78%, transparent 100%);
    mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.55) 78%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.cp-row__screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  transform: scale(1.08);
  transform-origin: center center;
  transition: opacity 0.4s ease;
}

.cp-row__screenshot img.is-fading {
  opacity: 0;
}

/* ═══════════════════════════════════════
   Action Buttons (圆角胶囊)
   ═══════════════════════════════════════ */
.cp-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 36px;
  padding: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #D9DCE6;
  color: #1D2234;
  font-size: 16px;
  /* font-weight: 500; */
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cp-action-btn[hidden] {
  display: none !important;
}

.cp-action-btn--primary {
  background: linear-gradient(135deg, #0C66FF 0%, #00BBFF 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 16px rgba(12, 102, 255, 0.2);
}

.cp-action-btn--primary:hover {
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(12, 102, 255, 0.35);
  transform: translateY(-1px);
}

.cp-action-btn--ghost {
  background: #FFFFFF;
  color: #0C66FF;
  border-color: #6AA2FF;
}

.cp-action-btn--ghost:hover {
  border-color: #0C66FF;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   Product Cards (600×170)
   ═══════════════════════════════════════ */
.cp-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f0f4fa;
  cursor: pointer;
  transition: background-image 0.35s ease, box-shadow 0.3s ease;
}

.cp-card.is-active .cp-card__title {
  color: #fff;
}

.cp-card.is-active .cp-card__desc {
  color: rgba(255, 255, 255, 0.9);
}

.cp-card.is-active .cp-pill {
  background: rgba(255, 255, 255, 0.9);
  color: #0F69E6;
}

.cp-card--no-bg-color {
  background-color: transparent;
}

.cp-card__body {
  position: relative;
  z-index: 1;
  padding: 20px 28px 20px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-card__title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.3;
  margin: 7px 0 6px 28px
}

.cp-card__desc {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #393E4F;
  line-height: 20px;
  margin: 10px 0 10px;
  max-width: 420px;
}

.cp-card__tags {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

/* ── Dark Card ── */
.cp-card--dark {
  background-color: #1a5be0;
}

.cp-card--dark .cp-card__title {
  color: #fff;
}

.cp-card--dark .cp-card__desc {
  color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════
   Pill Tags
   ═══════════════════════════════════════ */
.cp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 18px;
  border-radius: 15px;
  background: #FFFFFF;
  border: none;
  font-weight: 500;
  font-size: 14px;
  color: #394C9C;
  line-height: 36px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  white-space: nowrap;
}

.cp-pill--blue {
  color: #6D6CD4;
}

.cp-pill--on-dark {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: #0F69E6;
}

.cp-card--tags .cp-pill--on-dark {
  color: #1093E2;
}

.cp-pill--purple {
  color: #6D6CD4;
}

.cp-pill--teal {
  color: #008F83;
}

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */
@media (max-width: 1200px) {
  html:not(.is-desktop) .home-core-products {
    height: auto;
    min-height: 0;
    padding-bottom: 48px;
    margin-top: 16px;
    background-size: 100% auto;
  }

  html:not(.is-desktop) .core-products__header {
    padding-top: 24px;
    margin-bottom: 24px;
  }

  html:not(.is-desktop) .core-products__title {
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .core-products__title::after {
      width: calc(100% - 42px);
      right: -14px;
  }

  html:not(.is-desktop) .core-products__subtitle {
    line-height: 1.5;
    padding: 0 8px;
  }

  html:not(.is-desktop) .core-products__container {
    width: 100%;
    max-width: 100%;
    gap: 48px;
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .cp-row {
    flex-direction: column;
    gap: 24px;
  }

  html:not(.is-desktop) .cp-row__cards {
    flex: none;
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }

  html:not(.is-desktop) .cp-row__image {
    width: 100%;
    max-width: 100%;
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }

  html:not(.is-desktop) .cp-hero__title {
    font-size: 24px;
    line-height: 36px;
  }

  html:not(.is-desktop) .cp-hero__desc {
    font-size: 15px;
  }

  html:not(.is-desktop) .cp-hero__row {
    flex-direction: column;
    align-items: flex-start;
  }

  html:not(.is-desktop) .cp-hero__actions {
    flex-wrap: wrap;
    width: 100%;
  }

  html:not(.is-desktop) .cp-hero__actions .cp-action-btn {
    white-space: normal;
    line-height: 1.35;
    height: auto;
    min-height: 36px;
    padding: 8px 16px;
  }

  html:not(.is-desktop) .cp-card {
    height: auto;
    min-height: 0;
    max-width: 100%;
    background-size: 100% 100%;
    background-position: center;
  }

  html:not(.is-desktop) .cp-card__body {
    padding: 22px 16px 14px 30px;
  }

  html:not(.is-desktop) .cp-card__title {
    font-size: 20px;
    margin: 0;
    line-height: 1.35;
  }

  html:not(.is-desktop) .cp-card__desc {
    font-size: 14px;
    max-width: 85%;
    line-height: 1.5;
    margin: 6px 0 8px;
  }

  html:not(.is-desktop) .cp-card__tags {
    gap: 8px;
  }

  html:not(.is-desktop) .cp-pill {
    height: 28px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 28px;
    border-radius: 14px;
  }

  html:not(.is-desktop) .cp-row__screenshot {
    padding: 40px 12px 12px 12px;
    -webkit-mask-image: radial-gradient(
      ellipse 96% 90% at 50% 50%,
      #000 0%,
      #000 48%,
      rgba(0, 0, 0, 0.5) 82%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 96% 90% at 50% 50%,
      #000 0%,
      #000 48%,
      rgba(0, 0, 0, 0.5) 82%,
      transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  html:not(.is-desktop) .cp-row__screenshot img {
    transform: scale(1.04);
  }

  html:not(.is-desktop) .cp-row__buttons {
    position: relative;
    top: auto;
    right: auto;
    justify-content: flex-start;
    padding: 12px 16px 0;
    z-index: 3;
    flex-wrap: wrap;
    gap: 8px;
  }

  html:not(.is-desktop) .cp-action-btn {
    width: auto;
    min-width: 88px;
    padding-inline: 12px;
    font-size: 14px;
  }
}

@media (max-width: 47.9375rem) {
  html:not(.is-desktop) .core-products__title {
    font-size: 22px;
  }

  html:not(.is-desktop) .cp-hero__actions,
  html:not(.is-desktop) .cp-hero__tags {
    width: 100%;
  }

  html:not(.is-desktop) .cp-hero__tags {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  html:not(.is-desktop) .cp-tag--gradient {
    flex-shrink: 0;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .home-core-products {
    padding-bottom: 32px;
    margin-top: 8px;
  }

  html:not(.is-desktop) .core-products__header {
    padding-top: 16px;
    margin-bottom: 16px;
  }

  html:not(.is-desktop) .core-products__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .core-products__title::after {
      width: calc(100% - 42px);
      right: -14px;
  }

  html:not(.is-desktop) .core-products__subtitle {
    font-size: 14px;
    padding: 0 4px;
  }

  html:not(.is-desktop) .core-products__container {
    padding: 0 8px;
    gap: 32px;
  }

  html:not(.is-desktop) .cp-hero__title {
    font-size: 20px;
    line-height: 1.4;
  }

  html:not(.is-desktop) .cp-hero__desc {
    font-size: 14px;
  }

  html:not(.is-desktop) .cp-card {
    min-height: 140px;
  }

  html:not(.is-desktop) .cp-card__body {
    padding: 14px 14px 12px 28px;
  }

  html:not(.is-desktop) .cp-card__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .cp-card__desc {
    font-size: 14px;
  }

  html:not(.is-desktop) .cp-row__screenshot {
    padding: 20px 12px;
  }

  html:not(.is-desktop) .cp-action-btn {
    min-width: 72px;
    font-size: 14px;
    padding-inline: 8px;
  }

  html:not(.is-desktop) .cp-hero__actions .cp-action-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cp-row__screenshot img {
    transform: none;
  }
}

/* source: styles/components/industries.css */
/* ═══════════════════════════════════════════════════════
   Industry Solutions Section
   Strict prototype alignment — dual-state card system
   ═══════════════════════════════════════════════════════ */

/* ── Section ── */
.home-industries {
  padding: 57px 0 0 0;
  height: 1034px;
  background: url("/assets/images/home/industries-bg.png") top center / 100% 100% no-repeat;
  width: 100%;
}

/* ── Header ── */
.industries__header {
  text-align: center;
  padding-top: 32px;
  margin-bottom: 43px;
}

.industries__title {
    display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #000000;
  line-height: 46px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 0 0 16px;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
}

.industries__title::after {
      content: "";
      position: absolute;
      width: calc(100% - 50px);
    height: 26px;
    background-image: url(/assets/images/home/core-title-pill-image.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
      right: -18px;
      bottom: 6px;
      transform: none;
      z-index: -1;
      pointer-events: none;
}

.industries__icon {
  display: inline-block;
  width: 46px;
  height: 36px;
  flex-shrink: 0;
}

.industries__subtitle {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: normal;
  font-size: 20px;
  color: #393E4F;
  line-height: 28px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  width: 100%;
  margin: 13px auto 0;
}

html.is-desktop .industries__header {
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
  margin-inline: auto;
  box-sizing: border-box;
}

/* ── Container ── */
.industries__container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

html.is-desktop .industries__container {
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
  margin-inline: auto;
  box-sizing: border-box;
}

/* ── Grid: 3 col × 2 row ── */
.industries__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* ═══════════════════════════════════════════════════════
   Card Shell — Fixed height, contains both states
   ═══════════════════════════════════════════════════════ */
.industry-card {
  position: relative;
  width: 100%;
  max-width: 515px;
  height: 375px;
  background: #ffffff;
  border-radius: 6px;
  border: none;
  overflow: hidden;
  transition: box-shadow 300ms ease;
  box-shadow: 0 12px 24px 1px rgba(51, 51, 51, 0.03);
}

.industry-card:hover {
  box-shadow: 0 14px 28px 1px rgba(51, 51, 51, 0.05);
}

/* ═══════════════════════════════════════════════════════
   DEFAULT STATE — Image top + centered text bottom
   Visible by default, hidden on hover
   ═══════════════════════════════════════════════════════ */
.industry-card__default {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: opacity 180ms ease, visibility 0s 180ms;
}

.industry-card:hover .industry-card__default {
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s 0s;
}

/* Image area — top 55% */
.industry-card__image {
  width: 100%;
  height: 222px;
  flex: 0 0 222px;
  background: #f4f6f8;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8bfc8;
  overflow: hidden;
}

.industry-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.industry-card__image svg {
  display: none;
}

/* Info area — bottom 45% */
.industry-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 2px;
}

.industry-card__title {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #262626;
  line-height: 40px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 12px 0 6px 35px;
  width: calc(100% - 101px);
}

.industry-card__desc {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #5A5D6B;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0 0 0 35px;
  width: calc(100% - 70px);
}

/* Default CTA — single outlined button, centered */
.industry-card__cta {
  position: absolute;
  right: 43px;
  top: 245px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   HOVER STATE — Content expanded, left-aligned
   Hidden by default, visible on hover
   ═══════════════════════════════════════════════════════ */
.industry-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 36px 24px 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s 220ms;
  background: linear-gradient(180deg, rgba(225,235,255,1) 0%, rgba(245,250,255,1) 100%);
  z-index: 2;
}

.industry-card:hover .industry-card__hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease, visibility 0s 0s;
}

.industry-card__hover-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.industry-card__hover-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Checklist */
.industry-card__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.industry-card__checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5A5D6B;
  line-height: 1.35;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
}

.industry-card__checklist li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Hover actions — two buttons, centered */
.industry-card__hover-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

/* ═══════════════════════════════════════════════════════
   Button System
   ═══════════════════════════════════════════════════════ */
.ind-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  /* font-weight: 600; */
  width: 162px;
  height: 36px;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.ind-btn--primary {
  background: linear-gradient(90deg, #1677FF 0%, #00B4FF 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0px 4px 10px rgba(0, 150, 255, 0.3);
}

.ind-btn--primary:hover {
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0px 6px 14px rgba(0, 150, 255, 0.35);
}

.ind-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.ind-btn--outline:hover {
  background: rgba(36, 107, 255, 0.06);
}

.industry-card__cta .ind-btn--outline {
  background: transparent;
  color: transparent;
  border-color: transparent;
  padding: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
}

.industry-card__cta .ind-btn--outline::before {
  content: "\2192";
  color: #272636;
  font-size: 24px;
  width: 24px;
  height: 19px;
  line-height: 1;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */
@media (max-width: 64rem) {
  html:not(.is-desktop) .home-industries {
    height: auto;
    min-height: 0;
    padding-bottom: 48px;
  }

  html:not(.is-desktop) .industries__header {
    padding-top: 24px;
    margin-bottom: 28px;
  }

  html:not(.is-desktop) .industries__title {
    font-size: 28px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .industries__title::after {
      width: calc(100% - 42px);
      right: -14px;
      transform: none;
      bottom: 4px;
    }

  html:not(.is-desktop) .industries__subtitle {
    font-size: 17px;
    padding: 0 12px;
  }

  html:not(.is-desktop) .industries__container {
    width: calc(100% - 48px);
    max-width: 100%;
    padding: 0 max(8px, env(safe-area-inset-left)) 0 max(8px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  html:not(.is-desktop) .industry-card {
    min-height: 340px;
    max-width: 100%;
  }

  html:not(.is-desktop) .industry-card__cta {
    right: clamp(16px, 4vw, 43px);
    top: auto;
    bottom: clamp(16px, 6vw, 32px);
  }
}

@media (max-width: 40rem) {
  html:not(.is-desktop) .industries__title {
    font-size: 22px;
  }

  html:not(.is-desktop) .industries__container {
    width: calc(100% - 32px);
  }

  html:not(.is-desktop) .industries__grid {
    grid-template-columns: 1fr;
  }

  html:not(.is-desktop) .industry-card {
    min-height: 0;
    height: auto;
    max-width: 100%;
  }

  html:not(.is-desktop) .industry-card__default {
    flex-direction: row;
    align-items: center;
    opacity: 1;
    visibility: visible;
  }

  html:not(.is-desktop) .industry-card:hover .industry-card__default {
    opacity: 1;
    visibility: visible;
  }

  html:not(.is-desktop) .industry-card__image {
    width: 100px;
    height: 80px;
    flex: 0 0 100px;
    border-radius: 8px 0 0 8px;
  }

  html:not(.is-desktop) .industry-card__info {
    flex: 1;
    padding: 10px 12px;
    gap: 2px;
  }

  html:not(.is-desktop) .industry-card__title {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
    width: 100%;
  }

  html:not(.is-desktop) .industry-card__desc {
    font-size: 14px;
    margin: 0;
    width: 100%;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  html:not(.is-desktop) .industry-card__cta {
    position: static;
    margin-top: 4px;
  }

  html:not(.is-desktop) .industry-card__hover {
    display: none;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .home-industries {
    padding-bottom: 32px;
  }

  html:not(.is-desktop) .industries__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .industries__subtitle {
    font-size: 14px;
    padding: 0 4px;
  }

  html:not(.is-desktop) .industries__container {
    width: calc(100% - 16px);
    padding: 0 4px;
  }

  html:not(.is-desktop) .industries__grid {
    gap: 12px;
  }

  html:not(.is-desktop) .industry-card {
    min-height: 240px;
  }

  html:not(.is-desktop) .industry-card__image {
    height: 160px;
    flex: 0 0 160px;
  }

  html:not(.is-desktop) .industry-card__title {
    font-size: 16px;
    margin-left: 12px;
    width: calc(100% - 24px);
  }

  html:not(.is-desktop) .industry-card__desc {
    font-size: 14px;
    margin-left: 12px;
    width: calc(100% - 24px);
  }

  html:not(.is-desktop) .industry-card__hover {
    padding: 12px;
  }
}

/* source: styles/components/scenarios.css */
/* ═══════════════════════════════════════════════════════
   Scenarios Section — 行业核心应用场景数据价值释放
   ═══════════════════════════════════════════════════════ */

/* ── Section ── */
.home-scenarios {
  padding: 60px 0 80px 0;
  width: 100%;
  min-height: 671px;
  overflow: hidden;
  box-sizing: border-box;
  font-family: var(--font-sans);
  /* 整体背景：顶白 → 底浅蓝（与设计稿一致，可用渐变替代位图） */
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

/* ── Header ── */
.scenarios__header {
  text-align: center;
  /* 副标题「解锁关键业务数据价值…」底部到卡片区域 */
  margin-bottom: 37px;
}

.scenarios__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 36px;
  color: #000000;
  line-height: 46px;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
}

.scenarios__title::after {
  content: "";
  position: absolute;
  width: calc(100% - 50px);
  height: 26px;
  background-image: url("/assets/images/home/core-title-pill-image.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  right: -18px;
  bottom: 6px;
  transform: none;
  z-index: -1;
  pointer-events: none;
}

.scenarios__icon {
  display: inline-block;
  vertical-align: middle;
}

.scenarios__subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   Container & Viewport
   ═══════════════════════════════════════════════════════ */
.scenarios__container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  /* full bleed on large screens, max out reasonably */
}

html.is-desktop .scenarios__container {
  width: var(--content-max-width);
  max-width: none;
}

.scenarios__viewport {
  position: relative;
}

/* ── Arrows（浮在卡片区域两侧） ── */
.scenarios__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 44px;
  transition: background-image 0.3s ease;
}

.scenarios__arrow--prev {
  left: 80px;
  background-image: url("/assets/images/home/scenarios/arrows/arrow-next.svg");
}
.scenarios__arrow--prev:hover {
  background-image: url("/assets/images/home/scenarios/arrows/arrow-next-active.svg");
}

.scenarios__arrow--next {
  right: 80px;
  background-image: url("/assets/images/home/scenarios/arrows/arrow-prev.svg");
}
.scenarios__arrow--next:hover {
  background-image: url("/assets/images/home/scenarios/arrows/arrow-prev-active.svg");
}

html.is-desktop .scenarios__arrow--prev {
  left: max(0.5rem, calc(var(--gutter-x) - 56px));
}

html.is-desktop .scenarios__arrow--next {
  right: max(0.5rem, calc(var(--gutter-x) - 56px));
}

/* ── Slides Container ── */
.scenarios__slides {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 10px calc((100% - 1522px) / 2);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    black 200px,
    black calc(100% - 200px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 200px,
    black calc(100% - 200px),
    transparent 100%
  );
}

.scenarios__slides.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none !important;
}

.scenarios__slides.is-dragging .scenarios__card {
  pointer-events: none;
}

.scenarios__slides img {
  -webkit-user-drag: none;
}

.scenarios__slides::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* ── Card Styles（设计稿：367×439，间距 18px） ── */
.scenarios__card {
  flex: 0 0 367px;
  width: 367px;
  height: 439px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 30px 24px 24px 24px;
  transition: transform 0.3s ease;
  /* default background if none specified */
  background: linear-gradient(180deg, #f3f6fa 0%, #ffffff 100%);
}

.scenarios__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* 金融科技：背景与尺寸都在 .scenarios__card.scenarios__card--finance 上 */
.scenarios__card.scenarios__card--finance {
  flex: 0 0 367px;
  flex-shrink: 0;
  width: 367px;
  min-width: 367px;
  max-width: 367px;
  height: 439px;
  min-height: 439px;
  max-height: 439px;
  box-sizing: border-box;
  overflow: hidden;
  /* 覆盖 .scenarios__card 的 background 简写，整卡铺底图 */
  background: url("/assets/images/home/scenarios/finance-decoration/finance-card-bg.png")
    no-repeat center / 367px 439px;
}

.scenarios__card--energy {
  background: linear-gradient(180deg, #E0F5FF 0%, #F0FAFF 100%);
}
.scenarios__card--energy .scenarios__card-icon { color: #00A3FF; }

.scenarios__card--retail {
  background: linear-gradient(180deg, #E1EEFF 0%, #F0F6FF 100%);
}
.scenarios__card--retail .scenarios__card-icon { color: #2B85FF; }

.scenarios__card--medical {
  background: linear-gradient(180deg, #DDF8ED 0%, #F0FCF6 100%);
}
.scenarios__card--medical .scenarios__card-icon { color: #00C67E; }

.scenarios__card--iov {
  background: linear-gradient(180deg, #F3E6FF 0%, #F9F3FF 100%);
}
.scenarios__card--iov .scenarios__card-icon { color: #A64BFF; }

.scenarios__card--smart {
  background: linear-gradient(180deg, #E8F0FF 0%, #F4F7FF 100%);
}
.scenarios__card--smart .scenarios__card-icon { color: #0f69e6; }

/* ── Card Internal Layout：大标题 + 正文描述 ── */
.scenarios__card-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0 0 5px 0;
  font-weight: 800;
  font-size: 28px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 40px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.scenarios__card-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.scenarios__card-desc {
  margin: 0 0 24px 0;
  font-weight: normal;
  font-size: 16px;
  color: #393e4f;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: calc(30px * 3);
}


.scenarios__card-img {
  display: block;
  flex: 1;
  min-height: 0;
  width: 100%;
  margin-top: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* ═══════════════════════════════════════════════════════
   Responsive Design（窄屏：卡片宽度随视口收缩，横向滚动 + snap）
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  html:not(.is-desktop) .scenarios__header {
    margin-bottom: 24px;
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .scenarios__title {
    font-size: 28px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .scenarios__title::after {
      width: calc(100% - 42px);
      right: -14px;
      transform: none;
    }

  html:not(.is-desktop) .scenarios__subtitle {
    font-size: 16px;
    padding: 0 12px;
  }

  html:not(.is-desktop) .scenarios__viewport {
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .scenarios__slides {
    padding: 10px max(12px, env(safe-area-inset-left)) 10px max(12px, env(safe-area-inset-right));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      black 48px,
      black calc(100% - 48px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      black 48px,
      black calc(100% - 48px),
      transparent 100%
    );
  }

  html:not(.is-desktop) .scenarios__card,
  html:not(.is-desktop) .scenarios__card.scenarios__card--finance {
    flex: 0 0 min(300px, calc(100vw - 40px));
    width: min(300px, calc(100vw - 40px));
    min-width: 0;
    max-width: min(300px, calc(100vw - 40px));
    height: auto;
    min-height: 0;
    max-height: none;
    scroll-snap-align: start;
    padding: 20px 18px 18px;
  }

  html:not(.is-desktop) .scenarios__card.scenarios__card--finance {
    background-size: cover;
    background-position: center top;
    min-height: 0;
    max-height: none;
    height: auto;
  }

  html:not(.is-desktop) .scenarios__arrow--prev {
    left: max(12px, env(safe-area-inset-left));
  }

  html:not(.is-desktop) .scenarios__arrow--next {
    right: max(12px, env(safe-area-inset-right));
  }
}

@media (max-width: 768px) {
  html:not(.is-desktop) .scenarios__arrow {
    display: none;
  }

  html:not(.is-desktop) .home-scenarios {
    padding: 32px 0 40px;
    min-height: 0;
  }

  html:not(.is-desktop) .scenarios__title {
    font-size: 24px;
  }

  html:not(.is-desktop) .scenarios__card-title {
    font-size: 16px;
    line-height: 1.35;
    gap: 8px;
  }

  html:not(.is-desktop) .scenarios__card,
  html:not(.is-desktop) .scenarios__card.scenarios__card--finance {
    height: auto;
    min-height: 0;
    max-height: none;
    padding-bottom: 14px;
  }

  html:not(.is-desktop) .scenarios__card-desc {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    max-height: none;
    margin-bottom: 0;
  }

  html:not(.is-desktop) .scenarios__card-icon {
    width: 24px;
    height: 24px;
  }

  html:not(.is-desktop) .scenarios__card-icon img,
  html:not(.is-desktop) .scenarios__card-icon svg {
    width: 24px;
    height: 24px;
  }

  html:not(.is-desktop) .scenarios__card-img {
    display: none;
  }
}

@media (max-width: 420px) {
  html:not(.is-desktop) .scenarios__title {
    font-size: 22px;
  }

  html:not(.is-desktop) .scenarios__card,
  html:not(.is-desktop) .scenarios__card.scenarios__card--finance {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 16px 14px 14px;
  }

  html:not(.is-desktop) .scenarios__card-title {
    font-size: 15px;
  }

  html:not(.is-desktop) .scenarios__card-desc {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .home-scenarios {
    padding: 24px 0 32px;
  }

  html:not(.is-desktop) .scenarios__header {
    margin-bottom: 16px;
    padding: 0 8px;
  }

  html:not(.is-desktop) .scenarios__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .scenarios__subtitle {
    font-size: 14px;
  }

  html:not(.is-desktop) .scenarios__slides {
    padding: 0 8px;
  }

  html:not(.is-desktop) .scenarios__card,
  html:not(.is-desktop) .scenarios__card.scenarios__card--finance {
    flex: 0 0 calc(100vw - 16px);
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    min-height: 0;
  }
}

/* source: styles/components/success-stories.css */
/* ═══════════════════════════════════════════════════════
   Success Stories Section — 客户成功故事
   Design ref: Pixso export → html/Index.html
   ═══════════════════════════════════════════════════════ */

/* ── Section ── */
.home-stories {
  padding: var(--space-24) 0 var(--space-32);
  width: 100%;
  min-height: 773px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  font-family: var(--font-sans);
  background: url("/assets/images/home/stories/stories-bg.png") no-repeat center / cover;
  background-color: #f4f5f8;
}

/* ── Header ── */
.stories__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-10);
  margin-top: 48px;
}

.stories__title {
    display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 36px;
  color: #000000;
  line-height: 46px;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
}

.stories__title::after {
    content: "";
    position: absolute;
    width: calc(100% - 50px);
  height: 26px;
  background-image: url("/assets/images/home/core-title-pill-image.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
    right: -18px;
    bottom: 6px;
    transform: none;
  z-index: -1;
  pointer-events: none;
}

.stories__icon {
  display: inline-block;
  vertical-align: middle;
}

.stories__subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin: 0 auto;
}

/* ── Carousel Viewport ── */
.stories__carousel {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

html.is-desktop .stories__carousel {
  width: var(--content-max-width);
  max-width: none;
}

/* PC：取消 85vw 上限，避免 <1200 视口把卡片压窄，与宽屏视觉一致（版心不足时走整页横滚） */
html.is-desktop .stories__card {
  max-width: none;
}

/* ── Arrows ── */
.stories__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 44px;
}

.stories__arrow--prev {
  left: 80px;
  background-image: url("/assets/images/home/scenarios/arrows/arrow-next.svg");
}
.stories__arrow--prev:hover {
  background-image: url("/assets/images/home/scenarios/arrows/arrow-next-active.svg");
}

.stories__arrow--next {
  right: 80px;
  background-image: url("/assets/images/home/scenarios/arrows/arrow-prev.svg");
}
.stories__arrow--next:hover {
  background-image: url("/assets/images/home/scenarios/arrows/arrow-prev-active.svg");
}

html.is-desktop .stories__arrow--prev {
  left: max(0.5rem, calc(var(--gutter-x) - 56px));
}

html.is-desktop .stories__arrow--next {
  right: max(0.5rem, calc(var(--gutter-x) - 56px));
}

/* ── Track ── */
.stories__track {
  position: relative;
  width: 100%;
  height: 500px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.home-stories.is-dragging .stories__track {
  cursor: grabbing;
}

.home-stories.is-dragging .stories__card {
  pointer-events: none;
}

.stories__track img {
  -webkit-user-drag: none;
}

/* ═══════════════════════════════════════════════════════
   Card — 624×351 单张卡（全幅图 + 渐变覆盖 + 内容叠加）
   ═══════════════════════════════════════════════════════ */
.stories__card {
  position: absolute;
  top: 50%;
  left: 50%;
  --card-width: 900px;
  --card-gap: 24px;
  --side-scale: 0.7;
  width: var(--card-width);
  max-width: 85vw;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(225, 233, 242, 1);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.6s ease,
              filter 0.6s ease;
  will-change: transform, opacity, filter;
  transform: translate(-50%, -50%) translateX(calc(var(--card-width) * 2));
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.stories__card.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  z-index: 3;
  filter: none;
}

.stories__card.is-prev {
  transform: translate(-50%, -50%)
    translateX(calc(-0.5 * var(--card-width) - 0.5 * var(--card-width) * var(--side-scale) - var(--card-gap)))
    scale(var(--side-scale));
  opacity: 0.5;
  visibility: visible;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
  filter: blur(3px);
}

.stories__card.is-next {
  transform: translate(-50%, -50%)
    translateX(calc(0.5 * var(--card-width) + 0.5 * var(--card-width) * var(--side-scale) + var(--card-gap)))
    scale(var(--side-scale));
  opacity: 0.5;
  visibility: visible;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
  filter: blur(3px);
}

.stories__card.is-prev::before,
.stories__card.is-next::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: pointer;
}

.stories__card.is-hidden-left {
  transform: translate(-50%, -50%) translateX(calc(-2 * var(--card-width))) scale(var(--side-scale));
  opacity: 0;
  visibility: hidden;
}

/* ── Card Image (全幅背景) ── */
.stories__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 624 / 351;
}

.stories__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stories__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(248, 249, 255, 0) 0%,
    rgba(42, 52, 66, 0.855) 79.9%,
    rgba(7, 18, 33, 1) 100%
  );
  pointer-events: none;
}

/* ── Overlay (tags + 案例详情) ── */
.stories__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 24px;
  z-index: 2;
}

.stories__tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stories__tag {
  background: #FFFFFF;
  border-radius: 17px;
  /* font-weight: 800; */
  font-size: 16px;
  color: #0F69E6;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  font-family: var(--font-sans);
  padding: 0 18px;
}

.stories__detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(11, 102, 255, 1) 0%, rgba(0, 187, 255, 1) 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 5px;
  font-size: 14px;
  /* font-weight: 800; */
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.stories__detail-btn:hover {
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 102, 255, 0.35);
}

/* ── Card Body（叠在渐变暗区上方） ── */
.stories__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 28px 24px;
  z-index: 2;
}

.stories__company {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.stories__desc {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 16px;
}

/* ── Metric Cards（底部两列/三列） ── */
.stories__metrics {
  display: flex;
  gap: 14px;
}

.stories__metric {
  flex: 1;
  background: rgba(18, 37, 64, 0.6);
  border-radius: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(112, 112, 112, 1);
}

.stories__metric-title {
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 28px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  font-family: var(--font-sans);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stories__metric-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 22px;
  flex-shrink: 0;
  background: url("/assets/images/home/stories/metric-icon.svg") no-repeat center / contain;
}

.stories__metric p {
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  font-family: var(--font-sans);
  margin: 0;
}

/* ── Carousel Dots ── */
.stories__dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.stories__dot {
  width: 55px;
  height: 7px;
  border-radius: 5px;
  background: rgba(15, 105, 230, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.stories__dot.is-active {
  background: rgba(15, 105, 230, 1);
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */
@media (max-width: 64rem) {
  html:not(.is-desktop) .home-stories {
    min-height: 0;
    padding: var(--space-16) 0 var(--space-24);
  }

  html:not(.is-desktop) .stories__header {
    margin-top: 24px;
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .stories__title {
    font-size: 28px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .stories__title::after {
      width: calc(100% - 42px);
      right: -14px;
    }

  html:not(.is-desktop) .stories__subtitle {
    font-size: 16px;
    padding: 0 8px;
  }

  html:not(.is-desktop) .stories__card {
    --card-width: min(700px, calc(100vw - 32px));
  }

  html:not(.is-desktop) .stories__metrics {
    flex-direction: column;
    gap: 10px;
  }

  html:not(.is-desktop) .stories__metric-title {
    font-size: 18px;
  }

  html:not(.is-desktop) .stories__metric p {
    font-size: 13px;
  }

  html:not(.is-desktop) .stories__track {
    height: auto;
    min-height: 520px;
    padding-bottom: 8px;
  }

  html:not(.is-desktop) .stories__arrow--prev {
    left: max(16px, env(safe-area-inset-left));
  }

  html:not(.is-desktop) .stories__arrow--next {
    right: max(16px, env(safe-area-inset-right));
  }
}

@media (max-width: 40rem) {
  html:not(.is-desktop) .home-stories {
    padding: 32px 0 40px;
    min-height: 0;
  }

  html:not(.is-desktop) .stories__header {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  html:not(.is-desktop) .stories__title {
    font-size: 22px;
    line-height: 1.4;
  }

  html:not(.is-desktop) .stories__subtitle {
    font-size: 15px;
  }

  html:not(.is-desktop) .stories__arrow {
    display: none;
  }

  html:not(.is-desktop) .stories__carousel {
    overflow: hidden;
    padding: 0 16px;
  }

  html:not(.is-desktop) .stories__track {
    height: auto;
    min-height: 0;
    position: relative;
  }

  html:not(.is-desktop) .stories__card {
    --card-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
  }

  html:not(.is-desktop) .stories__card.is-active {
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    z-index: 3;
    filter: none;
  }

  html:not(.is-desktop) .stories__card.is-prev,
  html:not(.is-desktop) .stories__card.is-next,
  html:not(.is-desktop) .stories__card.is-hidden-left,
  html:not(.is-desktop) .stories__card.is-hidden-right {
    position: absolute;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: none;
  }

  html:not(.is-desktop) .stories__card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
  }

  html:not(.is-desktop) .stories__card-image::after {
    display: none;
  }

  html:not(.is-desktop) .stories__card-overlay {
    padding: 10px 12px;
  }

  html:not(.is-desktop) .stories__tags {
    gap: 6px;
  }

  html:not(.is-desktop) .stories__tag {
    font-size: 11px;
    padding: 0 10px;
    line-height: 24px;
  }

  html:not(.is-desktop) .stories__detail-btn {
    font-size: 11px;
    padding: 4px 10px;
  }

  html:not(.is-desktop) .stories__card-body {
    position: static;
    padding: 14px;
    background: #ffffff;
  }

  html:not(.is-desktop) .stories__company {
    font-size: 16px;
    font-weight: 800;
    color: #1d2234;
    margin-bottom: 6px;
  }

  html:not(.is-desktop) .stories__desc {
    font-size: 13px;
    line-height: 1.5;
    color: #5a5d6b;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  html:not(.is-desktop) .stories__metrics {
    flex-direction: column;
    gap: 8px;
  }

  html:not(.is-desktop) .stories__metric {
    padding: 10px 12px;
    background: #f4f7fc;
    border: 1px solid #e8edf5;
    border-radius: 8px;
  }

  html:not(.is-desktop) .stories__metric-title {
    font-size: 14px;
    font-weight: 700;
    color: #1d2234;
    line-height: 1.4;
    margin-bottom: 4px;
    gap: 6px;
  }

  html:not(.is-desktop) .stories__metric-title::before {
    width: 18px;
    height: 16px;
  }

  html:not(.is-desktop) .stories__metric p {
    font-size: 14px;
    line-height: 1.5;
    color: #5a5d6b;
  }

  html:not(.is-desktop) .stories__dots {
    margin-top: 16px;
    padding: 0 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  html:not(.is-desktop) .stories__dot {
    width: 40px;
    height: 5px;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .home-stories {
    padding: 24px 0 32px;
  }

  html:not(.is-desktop) .stories__header {
    padding: 0 8px;
  }

  html:not(.is-desktop) .stories__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .stories__subtitle {
    font-size: 13px;
  }

  html:not(.is-desktop) .stories__carousel {
    padding: 0 8px;
  }

  html:not(.is-desktop) .stories__company {
    font-size: 14px;
  }

  html:not(.is-desktop) .stories__dots {
    gap: 6px;
    padding: 0 8px;
  }

  html:not(.is-desktop) .stories__dot {
    width: 30px;
    height: 4px;
  }
}

/* source: styles/components/clients.css */
/* ═══════════════════════════════════════════════════════
   Clients Section — 行业领军者的共同选择
   Infinite Scrolling Marquee (3 rows)
   ═══════════════════════════════════════════════════════ */

/* ── Section ── */
.home-clients {
  padding: var(--space-20) 0 var(--space-24);
  width: 100%;
  min-height: 459px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background: url("/assets/images/home/clients-bg.png") no-repeat center / cover;
  background-color: #f4f5f8;
}

/* ── Header（与其他模块标题一致） ── */
.clients__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-12);
}

.clients__title {
    display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 36px;
  color: #000000;
  line-height: 46px;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0;
  font-family: var(--font-sans);
  position: relative;
  z-index: 0;
}

.clients__title::after {
    content: "";
    position: absolute;
    width: calc(100% - 50px);
  height: 26px;
  background-image: url(/assets/images/home/core-title-pill-image.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
    right: -18px;
    bottom: 6px;
    transform: none;
  z-index: -1;
  pointer-events: none;
}

.clients__icon {
  display: inline-block;
  vertical-align: middle;
}

.clients__subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   Marquee Animation and Layout
   ═══════════════════════════════════════════════════════ */

.clients__marquee-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.clients__marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.clients__track {
  display: flex;
  width: max-content;
}

/* ── Row Animations ── */
.clients__marquee--row1 .clients__group {
  animation: marqueeLeft 35s linear infinite;
}

.clients__marquee--row2 .clients__group {
  animation: marqueeRight 40s linear infinite;
}

.clients__marquee--row3 .clients__group {
  animation: marqueeLeft 38s linear infinite;
  animation-delay: -10s;
}

.clients__marquee-container:hover .clients__group {
  animation-play-state: paused;
}

.clients__group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
  align-items: center;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* ── Logo Cards ── */
.clients__logo-card {
  width: 220px;
  height: 64px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 210, 225, 0.6);
  flex-shrink: 0;
  padding: 10px 16px;
  box-sizing: border-box;
}

.clients__logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */
@media (max-width: 64rem) {
  html:not(.is-desktop) .home-clients {
    min-height: 0;
    padding: var(--space-16) 0 var(--space-20);
  }

  html:not(.is-desktop) .clients__header {
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .clients__title {
    font-size: 28px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .clients__title::after {
      width: calc(100% - 42px);
      right: -14px;
  }

  html:not(.is-desktop) .clients__subtitle {
    font-size: 16px;
    padding: 0 12px;
  }

  html:not(.is-desktop) .clients__logo-card {
    width: 180px;
    height: 56px;
    padding: 8px 14px;
  }

  html:not(.is-desktop) .clients__group {
    gap: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 40rem) {
  html:not(.is-desktop) .clients__title {
    font-size: 22px;
  }

  html:not(.is-desktop) .clients__logo-card {
    width: 120px;
    height: 44px;
    padding: 6px 10px;
  }

  html:not(.is-desktop) .clients__marquee-container {
    gap: 12px;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .clients__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .clients__subtitle {
    font-size: 13px;
  }

  html:not(.is-desktop) .clients__logo-card {
    width: 96px;
    height: 36px;
    padding: 4px 8px;
  }

  html:not(.is-desktop) .clients__group {
    gap: 10px;
    padding-right: 10px;
  }
}

/* source: styles/components/certs.css */
/* ═══════════════════════════════════════════════════════
   Certifications Section — 权威认证与资质背书
   ═══════════════════════════════════════════════════════ */

.home-certs {
  position: relative;
  overflow: hidden;
  padding: clamp(4.75rem, 5vw, 6rem) 0 clamp(5rem, 5.5vw, 6.5rem);
  /* background:
    radial-gradient(circle at 12% 18%, rgba(115, 181, 255, 0.12), transparent 32%),
    radial-gradient(circle at 86% 74%, rgba(110, 160, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); */
}

.home-certs::before,
.home-certs::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.home-certs::before {
  inset: auto auto 8% 4%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(77, 154, 255, 0.12) 0%, transparent 68%);
}

.home-certs::after {
  inset: 10% 2% auto auto;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(160, 193, 255, 0.16) 0%, transparent 70%);
}

.certs__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-12);
}

.certs__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  position: relative;
  z-index: 0;
}

.certs__title::after {
  content: "";
  position: absolute;
  width: calc(100% - 50px);
  height: 26px;
  background-image: url(/assets/images/home/core-title-pill-image.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  right: -18px;
  bottom: 6px;
  transform: none;
  z-index: -1;
  pointer-events: none;
}

.certs__icon {
  display: inline-block;
  vertical-align: middle;
}

.certs__subtitle {
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}

html.is-desktop .certs__header {
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-12);
  box-sizing: border-box;
}

.certs__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) repeat(4, minmax(0, 1fr));
  gap: 0.875rem;
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
  margin-inline: auto;
  box-sizing: border-box;
}

.certs__card {
  min-height: 8.25rem;
  border: 1px solid #E8F2FF;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.certs__card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(86, 145, 255, 0.32);
  box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.certs__card--summary {
  position: relative;
  display: grid;
  grid-template-columns: 6.9rem minmax(0, 1fr);
  align-items: center;
  gap: 1.35rem;
  min-height: 8.55rem;
  padding: 1.35rem 1.7rem 1.35rem 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 50%, rgba(195, 221, 255, 0.32) 0%, rgba(195, 221, 255, 0) 33%),
    linear-gradient(90deg, rgba(238, 246, 255, 0.92) 0%, rgba(249, 252, 255, 0.98) 28%, rgba(255, 255, 255, 0.99) 100%);
}

.certs__card--summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.certs__summary-media {
  position: relative;
  width: 6.9rem;
  height: 5.2rem;
  overflow: hidden;
  z-index: 1;
}

.certs__summary-media img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  margin-left: -0.2rem;
}

.certs__summary-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  padding: 0;
}

.certs__summary-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.46;
  color: #223252;
}

.certs__summary-num {
  display: inline-block;
  color: #1d67ff;
  font-weight: 700;
  font-size: 1.28em;
  line-height: 1;
  vertical-align: -0.04em;
}

.certs__summary-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #7c8699;
}

.certs__card--badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 0.75rem 1rem;
  text-align: center;
}

.certs__badge-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 8.1rem);
  min-height: 4.4rem;
  aspect-ratio: 251 / 136;
}

.certs__badge-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 4.4rem;
  object-fit: contain;
  object-position: center;
}

.certs__badge-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: #5f6d86;
}

@media (max-width: 90rem) {
  .certs__grid {
    width: min(100% - 3rem, 84rem);
    grid-template-columns: minmax(0, 1.7fr) repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 80rem) {
  .certs__grid {
    width: min(100% - 2rem, 68rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .certs__card--summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 64rem) {
  .home-certs {
    padding: var(--space-16) 0 var(--space-20);
  }

  .certs__header {
    margin-bottom: var(--space-12);
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }

  .certs__title {
    gap: 12px;
    font-size: 28px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  .certs__title::after {
    width: calc(100% - 42px);
    right: -14px;
  }

  .certs__subtitle {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 12px;
  }

  .certs__grid {
    width: min(100% - 1.5rem, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .certs__card--summary {
    grid-column: 1 / -1;
    grid-template-columns: 6.2rem minmax(0, 1fr);
    gap: 1.15rem;
    min-height: 8.2rem;
    padding: 1.2rem 1.35rem 1.2rem 1.15rem;
  }
}

@media (max-width: 40rem) {
  .certs__title {
    font-size: 18px;
  }

  .certs__grid {
    grid-template-columns: 1fr;
  }

  .certs__card--summary {
    grid-template-columns: 5.1rem minmax(0, 1fr);
    gap: 0.9rem;
    min-height: 7.6rem;
    padding: 1rem 1rem 1rem 0.95rem;
  }

  .certs__summary-media {
    width: 5.1rem;
    height: 4rem;
  }

  .certs__summary-title {
    font-size: 1rem;
  }

  .certs__summary-desc {
    font-size: 0.9rem;
  }

  .certs__subtitle {
    font-size: 13px;
  }

  .certs__summary-copy {
    padding: 0;
  }

  .certs__card--badge {
    min-height: 7.4rem;
  }

  .certs__badge-media {
    width: min(100%, 6.8rem);
    min-height: 3.7rem;
  }

  .certs__badge-media img {
    max-height: 3.7rem;
  }
}

/* source: styles/components/blog.css */
/* ═══════════════════════════════════════════════════════
   News Section — 新闻动态
   2-column × 4-row card grid
   ═══════════════════════════════════════════════════════ */

/* ── Section ── */
.home-news {
  padding: var(--space-20) 0 var(--space-24);
  width: 100%;
  min-height: 774px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background: url("/assets/images/home/news-bg.png") no-repeat center / cover;
  background-color: #f4f5f8;
}

/* ── Header（与其他模块标题一致） ── */
.news__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-12);
}

.news__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 36px;
  color: #000000;
  line-height: 46px;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0;
  font-family: var(--font-sans);
  position: relative;
  z-index: 0;
}

.news__title::after {
  content: "";
  position: absolute;
  width: calc(100% - 50px);
  height: 26px;
  background-image: url(/assets/images/home/core-title-pill-image.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  right: -18px;
  bottom: 6px;
  transform: none;
  z-index: -1;
  pointer-events: none;
}

.news__icon {
  display: inline-block;
  vertical-align: middle;
}

.news__subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin: 0 auto;
}

html.is-desktop .news__header {
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-12);
  box-sizing: border-box;
}

.news__subtitle a {
  color: #0f69e6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news__subtitle a:hover {
  color: #0d5cff;
}

/* ── Grid ── */
.news__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

html.is-desktop .news__grid {
  width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
  max-width: none;
  margin-inline: auto;
  padding-inline: max(
    0px,
    calc((var(--content-max-width) - 2 * var(--home-core-inset) - 1580px) / 2)
  );
  box-sizing: border-box;
}

/* ── Card ── */
.news__card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 138px;
}

.news__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ── Thumbnail ── */
.news__card-thumb {
  flex: 0 0 128px;
  width: 128px;
  padding: 16px 0 16px 20px;
  display: flex;
  align-items: center;
}

.news__card-thumb img {
  width: 128px;
  height: 106px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* ── Card Body ── */
.news__card-body {
  flex: 1;
  padding: 14px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news__card-title {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.4;
  margin: 0 0 6px;
  font-family: var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__card-desc {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 24px;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Footer (button + date) ── */
.news__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news__card-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0F69E6 0%, #3A9BFF 100%);
  color: #ffffff;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 4px;
  line-height: 22px;
  white-space: nowrap;
}

.news__card:hover .news__card-btn {
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 105, 230, 0.3);
}

.news__card-date {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 30px;
  white-space: nowrap;
}

@media (max-width: 48rem) {
  .home-news,
  html.is-desktop .home-news {
    min-height: 0;
    overflow-x: hidden;
  }

  .news__header,
  html.is-desktop .news__header {
    width: 100%;
    max-width: 100%;
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
    box-sizing: border-box;
  }

  .news__grid,
  html.is-desktop .news__grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
    box-sizing: border-box;
  }

  .news__card,
  html.is-desktop .news__card {
    min-width: 0;
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    min-height: 132px;
    padding: 12px;
    overflow: hidden;
  }

  .news__card-thumb,
  html.is-desktop .news__card-thumb {
    flex: 0 0 108px;
    width: 108px;
    height: 108px;
    min-width: 0;
    padding: 0;
  }

  .news__card-thumb img,
  html.is-desktop .news__card-thumb img {
    width: 108px;
    height: 108px;
    aspect-ratio: 1 / 1;
    max-height: none;
    object-fit: cover;
  }

  .news__card-body,
  html.is-desktop .news__card-body {
    flex: 1;
    width: auto;
    min-width: 0;
    padding: 0;
  }

  .news__card-title,
  html.is-desktop .news__card-title {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .news__card-desc,
  html.is-desktop .news__card-desc {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .news__card-footer,
  html.is-desktop .news__card-footer {
    min-width: 0;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .news__card-btn,
  .news__card-date,
  html.is-desktop .news__card-btn,
  html.is-desktop .news__card-date {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */
@media (max-width: 64rem) {
  html:not(.is-desktop) .home-news {
    min-height: 0;
    padding: var(--space-16) 0 var(--space-20);
  }

  html:not(.is-desktop) .news__header {
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .news__title {
    font-size: 28px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .news__title::after {
      width: calc(100% - 42px);
      right: -14px;
  }

  html:not(.is-desktop) .news__subtitle {
    font-size: 16px;
    padding: 0 12px;
  }

  html:not(.is-desktop) .news__grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    gap: 12px;
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }
}

@media (max-width: 40rem) {
  html:not(.is-desktop) .news__title {
    font-size: 22px;
  }

  html:not(.is-desktop) .news__card {
    flex-direction: row;
    align-items: flex-start;
    min-height: 132px;
  }

  html:not(.is-desktop) .news__card-thumb {
    flex: 0 0 108px;
    width: 108px;
    height: 108px;
    padding: 0;
  }

  html:not(.is-desktop) .news__card-thumb img {
    width: 108px;
    height: 108px;
    aspect-ratio: 1 / 1;
    max-height: none;
    object-fit: cover;
  }

  html:not(.is-desktop) .news__card-body {
    flex: 1;
    min-width: 0;
    padding: 0;
  }

  html:not(.is-desktop) .news__card-title {
    font-size: 14px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  html:not(.is-desktop) .news__card-desc {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 6px;
    -webkit-line-clamp: 2;
  }

  html:not(.is-desktop) .news__card-footer {
    flex-wrap: nowrap;
    gap: 8px;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .home-news {
    padding: 32px 0;
  }

  html:not(.is-desktop) .news__header {
    padding: 0 8px;
  }

  html:not(.is-desktop) .news__title {
    font-size: 18px;
  }

  html:not(.is-desktop) .news__subtitle {
    font-size: 13px;
  }

  html:not(.is-desktop) .news__grid {
    padding: 0 8px;
    gap: 12px;
  }

  html:not(.is-desktop) .news__card-thumb {
    padding: 0;
  }

  html:not(.is-desktop) .news__card-thumb img {
    max-width: none;
  }

  html:not(.is-desktop) .news__card-body {
    padding: 0;
  }

  html:not(.is-desktop) .news__card-title {
    font-size: 13px;
  }

  html:not(.is-desktop) .news__card-desc {
    font-size: 12px;
  }
}

/* source: styles/components/section-heading.css */
.section-heading {
  display: grid;
  gap: var(--space-4);
  max-width: 44rem;
  margin-bottom: var(--space-10);
}

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

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  padding: 0.42rem 0.82rem;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: rgba(36, 107, 255, 0.08);
  font-size: var(--text-sm);
  font-weight: 700;
}

.section-heading__description {
  max-width: 42rem;
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.14rem);
}

/* source: styles/components/cta.css */
/* ═══════════════════════════════════════════════════════
   Home CTA Section — 让数据价值触手可及
   ═══════════════════════════════════════════════════════ */

.home-cta {
  width: 100%;
  min-height: 277.91px;
  box-sizing: border-box;
  background: url("/assets/images/home/cta-bg.png") no-repeat center / cover;
  background-color: #eaf1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.cta__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta__title {
  font-weight: 800;
  font-size: 36px;
  color: #333333;
  line-height: 1.3;
  margin: 0 0 12px;
  font-family: var(--font-sans);
}

.cta__subtitle {
  font-weight: 400;
  font-size: 20px;
  color: rgba(57, 62, 79, 1);
  line-height: 1.6;
  margin: 0 0 28px;
}

.cta__btn {
  display: inline-block;
  padding: 0 56px;
  height: 47px;
  line-height: 47px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(11, 102, 255, 1) 0%, rgba(0, 187, 255, 1) 100%);
  color: #ffffff;
  /* font-weight: 800; */
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 28px;
}

.cta__btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 102, 255, 0.35);
}

.cta__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  white-space: nowrap;
}

.cta__feature img {
  display: block;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 48rem) {
  html:not(.is-desktop) .home-cta {
    min-height: 0;
    padding: 36px max(16px, env(safe-area-inset-left)) 40px max(16px, env(safe-area-inset-right));
  }

  html:not(.is-desktop) .cta__content {
    max-width: 100%;
  }

  html:not(.is-desktop) .cta__title {
    font-size: 28px;
  }

  html:not(.is-desktop) .cta__subtitle {
    font-size: 16px;
  }

  html:not(.is-desktop) .cta__btn {
    font-size: 18px;
    padding: 0 40px;
    height: 48px;
    line-height: 48px;
  }

  html:not(.is-desktop) .cta__features {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }

  html:not(.is-desktop) .cta__feature {
    font-size: 14px;
    white-space: normal;
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 30rem) {
  html:not(.is-desktop) .cta__title {
    font-size: 24px;
  }

  html:not(.is-desktop) .cta__subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  html:not(.is-desktop) .cta__btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 17px;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .home-cta {
    min-height: 0;
    padding: 32px 8px;
  }

  html:not(.is-desktop) .cta__title {
    font-size: 20px;
  }

  html:not(.is-desktop) .cta__subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }

  html:not(.is-desktop) .cta__btn {
    font-size: 15px;
    padding: 0 12px;
    height: 40px;
    line-height: 40px;
  }

  html:not(.is-desktop) .cta__features {
    gap: 8px;
  }

  html:not(.is-desktop) .cta__feature {
    font-size: 14px;
  }
}

/* source: styles/components/footer.css */
/* ═══════════════════════════════════════════════════════
   Site Footer
   ═══════════════════════════════════════════════════════ */

.site-footer {
  background-color: #0D1527;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.8;
}

/* ── Main Content Area ── */
.site-footer__main {
  padding: 48px 0 0;
}

.footer__grid {
  display: flex;
  gap: 0;
  justify-content: space-between;
}

/* ── Column Titles ── */
.footer__title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 20px;
  white-space: nowrap;
}

/* ── Link Lists ── */
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer__list li a:hover {
  color: #ffffff;
}

/* ── Products Column (2 sub-columns) ── */
.footer__col--products {
  min-width: 0;
}

.footer__sub-cols {
  display: flex;
  gap: 48px;
}

/* ── Contact Column ── */
.footer__col--contact .footer__sub-cols {
  gap: 48px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact-list p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* ── QR Codes ── */
.footer__qr {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  align-self: flex-start;
}

.footer__qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__qr-item img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.footer__qr-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* ── Bottom Section ── */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px;
  padding: 20px 0 24px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  flex-wrap: wrap;
}

.legal-link {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.legal-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-meta__police {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-meta__police img {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 80rem) {
  html:not(.is-desktop) .footer__grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  html:not(.is-desktop) .footer__qr {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }
}

@media (max-width: 48rem) {
  html:not(.is-desktop) .site-footer__main {
    padding: 36px 0 0;
  }

  html:not(.is-desktop) .footer__grid {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  html:not(.is-desktop) .footer__title {
    white-space: normal;
  }

  html:not(.is-desktop) .footer__list li a {
    white-space: normal;
  }

  html:not(.is-desktop) .footer__sub-cols {
    flex-direction: column;
    gap: 16px;
  }

  html:not(.is-desktop) .footer__col--contact .footer__sub-cols {
    gap: 16px;
  }

  html:not(.is-desktop) .footer__contact-list p {
    white-space: normal;
  }

  html:not(.is-desktop) .footer__qr {
    justify-content: center;
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .footer__qr-item span {
    white-space: normal;
    text-align: center;
    max-width: 140px;
  }

  html:not(.is-desktop) .footer-meta {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  }
}

@media (max-width: 30rem) {
  html:not(.is-desktop) .site-footer {
    font-size: 14px;
  }

  html:not(.is-desktop) .footer__title {
    font-size: 14px;
  }

  html:not(.is-desktop) .footer__list li a,
  html:not(.is-desktop) .footer__contact-list p {
    font-size: 14px;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .site-footer__main {
    padding: 24px 8px 0;
  }

  html:not(.is-desktop) .footer__grid {
    gap: 20px;
  }

  html:not(.is-desktop) .footer__title {
    font-size: 13px;
  }

  html:not(.is-desktop) .footer__list li a,
  html:not(.is-desktop) .footer__contact-list p {
    font-size: 11px;
  }

  html:not(.is-desktop) .footer__qr-item img {
    width: 56px;
    height: 56px;
  }

  html:not(.is-desktop) .footer__qr-item span {
    font-size: 10px;
    max-width: 100px;
  }

  html:not(.is-desktop) .footer-meta {
    font-size: 10px;
    padding: 0 4px;
    gap: 6px;
  }
}

html[lang^="en"] .footer__grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 0.95fr)
    minmax(220px, 0.9fr)
    minmax(420px, 1.45fr)
    minmax(220px, auto);
  gap: 40px;
  align-items: start;
}

html[lang^="en"] .footer__col {
  min-width: 0;
}

html[lang^="en"] .footer__title,
html[lang^="en"] .footer__list li a,
html[lang^="en"] .footer__contact-list p,
html[lang^="en"] .footer__qr-item span {
  white-space: normal;
}

html[lang^="en"] .footer__list li a,
html[lang^="en"] .footer__contact-list p {
  overflow-wrap: anywhere;
}

html[lang^="en"] .footer__sub-cols {
  gap: 28px;
}

html[lang^="en"] .footer__col--contact .footer__sub-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.85fr);
  gap: 28px;
}

html[lang^="en"] .footer__qr {
  justify-content: flex-end;
  min-width: 0;
}

html[lang^="en"] .footer__qr-item span {
  max-width: 130px;
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 90rem) {
  html[lang^="en"] .footer__grid {
    grid-template-columns:
      minmax(200px, 0.9fr)
      minmax(220px, 0.95fr)
      minmax(360px, 1.35fr);
  }

  html[lang^="en"] .footer__qr {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 0;
    width: auto;
  }
}

html[lang^="ja"] .footer__grid {
  display: grid;
  grid-template-columns:
    minmax(420px, 1.2fr)
    minmax(260px, 0.8fr)
    minmax(430px, 1.25fr)
    minmax(220px, auto);
  gap: 42px;
  align-items: start;
}

html[lang^="ja"] .footer__col {
  min-width: 0;
}

html[lang^="ja"] .footer__title,
html[lang^="ja"] .footer__list li a,
html[lang^="ja"] .footer__contact-list p,
html[lang^="ja"] .footer__qr-item span {
  white-space: normal;
}

html[lang^="ja"] .footer__list li a,
html[lang^="ja"] .footer__contact-list p {
  overflow-wrap: anywhere;
  word-break: keep-all;
  line-height: 1.7;
}

html[lang^="ja"] .footer__sub-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
}

html[lang^="ja"] .footer__col--contact .footer__sub-cols {
  grid-template-columns: minmax(0, 1.45fr) minmax(200px, 0.8fr);
  gap: 28px;
}

html[lang^="ja"] .footer__qr {
  justify-content: flex-end;
  min-width: 0;
}

html[lang^="ja"] .footer__qr-item span {
  max-width: 128px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 100rem) {
  html[lang^="ja"] .footer__grid {
    grid-template-columns:
      minmax(320px, 1.05fr)
      minmax(230px, 0.8fr)
      minmax(360px, 1.2fr)
      minmax(210px, auto);
    gap: 34px;
  }

  html[lang^="ja"] .footer__sub-cols {
    gap: 24px;
  }

  html[lang^="ja"] .footer__col--contact .footer__sub-cols {
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.75fr);
    gap: 22px;
  }
}

@media (max-width: 90rem) {
  html[lang^="ja"] .footer__grid {
    grid-template-columns:
      minmax(280px, 1fr)
      minmax(240px, 0.9fr)
      minmax(390px, 1.35fr);
  }

  html[lang^="ja"] .footer__qr {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: auto;
  }
}

@media (max-width: 68rem) {
  html[lang^="ja"] .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
  }

  html[lang^="ja"] .footer__col--contact,
  html[lang^="ja"] .footer__qr {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  html[lang^="ja"] .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  html[lang^="ja"] .footer__sub-cols,
  html[lang^="ja"] .footer__col--contact .footer__sub-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  html[lang^="ja"] .footer__qr {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 64rem) {
  html[lang^="en"] .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
  }

  html[lang^="en"] .footer__col--contact,
  html[lang^="en"] .footer__qr {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  html[lang^="en"] .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  html[lang^="en"] .footer__sub-cols,
  html[lang^="en"] .footer__col--contact .footer__sub-cols {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  html[lang^="en"] .footer__qr {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* source: styles/components/side-toolbar.css */
/* ═══════════════════════════════════════════════════════
   Side Toolbar Widget - Fanruan Style
   ═══════════════════════════════════════════════════════ */

.side-toolbar {
  position: fixed;
  right: 16px;
  bottom: 60px;
  z-index: 1000;
  /* 侧栏暂时隐藏；恢复时改回 display: flex */
  display: none;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

/* ── Main Action Pill (Reduced Size) ── */
.side-toolbar__main {
  background: #ffffff;
  width: 56px;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.side-toolbar__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  color: #666666;
  text-decoration: none;
}

.side-toolbar__icon {
  width: 18px;
  height: 18px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-toolbar__icon svg {
  width: 100%;
  height: 100%;
}

.side-toolbar__text {
  font-size: 10px;
  line-height: 1;
  transform: scale(0.9);
}

/* ── Popover Cards (Adjusted Gap) ── */
.side-toolbar__popover {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.side-toolbar__item:hover .side-toolbar__popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* --- Popover Header --- */
.popover-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #1890ff;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
}

.popover-header__icon {
  width: 18px;
  height: 18px;
}

.popover-header__title {
  font-size: 14px;
  font-weight: 600;
}

/* --- Popover Body --- */
.popover-body {
  font-size: 13px;
  line-height: 1.5;
}

.popover-body--flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popover-text {
  flex: 1;
  color: #666666;
  text-align: left;
}

.popover-text p {
  margin: 0;
  color: inherit;
}

.text-blue {
  color: #1890ff;
  font-weight: 600;
}

.popover-qr {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.popover-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popover-row {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.popover-label {
  color: #666666;
}

.popover-value {
  color: #333333;
}

.popover-value--bold {
  font-weight: 600;
  font-size: 15px;
}

.popover-link {
  color: #1890ff;
  font-weight: 600;
  text-decoration: none;
}

.popover-link:hover {
  text-decoration: underline;
}

/* --- Specific widths --- */
.side-toolbar__popover--phone { width: 260px; padding: 16px; }
.side-toolbar__popover--tech  { width: 260px; padding: 16px; }
.side-toolbar__popover--wechat { width: 300px; padding: 16px; }
.side-toolbar__popover--complaint { width: 280px; padding: 16px; }

.popover-arrow {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ffffff;
}

/* ── Consultant Section (Reduced Size) ── */
.side-toolbar__consultant {
  pointer-events: auto;
}

.consultant-bubble {
  width: 50px;
  background: linear-gradient(135deg, #1890ff 0%, #00d2ff 100%);
  border-radius: 25px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.2);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.consultant-avatar {
  position: relative;
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
}

.consultant-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #ffffff;
  object-fit: cover;
}

.notification-dot {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 7px;
  height: 7px;
  background: #ff4d4f;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.consultant-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  padding-bottom: 2px;
}

/* ── Consultant Suggestion Chips ── */
.consultant-suggestions {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.consultant-bubble:hover .consultant-suggestions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.suggestion-chip {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #333333;
  transition: all 0.2s ease;
}

.suggestion-chip:hover {
  background: #ffffff;
  color: #1890ff;
  transform: translateX(-5px);
}

.suggestion-chip svg {
  width: 16px;
  height: 16px;
  color: #1890ff;
}

/* ── Back to Top ── */
.side-toolbar__totop {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  color: #666666;
  align-self: center;
}

.side-toolbar__totop.is-visible {
  opacity: 1;
  visibility: visible;
}

.side-toolbar__totop:hover {
  background: #f8f8f8;
  color: #1890ff;
  transform: translateY(-2px);
}

.side-toolbar__totop svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 47.9375rem) {
  html:not(.is-desktop) .side-toolbar {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(56px, calc(env(safe-area-inset-bottom, 0px) + 48px));
  }

  html:not(.is-desktop) .side-toolbar__main {
    width: 44px;
    border-radius: 22px;
    padding: 6px 0;
  }

  html:not(.is-desktop) .side-toolbar__item {
    padding: 8px 0;
  }

  html:not(.is-desktop) .side-toolbar__totop {
    width: 44px;
    height: 44px;
  }

  html:not(.is-desktop) .consultant-bubble {
    width: 44px;
    border-radius: 22px;
    padding: 10px 0;
  }

  html:not(.is-desktop) .side-toolbar__popover,
  html:not(.is-desktop) .side-toolbar__popover--phone,
  html:not(.is-desktop) .side-toolbar__popover--tech,
  html:not(.is-desktop) .side-toolbar__popover--wechat,
  html:not(.is-desktop) .side-toolbar__popover--complaint {
    width: min(280px, calc(100vw - 72px));
    max-width: calc(100vw - 72px);
    box-sizing: border-box;
  }

  html:not(.is-desktop) .consultant-suggestions {
    display: none;
  }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
  html:not(.is-desktop) .side-toolbar {
    right: 4px;
    bottom: max(40px, calc(env(safe-area-inset-bottom, 0px) + 36px));
  }

  html:not(.is-desktop) .side-toolbar__main {
    width: 36px;
    border-radius: 18px;
    padding: 4px 0;
  }

  html:not(.is-desktop) .side-toolbar__item {
    padding: 6px 0;
  }

  html:not(.is-desktop) .side-toolbar__item svg {
    width: 18px;
    height: 18px;
  }

  html:not(.is-desktop) .side-toolbar__totop {
    width: 36px;
    height: 36px;
  }

  html:not(.is-desktop) .consultant-bubble {
    width: 36px;
    border-radius: 18px;
    padding: 8px 0;
  }

  html:not(.is-desktop) .side-toolbar__popover,
  html:not(.is-desktop) .side-toolbar__popover--phone,
  html:not(.is-desktop) .side-toolbar__popover--tech,
  html:not(.is-desktop) .side-toolbar__popover--wechat,
  html:not(.is-desktop) .side-toolbar__popover--complaint {
    width: min(240px, calc(100vw - 52px));
    max-width: calc(100vw - 52px);
  }
}

/* source: styles/pages/high-quality-dataset.css */
.hqd-page {
  overflow: hidden;
  background: #ffffff;
  color: #1f2638;
}

.hqd-page h1,
.hqd-page h2,
.hqd-page h3,
.hqd-page p {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.hqd-page img {
  display: block;
  max-width: 100%;
}

html.is-desktop .hqd-page .site-container.site-container--wide,
.hqd-page .site-container--wide {
  width: min(var(--content-max-width), calc(100% - 48px));
  max-width: none;
  box-sizing: border-box;
}

.hqd-hero {
  position: relative;
  min-height: 494px;
  overflow: hidden;
  background: #ecf7ff;
}

.hqd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/solution/high-quality-dataset/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hqd-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 494px;
  display: flex;
  align-items: flex-start;
}

.hqd-hero__content {
  width: min(820px, 58%);
  padding: 98px 0 0;
}

.hqd-hero__eyebrow {
  display: none;
}

.hqd-hero h1 {
  margin: 0;
  color: #1d2234;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1.18;
}

.hqd-hero__desc {
  max-width: 820px;
  margin: 28px 0 0;
  color: #313647;
  font-size: clamp(18px, 1.46vw, 28px);
  line-height: 1.56;
}

.hqd-section {
  padding: 76px 0;
}

.hqd-section--white {
  background: #ffffff;
}

.hqd-section--mist {
  background: linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%);
}

.hqd-section--blue {
  background: linear-gradient(180deg, #fcfdff 0%, #f3f9ff 100%);
}

#hqd-showcase {
  scroll-margin-top: 96px;
}

#hqd-showcase .hqd-section-heading {
  margin-bottom: 28px;
}

.hqd-section--faq {
  background: linear-gradient(112deg, rgba(240, 246, 253, 0.77) 0%, rgba(246, 250, 255, 0.77) 50%, rgba(255, 255, 255, 0.77) 100%);
}

.hqd-section--faq .hqd-section-heading {
  margin-bottom: 30px;
}

.hqd-section--related {
  position: relative;
  overflow: hidden;
  padding: 60px 0 74px;
  background: #ffffff;
}

.hqd-section--related::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/solution/high-quality-dataset/related-products-bg.png") no-repeat center -106px / 100% 116.349%;
  opacity: 0.36;
  pointer-events: none;
}

.hqd-section--related > .site-container {
  position: relative;
  z-index: 1;
}

.hqd-section--related .hqd-section-heading {
  margin-bottom: 22px;
}

.hqd-section--resources {
  padding: 76px 0 28px;
  background: #ffffff;
}

.hqd-section--resources .hqd-section-heading {
  margin-bottom: 42px;
}

.hqd-section--resources .site-container--wide {
  width: min(var(--content-max-width), calc(100% - 48px));
}

.hqd-section--cases {
  background: #ffffff;
}

.hqd-section--cases .hqd-section-heading {
  margin-bottom: 28px;
}

.hqd-section-heading {
  position: relative;
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.hqd-section-heading h2 {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #000000;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.hqd-section-heading h2::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 36px;
  flex-shrink: 0;
  background: url("/assets/images/home/icon-core-diamond.png") no-repeat center / contain;
}

.hqd-section-heading h2::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 6px;
  z-index: -1;
  width: calc(100% - 50px);
  height: 26px;
  background: url("/assets/images/home/core-title-pill-image.png") no-repeat center / 100% 100%;
}

.hqd-section-heading p {
  max-width: 860px;
  margin: 0 auto;
  color: #393e4f;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.hqd-visual {
  margin: 0 auto;
}

.hqd-visual img {
  width: 100%;
  height: auto;
}

.hqd-visual--wide {
  max-width: var(--content-max-width);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(20, 78, 150, 0.08);
}

#hqd-features {
  padding: 76px 0 78px;
  background: #ffffff;
}

#hqd-features .hqd-section-heading {
  margin-bottom: 50px;
}

.hqd-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
}

.hqd-feature-card {
  position: relative;
  aspect-ratio: 707 / 261;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef7ff;
  box-shadow: 0 16px 34px rgba(21, 86, 168, 0.08);
}

.hqd-feature-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

.hqd-feature-card__head {
  position: absolute;
  left: 28px;
  top: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
}

.hqd-feature-card__head img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.hqd-feature-card__head h3 {
  margin: 0;
  color: rgba(0, 0, 0, 0.86);
  font-size: 24px;
  font-weight: 800;
  line-height: 34px;
}

.hqd-feature-card__copy {
  position: absolute;
  left: 5px;
  top: 82px;
  z-index: 1;
  box-sizing: border-box;
  width: min(440px, calc(100% - 56px));
  height: 150px;
  margin: 0;
  padding: 23px 36px 20px;
  border-radius: 8px;
  background: url("/assets/images/solution/high-quality-dataset/features/feature-copy-bg.png") no-repeat center / 100% 100%;
  color: #3d4557;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.hqd-section--pain {
  padding: 40px 0 96px;
  background: #ffffff;
}

html.is-desktop .hqd-page .hqd-section--pain .site-container.site-container--wide,
.hqd-section--pain .site-container--wide {
  width: min(var(--content-max-width), calc(100vw - 2 * max(24px, env(safe-area-inset-left))));
}

.hqd-section--pain .hqd-section-heading {
  margin-bottom: 32px;
}

.hqd-pain-grid {
  display: grid;
  width: min(var(--content-max-width), 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
  justify-content: center;
}

.hqd-pain-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 344 / 428;
  margin: 0;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 5px;
  background: #f5f7fb;
  box-shadow:
    0 0 0 1px rgba(214, 225, 241, 0.96),
    0 10px 24px rgba(31, 95, 178, 0.06);
}

.hqd-pain-card::after {
  content: "";
  position: absolute;
  top: 126px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 34px;
  background: linear-gradient(180deg, #f5f7fb 0%, rgba(245, 247, 251, 0.82) 45%, rgba(245, 247, 251, 0) 100%);
  pointer-events: none;
}

.hqd-pain-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 18px 0;
  background: #f5f7fb;
  text-align: center;
}

.hqd-pain-card__copy h3 {
  margin: 0;
  color: #061737;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

.hqd-pain-card__copy p {
  margin: 14px 0 0;
  color: #5a667c;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.hqd-pain-card__image {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hqd-visual--diagram {
  max-width: var(--content-max-width);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(20, 78, 150, 0.1);
}

.hqd-showcase-list {
  display: grid;
  gap: 45px;
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
}

.hqd-showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(320px, 418px);
  column-gap: 85px;
  align-items: start;
  justify-content: start;
}

.hqd-showcase-card--reverse {
  grid-template-columns: minmax(320px, 418px) minmax(0, 860px);
  column-gap: 103px;
  justify-content: end;
}

.hqd-showcase-card__media {
  position: relative;
  width: min(860px, 100%);
  aspect-ratio: 860 / 513;
  margin: 0;
  overflow: visible;
}

.hqd-showcase-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 12px;
  background: linear-gradient(105deg, #eef0ff 0%, #f1f8fe 100%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.058824);
  opacity: 0.8;
}

.hqd-showcase-card__media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 10px);
  z-index: 2;
  width: 90%;
  aspect-ratio: 834 / 495;
  transform: translate(-50%, -50%);
  /* border-radius: 22px;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6); */
  pointer-events: none;
}

.hqd-showcase-carousel__viewport {
  position: absolute;
  left: 50%;
  top: calc(50% - 10px);
  z-index: 1;
  width: 90%;
  aspect-ratio: 834 / 495;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  overflow: hidden;
}

.hqd-showcase-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 12px;
  opacity: 0;
  object-fit: cover;
  transform: scale(1.012);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hqd-showcase-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hqd-showcase-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
}

.hqd-showcase-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c6cedb;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hqd-showcase-carousel__dot.is-active {
  background: #2f76ff;
  transform: scale(1.08);
}

.hqd-showcase-carousel__dot:focus-visible {
  outline: 2px solid rgba(47, 118, 255, 0.45);
  outline-offset: 3px;
}

.hqd-showcase-card__body {
  width: min(418px, 100%);
  padding-top: 120px;
}

.hqd-showcase-card__body span {
  display: block;
  margin: 0;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
}

.hqd-showcase-card__body h3 {
  margin: 1px 0 0;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 26px;
  font-weight: 800;
  line-height: 40px;
}

.hqd-showcase-card__body p {
  margin: 30px 0 0;
  color: #393e4f;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.hqd-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 43px;
  width: min(var(--content-max-width), 100%);
  max-width: none;
  margin: 0 auto;
  justify-content: center;
}

.hqd-case-card {
  position: relative;
  aspect-ratio: 689 / 450;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(207, 227, 255, 0.8) 0%, rgba(238, 247, 255, 0.8) 66.35%);
  box-shadow: none;
}

.hqd-case-card--violet {
  background: linear-gradient(180deg, rgba(243, 239, 253, 0.8) 0%, rgba(246, 246, 254, 0.8) 66.35%);
}

.hqd-case-card__review {
  position: absolute;
  left: 3.92%;
  top: 7.56%;
  z-index: 1;
  width: 66.33%;
  height: 46.22%;
  box-sizing: border-box;
  padding: 14px 25px 18px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.86) 100%),
    rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hqd-case-card__review strong {
  display: block;
  margin: 0 0 0;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 20px;
  font-weight: 800;
  line-height: 40px;
}

.hqd-case-card__quote {
  position: absolute;
  left: 28.45%;
  top: 51.78%;
  z-index: 2;
  width: 49.5px;
  height: 35.5px;
  background: #ffffff;
  clip-path: polygon(0 0, 79.8% 0, 100% 100%, 32.8% 34.5%);
}

.hqd-case-card__review p {
  margin: 0;
  color: #393e4f;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.hqd-case-card__customer {
  position: absolute;
  left: 7.4%;
  top: 67.56%;
  z-index: 1;
  margin: 0;
}

.hqd-case-card--violet .hqd-case-card__customer {
  left: 6.24%;
}

.hqd-case-card__customer dt {
  color: rgba(0, 0, 0, 0.85098);
  font-size: 20px;
  font-weight: 800;
  line-height: 40px;
}

.hqd-case-card__customer dd {
  margin: 0;
  color: #393e4f;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  white-space: nowrap;
}

.hqd-case-card__image {
  position: absolute;
  left: 43.11%;
  top: 44.44%;
  z-index: 3;
  width: 53.56%;
  height: 46.22%;
  margin: 0;
  border-radius: 16px;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.06);
}

.hqd-case-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.hqd-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 36px;
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
  justify-content: center;
}

.hqd-service-card {
  position: relative;
  aspect-ratio: 460 / 301;
  min-height: 0;
  padding: 0;
  border: 3px solid #ffffff;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 100%),
    rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(203, 227, 252, 1);
  overflow: hidden;
}

.hqd-service-card::before {
  content: "";
  position: absolute;
  left: 16.3%;
  top: 0;
  z-index: 0;
  width: 84.13%;
  height: 100.33%;
  border-radius: 12px;
  background: url("/assets/images/solution/high-quality-dataset/service-card-bg.png") no-repeat center / cover;
}

.hqd-service-card img {
  position: absolute;
  z-index: 1;
  left: 63.7%;
  top: 33.89%;
  width: 29.13%;
  height: 48.17%;
  max-width: none;
  object-fit: contain;
  opacity: 1;
}

.hqd-service-card:nth-child(2) img {
  left: 63.91%;
  top: 28.57%;
  width: 35.65%;
  height: 59.14%;
}

.hqd-service-card:nth-child(3) img {
  left: 63.26%;
  top: 31.23%;
  width: 31.09%;
  height: 51.5%;
}

.hqd-service-card:nth-child(4) img {
  left: 62.39%;
  top: 28.9%;
  width: 33.48%;
  height: 55.48%;
}

.hqd-service-card:nth-child(5) img {
  left: 61.96%;
  top: 32.56%;
  width: 32.39%;
  height: 53.49%;
}

.hqd-service-card:nth-child(6) img {
  left: 62.83%;
  top: 31.23%;
  width: 32.17%;
  height: 52.82%;
}

.hqd-service-card h3 {
  position: absolute;
  left: 8.91%;
  top: 12.62%;
  z-index: 1;
  max-width: 54%;
  margin: 0;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 24px;
  font-weight: 800;
  line-height: 40px;
}

.hqd-service-card p {
  position: absolute;
  left: 8.04%;
  top: 29.57%;
  z-index: 1;
  width: 51.95%;
  max-width: none;
  margin: 0;
  color: #393e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.hqd-faq-list {
  display: grid;
  gap: 10px;
  width: min(var(--content-max-width), 100%);
  max-width: none;
  margin: 0 auto;
}

.hqd-faq-item {
  min-height: 73px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hqd-faq-item.is-hidden {
  display: none;
}

.hqd-faq-item[open] {
  min-height: 166px;
  padding-bottom: 20px;
}

.hqd-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 73px;
  padding: 0 68px 0 74px;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  cursor: pointer;
  list-style: none;
}

.hqd-faq-item[open] summary {
  min-height: 65px;
}

.hqd-faq-item summary::-webkit-details-marker {
  display: none;
}

.hqd-faq-item summary::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 18px;
  background: #d9e6fb url("/assets/images/solution/high-quality-dataset/faq-question-mark.svg") no-repeat center / 16.7168px 17.491px;
}

.hqd-faq-item summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 18px;
  height: 12px;
  transform: translateY(-50%);
  background: url("/assets/images/solution/high-quality-dataset/faq-chevron-down.svg") no-repeat center / contain;
}

.hqd-faq-item[open] summary::before {
  top: 20px;
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hqd-faq-item[open] summary::after {
  top: 26px;
  width: 20.0586px;
  height: 11.3389px;
  transform: none;
  background-image: url("/assets/images/solution/high-quality-dataset/faq-chevron-up.svg");
}

.hqd-faq-answer {
  position: relative;
  min-height: 80px;
  margin: 0 30px 0 69px;
  padding: 8px 14px 8px 60px;
  border-radius: 8px;
  background: #f1f6fd;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.hqd-faq-answer::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff url("/assets/images/solution/high-quality-dataset/faq-answer-mark.svg") no-repeat center / 16.0176px 15.833px;
}

.hqd-faq-answer p {
  margin: 0;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 20px;
  /* font-weight: 500; */
  line-height: 30px;
}

.hqd-faq-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 289px;
  height: 40px;
  margin: 28px auto 0;
  padding: 0;
  border: 0;
  border-radius: 50px;
  color: #1d50a3;
  background: #e2ecf9;
  font-family: inherit;
  font-size: 20px;
  /* font-weight: 800; */
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.hqd-faq-more:hover,
.hqd-faq-more:focus-visible {
  color: #1d50a3;
}

.hqd-related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 23px;
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
}

.hqd-related-product-card {
  box-sizing: border-box;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 22px 24px 24px;
  border: 1px solid rgba(222, 235, 252, 0.9);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow: 0 4px 20px rgba(0, 56, 140, 0.08);
}

.hqd-related-product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 356 / 204;
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
}

.hqd-related-product-card h3 {
  margin: 0;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
}

.hqd-related-product-card p {
  margin: 9px 0 0;
  color: #333b4f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.hqd-related-product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 104px;
  height: 34px;
  margin: auto 0 0 auto;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(90deg, #0e6eff 0%, #0aa8ff 100%);
  font-size: 14px;
  /* font-weight: 700; */
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 7px 15px rgba(12, 119, 246, 0.2);
}

.hqd-related-product-card a:hover,
.hqd-related-product-card a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.hqd-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 460px));
  gap: clamp(24px, 3.4vw, 68px);
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.hqd-resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 408px;
  padding: 26px 34px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-sizing: border-box;
  filter: drop-shadow(0 14px 24px rgba(33, 64, 118, 0.08));
}

.hqd-resource-card h3 {
  display: flex;
  min-height: 62px;
  margin: 0;
  padding: 0 0 16px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--hqd-resource-divider);
  color: var(--hqd-resource-accent);
  font-size: clamp(25px, 1.7vw, 32px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0;
}

.hqd-resource-card p {
  min-height: 94px;
  margin: 22px 0 0;
  color: #333333;
  font-size: clamp(16px, 1.05vw, 18px);
  /* font-weight: 700; */
  line-height: 1.55;
}

.hqd-resource-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 24px;
  padding: 0;
  list-style: none;
}

.hqd-resource-card li {
  position: relative;
  padding-left: 35px;
  color: #333333;
  font-size: clamp(15px, 1vw, 17px);
  /* font-weight: 700; */
  line-height: 1.45;
}

.hqd-resource-card li::before {
  content: "→";
  position: absolute;
  left: 2px;
  top: 0;
  color: #272636;
  font-size: 1em;
  font-weight: 500;
  line-height: inherit;
}

.hqd-resource-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin: auto 0 0;
  padding: 0;
  border: 1px solid var(--hqd-resource-accent);
  border-radius: 8px;
  color: var(--hqd-resource-accent);
  background: #ffffff;
  font-size: clamp(16px, 1.1vw, 20px);
  /* font-weight: 800; */
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}

.hqd-resource-card a:hover {
  color: var(--hqd-resource-accent);
  background: #ffffff;
}

.hqd-resource-card::after {
  content: none;
}

.hqd-resource-card:nth-child(1) {
  --hqd-resource-accent: #2f57b3;
  --hqd-resource-divider: #a8bee7;
  background-image: url("/assets/images/solution/high-quality-dataset/resource-card-bg-whitepaper.png");
}

.hqd-resource-card:nth-child(2) {
  --hqd-resource-accent: #1469a5;
  --hqd-resource-divider: #c6e4f5;
  background-image: url("/assets/images/solution/high-quality-dataset/resource-card-bg-video.png");
}

.hqd-resource-card:nth-child(3) {
  --hqd-resource-accent: #0b42b8;
  --hqd-resource-divider: #abc3ee;
  background-image: url("/assets/images/solution/high-quality-dataset/resource-card-bg-docs.png");
}

@media (max-width: 1180px) {
  .hqd-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 460px));
    gap: 24px;
  }

  .hqd-resource-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 460px);
  }

  .hqd-pain-grid {
    grid-template-columns: repeat(2, minmax(0, 344px));
  }

  .hqd-feature-grid {
    grid-template-columns: minmax(0, min(100%, 705px));
    justify-content: center;
  }

  .hqd-related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 356px));
    justify-content: center;
  }

  .hqd-showcase-card,
  .hqd-showcase-card--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-content: stretch;
  }

  .hqd-showcase-card__media {
    justify-self: center;
  }

  .hqd-showcase-card--reverse .hqd-showcase-card__media {
    order: -1;
  }

  .hqd-showcase-card__body {
    width: 100%;
    padding-top: 0;
  }

  .hqd-cases-grid {
    grid-template-columns: minmax(0, 689px);
    justify-content: center;
  }

  .hqd-service-grid {
    grid-template-columns: repeat(2, minmax(0, 460px));
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .hqd-resource-grid {
    grid-template-columns: minmax(0, 460px);
    width: 100%;
  }

  .hqd-resource-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 48rem) {
  html:not(.is-desktop) .hqd-page .site-container--wide {
    width: min(100% - 32px, 1453px);
  }

  html:not(.is-desktop) .hqd-page .hqd-hero,
  html:not(.is-desktop) .hqd-page .hqd-hero__inner {
    min-height: 0;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero::before {
    background-position: 74% center;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero__content {
    width: 100%;
    padding: 32px 0 64px;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero h1 {
    max-width: none;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.4;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero__desc {
    max-width: none;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero .hero-carousel__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: auto;
    margin-top: 24px;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero .hero-btn {
    width: min(200px, 62vw);
    min-width: 0;
    height: 42px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hqd-section--pain {
    padding: 56px 0;
  }

  .hqd-section--pain .hqd-section-heading {
    margin-bottom: 26px;
  }

  #hqd-features {
    padding: 56px 0;
  }

  #hqd-features .hqd-section-heading {
    margin-bottom: 28px;
  }

  .hqd-feature-grid {
    gap: 14px;
  }

  .hqd-feature-card {
    aspect-ratio: 705 / 300;
  }

  .hqd-feature-card__head {
    left: 18px;
    top: 20px;
    gap: 10px;
  }

  .hqd-feature-card__head img {
    width: 34px;
    height: 34px;
  }

  .hqd-feature-card__head h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .hqd-feature-card__copy {
    left: 16px;
    top: 66px;
    width: min(380px, calc(100% - 32px));
    height: auto;
    min-height: 124px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hqd-pain-grid {
    grid-template-columns: minmax(0, min(100%, 344px));
    gap: 18px;
  }

  .hqd-cases-grid,
  .hqd-resource-grid {
    grid-template-columns: 1fr;
  }

  .hqd-section--resources .site-container--wide {
    width: min(100% - 32px, 460px);
  }

  .hqd-resource-grid {
    grid-template-columns: 1fr;
    width: 100%;
    row-gap: 18px;
  }

  .hqd-resource-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .hqd-resource-card:nth-child(2),
  .hqd-resource-card:nth-child(3) {
    margin-left: 0;
  }

  .hqd-service-grid {
    grid-template-columns: minmax(0, 460px);
  }

  .hqd-section {
    padding: 56px 0;
  }

  .hqd-section--related {
    padding: 56px 0 60px;
  }

  .hqd-section--resources {
    padding: 56px 0 48px;
  }

  .hqd-page .hqd-section--resources + .home-cta {
    padding-top: 44px;
  }

  .hqd-section-heading {
    margin-bottom: 30px;
  }

  .hqd-section-heading h2 {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hqd-section-heading h2::before {
    width: 34px;
    height: 28px;
  }

  .hqd-section-heading h2::after {
    right: -12px;
    bottom: 4px;
    width: calc(100% - 38px);
    height: 20px;
  }

  .hqd-section-heading p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hqd-related-products-grid {
    grid-template-columns: minmax(0, min(100%, 356px));
    gap: 16px;
  }

  .hqd-related-product-card {
    min-height: 0;
    padding: 20px 20px 22px;
  }

  .hqd-related-product-card__image {
    margin-bottom: 12px;
  }

  .hqd-related-product-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .hqd-related-product-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hqd-showcase-list {
    gap: 46px;
  }

  .hqd-showcase-card__body span {
    font-size: 30px;
    line-height: 36px;
  }

  .hqd-showcase-card__body h3 {
    font-size: 22px;
    line-height: 34px;
  }

  .hqd-showcase-card__body p {
    margin-top: 18px;
    font-size: 16px;
  }

  .hqd-case-card {
    min-height: 0;
    padding: 0;
  }

  .hqd-case-card__review strong,
  .hqd-case-card__customer dt,
  .hqd-case-card__customer dd {
    font-size: 16px;
    line-height: 28px;
  }

  .hqd-case-card__review p {
    font-size: 14px;
    line-height: 22px;
  }

  .hqd-service-card {
    min-height: 260px;
  }

  .hqd-faq-item summary {
    min-height: 64px;
    padding: 14px 48px 14px 52px;
    font-size: 16px;
    line-height: 24px;
  }

  .hqd-faq-item[open] summary {
    min-height: 58px;
  }

  .hqd-faq-item summary::before {
    left: 16px;
    width: 24px;
    height: 24px;
    background-size: 13px 14px;
  }

  .hqd-faq-item summary::after {
    right: 18px;
    width: 15px;
    height: 10px;
  }

  .hqd-faq-answer {
    min-height: 0;
    margin: 0 16px 16px;
    padding: 12px 14px 12px 44px;
  }

  .hqd-faq-answer::before {
    left: 12px;
    top: 12px;
    width: 24px;
    height: 24px;
    background-size: 13px 13px;
  }

  .hqd-faq-answer p {
    font-size: 15px;
    line-height: 24px;
  }

  .hqd-faq-more {
    width: min(100%, 289px);
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .hqd-section {
    padding: 48px 0;
  }

  .hqd-section--pain,
  #hqd-features,
  .hqd-section--related {
    padding: 48px 0;
  }

  .hqd-section--resources {
    padding: 48px 0 48px;
  }

  .hqd-feature-card {
    min-height: 0;
    aspect-ratio: auto;
    padding: 18px 16px 20px;
  }

  .hqd-feature-card__bg {
    object-fit: cover;
  }

  .hqd-feature-card__head {
    position: relative;
    left: auto;
    top: auto;
  }

  .hqd-feature-card__copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 0;
    margin-top: 14px;
    padding: 14px 16px;
    background-size: 100% 100%;
  }

  .hqd-showcase-list {
    gap: 38px;
  }

  .hqd-showcase-card,
  .hqd-showcase-card--reverse {
    gap: 18px;
  }

  .hqd-showcase-card__body span {
    font-size: 24px;
    line-height: 30px;
  }

  .hqd-showcase-card__body h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .hqd-showcase-card__body p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hqd-case-card {
    display: flex;
    min-height: 0;
    aspect-ratio: auto;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .hqd-case-card__review,
  .hqd-case-card__customer,
  .hqd-case-card__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .hqd-case-card__review {
    padding: 14px 16px;
  }

  .hqd-case-card__quote {
    display: none;
  }

  .hqd-case-card__customer,
  .hqd-case-card--violet .hqd-case-card__customer {
    left: auto;
    margin: 0;
  }

  .hqd-case-card__customer dd {
    white-space: normal;
  }

  .hqd-case-card__image {
    aspect-ratio: 16 / 9;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4), 0 4px 18px rgba(0, 0, 0, 0.06);
  }

  .hqd-service-grid {
    grid-template-columns: 1fr;
  }

  .hqd-service-card {
    min-height: 210px;
    aspect-ratio: auto;
  }

  .hqd-service-card h3 {
    max-width: 64%;
    font-size: 20px;
    line-height: 30px;
  }

  .hqd-service-card p {
    width: 58%;
    font-size: 15px;
    line-height: 24px;
  }

  .hqd-related-product-card a {
    margin-top: 18px;
  }

  .hqd-resource-card {
    width: 100%;
    min-height: 360px;
    aspect-ratio: auto;
    padding: 22px 20px 24px;
    border-radius: 6px;
    background-color: #ffffff;
    background-image: linear-gradient(180deg, var(--hqd-resource-mobile-tint) 0%, rgba(255, 255, 255, 0.96) 36%, #ffffff 100%);
    background-size: 100% 100%;
    box-shadow: 0 10px 26px rgba(32, 76, 140, 0.1);
    filter: none;
  }

  .hqd-resource-card:nth-child(1) {
    --hqd-resource-mobile-tint: #cfe1fb;
    background-image: linear-gradient(180deg, var(--hqd-resource-mobile-tint) 0%, rgba(255, 255, 255, 0.96) 36%, #ffffff 100%);
  }

  .hqd-resource-card:nth-child(2) {
    --hqd-resource-mobile-tint: #c8effa;
    background-image: linear-gradient(180deg, var(--hqd-resource-mobile-tint) 0%, rgba(255, 255, 255, 0.96) 36%, #ffffff 100%);
  }

  .hqd-resource-card:nth-child(3) {
    --hqd-resource-mobile-tint: #d5e5ff;
    background-image: linear-gradient(180deg, var(--hqd-resource-mobile-tint) 0%, rgba(255, 255, 255, 0.96) 36%, #ffffff 100%);
  }

  .hqd-resource-card h3,
  .hqd-resource-card p,
  .hqd-resource-card ul,
  .hqd-resource-card a {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .hqd-resource-card h3 {
    min-height: 54px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hqd-resource-divider);
    font-size: 20px;
    line-height: 1.35;
  }

  .hqd-resource-card p {
    min-height: 0;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hqd-resource-card ul {
    gap: 8px;
    margin: 18px 0 20px;
  }

  .hqd-resource-card li {
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
  }

  .hqd-resource-card a {
    min-height: 42px;
    margin-top: 20px;
    font-size: 15px;
  }

  .hqd-resource-card::after {
    display: none;
  }
}

@media (max-width: 480px) {
  html:not(.is-desktop) .hqd-page .hqd-hero h1 {
    max-width: none;
    font-size: 22px;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero__desc {
    font-size: 15px;
  }

  .hqd-showcase-card__media::after {
    border-radius: 18px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.6);
  }

  .hqd-service-card h3,
  .hqd-service-card p {
    max-width: 74%;
  }

  .hqd-pain-card {
    border-width: 2px;
  }

  .hqd-pain-card::after {
    top: 104px;
  }

  .hqd-pain-card__copy {
    min-height: 112px;
    padding: 22px 14px 0;
  }

  .hqd-pain-card__copy h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .hqd-pain-card__copy p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
  }

  .hqd-faq-more {
    height: 38px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  html:not(.is-desktop) .hqd-page .site-container--wide {
    width: min(100% - 24px, 1453px);
  }

  html:not(.is-desktop) .hqd-page .hqd-hero__content {
    padding: 32px 0 64px;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero h1 {
    font-size: 22px;
  }

  html:not(.is-desktop) .hqd-page .hqd-hero__desc {
    font-size: 15px;
  }

  .hqd-section-heading h2 {
    font-size: 22px;
  }

  .hqd-section-heading p {
    font-size: 14px;
  }

  .hqd-faq-item summary {
    padding-right: 42px;
    padding-left: 46px;
    font-size: 15px;
  }

  .hqd-faq-answer {
    margin-right: 12px;
    margin-left: 12px;
    padding-left: 40px;
  }

  .hqd-resource-grid {
    width: 100%;
  }
}

/* source: styles/pages/home.css */
.home-hero {
  padding-top: clamp(1.75rem, 1rem + 1.5vw, 2.75rem);
  padding-bottom: clamp(3.5rem, 2.5rem + 2vw, 5rem);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cta-form-shell {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 64rem) {
  .cta-form-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
    align-items: stretch;
  }
}

/* source: styles/pages/blog.css */
.news-page {
  background: #ffffff;
}

.news-page__hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 350px;
  padding: clamp(3.5rem, 2.8rem + 2vw, 5.25rem) 0 clamp(2.75rem, 2.2rem + 1.8vw, 4.25rem);
  background:
    url("/assets/images/blog/hero-bg.png") no-repeat;
    background-size: 100% 100%;
}

.news-page__hero-content {
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.news-page__hero-title {
 margin: 0;
 font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 36px;
color: #000000;
line-height: 50px;
text-align: left;
font-style: normal;
text-transform: none;
}

.news-page__hero-desc {
 margin: 0;
 font-family: PingFang SC, PingFang SC;
font-weight: 400;
font-size: 16px;
color: #000000;
line-height: 22px;
text-align: left;
font-style: normal;
text-transform: none;
}

.news-page__toolbar {
  border-bottom: 1px solid rgba(16, 35, 71, 0.08);
  background: #ffffff;
}

.news-page__toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.95rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(16, 35, 71, 0.8);
  font: inherit;
  font-size: 0.9375rem;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.news-tab:hover,
.news-tab:focus-visible {
  background: rgba(36, 107, 255, 0.08);
  color: var(--color-primary);
}

.news-tab.is-active {
  background: rgba(36, 107, 255, 0.12);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(36, 107, 255, 0.1);
}

.news-search {
  flex-shrink: 0;
}

.news-search__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(18rem, 100%);
  min-height: 2.5rem;
  padding: 0 0.875rem;
  border: 1px solid rgba(16, 35, 71, 0.12);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: rgba(16, 35, 71, 0.42);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.news-search__field:focus-within {
  border-color: rgba(36, 107, 255, 0.38);
  box-shadow: 0 0 0 0.25rem rgba(36, 107, 255, 0.08);
}

.news-search__field svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.news-search__field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 0.875rem;
  outline: none;
}

.news-search__field input::placeholder {
  color: rgba(16, 35, 71, 0.38);
}

.news-page__section {
  padding: 25px 0;
}

.news-page__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 1.75rem;
  align-items: start;
}

.news-page__main {
  min-width: 0;
}

.news-featured-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(16, 35, 71, 0.06);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-xs);
}

.news-featured-card__viewport {
  position: relative;
  aspect-ratio: 1170 / 300;
  background: #dbe8fb;
}

.news-featured-card__slide {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.news-featured-card__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.news-featured-card__slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1170 / 300;
  object-fit: cover;
}

.news-featured-card__overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem 1.125rem;
  background: linear-gradient(180deg, rgba(12, 23, 45, 0) 0%, rgba(12, 23, 45, 0.62) 100%);
}

.news-featured-card__title {
  margin: 0;
  max-width: calc(100% - 6rem);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.55;
}

.news-featured-card__pager {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-featured-card__pager-dot {
  width: 0.75rem;
  height: 0.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width var(--transition-fast), background-color var(--transition-fast);
}

.news-featured-card__pager-dot:hover,
.news-featured-card__pager-dot:focus-visible {
  background: rgba(255, 255, 255, 0.74);
}

.news-featured-card__pager-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.news-featured-card__pager-dot.is-active {
  width: 1.35rem;
  background: #ffffff;
}

.news-list {
  display: grid;
  gap: 0;
  min-width: 0;
}

.news-list-card {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
  padding: 0 0 1.5rem;
  border: 0;
  border-bottom: 1px solid #E7EAF3;
  border-radius: 0;
  background: transparent;
  transition: none;
}

.news-list-card + .news-list-card {
  padding-top: 1.5rem;
}

.news-list-card:hover {
  transform: none;
  border-color: #E7EAF3;
  box-shadow: none;
}

.news-list-card__media {
  display: block;
  width: 100%;
  max-width: 20rem;
  min-width: 0;
  aspect-ratio: 320 / 174;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.news-list-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 320 / 174;
  object-fit: cover;
}

.news-list-card__body {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
}

.news-list-card__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.45;
  min-width: 0;
}

.news-list-card__title a {
  color: var(--color-text);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color var(--transition-fast);
}

.news-list-card__title a:hover,
.news-list-card__title a:focus-visible {
  color: var(--color-primary);
}

.news-list-card__desc {
  margin: 0;
  color: rgba(16, 35, 71, 0.62);
  font-size: 0.9375rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  min-height: calc(2em * 1.8);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-list-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
}

.news-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 0.3rem;
  background: rgba(36, 107, 255, 0.08);
  color: var(--color-primary);
  font-size: 0.75rem;
  line-height: 1;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-chip--accent {
  background: rgba(90, 109, 255, 0.14);
  color: #4f5cff;
}

.news-list-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: rgba(16, 35, 71, 0.42);
  font-size: 0.8125rem;
}

.news-list-card__meta svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

.news-pagination {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 25px;
}

.news-pagination__item,
.news-pagination__input {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.75rem;
  border: 1px solid #dfe5ee;
  border-radius: 0.125rem;
  background: #ffffff;
  font: inherit;
  font-size: 0.8125rem;
  line-height: 1;
}

.news-pagination__item,
.news-pagination__input {
  min-width: 1.875rem;
  padding: 0 0.55rem;
  color: #7f8ea3;
}

.news-pagination__item {
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.news-pagination__item:hover:not(:disabled) {
  border-color: rgba(36, 107, 255, 0.36);
  color: var(--color-primary);
}

.news-pagination__item.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.news-pagination__item--icon {
  min-width: 1.75rem;
  padding: 0;
}

.news-pagination__icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

.news-pagination__item:disabled {
  cursor: not-allowed;
  border-color: #e8edf4;
  color: #c1cad7;
  background: #ffffff;
}

.news-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.9rem;
  height: 1.75rem;
  color: #9aa7b8;
  font-size: 0.8125rem;
}

.news-pagination__jump {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #9aa7b8;
  font-size: 0.8125rem;
}

.news-pagination__input {
  width: 2.2rem;
  padding: 0;
  color: #5b6778;
  text-align: center;
}

.news-pagination__input:focus {
  border-color: rgba(36, 107, 255, 0.4);
  outline: none;
}


.news-sidebar {
  position: static;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #eff4f7;
  border-radius: 4px;
  background:
    url("/assets/images/blog/right.jpg") no-repeat;
    background-size: 100% 100%;
}

.news-sidebar__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #eff4f7;
}

.news-sidebar__header h2 {
  margin: 0;
  color: #111827;
  font-size: 1.25rem;
}

.news-sidebar__header img {
  width: 1.125rem;
  height: 1.125rem;
}

.news-sidebar__lead,
.news-sidebar__card {
  margin: 0;
}

.news-sidebar__lead a,
.news-sidebar__card a {
  color: inherit;
  text-decoration: none;
}

.news-sidebar__lead img,
.news-sidebar__card img {
  display: block;
  width: 100%;
  aspect-ratio: 320 / 174;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.news-sidebar__list {
  display: grid;
  gap: 1rem;
}

.news-sidebar__title {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(16, 35, 71, 0.86);
}

.news-sidebar__title a:hover,
.news-sidebar__title a:focus-visible {
  color: var(--color-primary);
}

@media (max-width: 80rem) {
  .news-page__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .news-sidebar__header,
  .news-sidebar__lead {
    grid-column: 1 / -1;
  }

  .news-sidebar__list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 64rem) {
  .news-page__toolbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .news-search {
    width: 100%;
  }

  .news-search__field {
    width: 100%;
  }

  .news-list-card {
    grid-template-columns: 20rem minmax(0, 1fr);
  }
}

@media (max-width: 48rem) {
  .news-page__hero {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .news-page__section {
    padding: 25px 0;
  }

  .news-featured-card__overlay {
    align-items: flex-end;
    padding: 0.875rem 1rem;
  }

  .news-featured-card__pager {
    right: 1rem;
    bottom: 0.875rem;
  }

  .news-featured-card__title {
    max-width: calc(100% - 4.5rem);
    font-size: 0.9375rem;
  }

  .news-list-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-list-card__media {
    width: 100%;
    max-width: none;
  }

  .news-list-card__media img {
    min-height: auto;
    aspect-ratio: 320 / 174;
  }

  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-sidebar__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 30rem) {
  .news-tabs {
    gap: 0.35rem;
  }

  .news-tab {
    padding-inline: 0.75rem;
    font-size: 0.875rem;
  }

  .news-list-card {
    padding: 0 0 1.25rem;
  }

  .news-list-card + .news-list-card {
    padding-top: 1.25rem;
  }

  .news-list-card__title {
    font-size: 1.1rem;
  }

  .news-pagination {
    gap: 0.35rem;
  }
}

/* source: styles/pages/about.css */
.about-page {
  overflow: hidden;
  background: #ffffff;
}

.about-hero {
  min-height: 348px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 46%),
    url("/assets/images/about/hero-bg.png") no-repeat center / cover;
}

.about-hero__inner {
  min-height: 348px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.about-hero__title {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(40px, 3.4vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.about-hero__title span {
  color: #0f69e6;
  font-weight: 700;
}

.about-hero__lead {
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(20px, 1.45vw, 27px);
  font-weight: 500;
  line-height: 1.35;
}

.about-hero__desc {
  margin: 0;
  color: #293241;
  font-size: 16px;
  line-height: 1.7;
}

.about-section {
  padding: 72px 0;
}

.about-intro {
  background: #f4f8ff url("/assets/images/about/section-bg.png") no-repeat center / cover;
}

.about-company,
.about-honor {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

html.is-desktop .about-honor__grid {
  width: var(--content-max-width);
}

.about-contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 247, 255, 0.88)),
    url("/assets/images/about/section-bg.png") no-repeat center / cover;
}

.about-section__heading {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-section__heading h2 {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #000000;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 46px;
  text-align: center;
}

.about-section__heading h2::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 6px;
  z-index: -1;
  width: calc(100% - 50px);
  height: 26px;
  background-image: url("/assets/images/home/core-title-pill-image.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

.about-section__icon {
  display: inline-block;
  width: 46px;
  height: 36px;
  flex-shrink: 0;
}

.about-section__heading p {
  margin: 0;
  color: #393E4F;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 28px;
  text-align: center;
}

.about-intro__grid,
.about-company__grid,
.about-contact__grid {
  display: grid;
  align-items: center;
  gap: 56px;
  padding: 0;
}

.about-intro__grid {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
}

.about-company__grid {
  max-width: var(--content-max-width);
  margin: 0 auto;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 64px;
}

.about-contact__grid {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
}

.about-intro__media img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
}

.about-intro__copy,
.about-company__copy {
  color: #263244;
}

.about-intro__copy p,
.about-company__copy p {
  margin: 0;
  color: #2f3c50;
  font-size: 16px;
  line-height: 2;
}

.about-intro__copy p + p,
.about-company__copy p + p {
  margin-top: 18px;
}

.about-intro__copy .about-intro__lead {
  color: #111827;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.about-company__photo {
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(15, 39, 81, 0.1);
}

.about-company__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-company__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.about-company__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 36px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  box-sizing: border-box;
  font-size: 14px;
  /* font-weight: 600; */
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.about-company__btn--primary {
  background: #1677ff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(22, 119, 255, 0.22);
}

.about-company__btn--ghost {
  background: #ffffff;
  border-color: #1677ff;
  color: #1677ff;
}

.about-company__btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.about-company__btn--primary:hover {
  background: #0f69e6;
  border-color: #0f69e6;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(22, 119, 255, 0.3);
}

.about-company__btn--ghost:hover {
  background: #ffffff;
  border-color: #1677ff;
  color: #1677ff;
  box-shadow: none;
}

.about-company__btn:active {
  transform: translateY(0);
}

.about-contact__card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(15, 39, 81, 0.1);
}

.about-contact__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.about-contact__item + .about-contact__item {
  margin-top: 24px;
}

.about-contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #eef6ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.about-contact__item--phone .about-contact__icon {
  background-image: url("/assets/images/home/cta/gftelephone.png");
  background-size: 24px 24px !important;
}

.about-contact__item--mail .about-contact__icon {
  background-image: url("/assets/images/home/cta/youjian.png");
  background-size: 30px 22px !important;
}

.about-contact__item--pin .about-contact__icon {
  background-image: url("/assets/images/home/cta/dizhi.png");
  background-size: 24px 32px !important;
}

.about-contact__item h3 {
  margin: 0 0 7px;
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.35;
}

.about-contact__item p {
  margin: 0;
  color: #707070;
  font-size: 16px;
  line-height: 1.65;
}

.about-contact__item .about-contact__strong {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.about-contact__item--mail .about-contact__strong {
  font-size: 18px;
  white-space: nowrap;
}

.about-contact__divider {
  height: 1px;
  margin: 28px 0;
  background: rgba(15, 105, 230, 0.12);
}

.about-contact__map {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 1110 / 594;
  border-radius: 8px;
  background: #f6fbff;
}

.about-contact__map > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-contact__map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: #0f69e6;
  line-height: 1;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.about-contact__map-pin:hover,
.about-contact__map-pin:focus-visible {
  filter: drop-shadow(0 10px 18px rgba(0, 111, 255, 0.18));
  transform: translate3d(0, -3px, 0);
}

.about-contact__map-pin:focus-visible {
  outline: 2px solid rgba(15, 105, 230, 0.55);
  outline-offset: 4px;
  border-radius: 10px;
}

.about-contact__map-pin-icon {
  display: block;
  width: clamp(46px, 4.7vw, 82px);
  height: auto;
  flex: 0 0 auto;
  pointer-events: none;
}

.about-contact__map-pin-label {
  display: inline-flex;
  align-items: center;
  min-height: clamp(26px, 2.2vw, 40px);
  margin-left: clamp(-8px, -0.45vw, -4px);
  padding: 0 clamp(9px, 0.9vw, 16px);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(30, 118, 224, 0.2);
  color: #0f69e6;
  font-size: clamp(13px, 1.1vw, 20px);
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
}

.about-contact__map-pin--xinjiang {
  left: 22.6%;
  top: 18.2%;
}

.about-contact__map-pin--zhengzhou {
  left: 58.2%;
  top: 36.1%;
}

.about-contact__map-pin--nanjing {
  left: 69.8%;
  top: 45.8%;
}

@media (max-width: 1279px) {
  .about-hero,
  .about-hero__inner {
    min-height: 300px;
  }

  .about-intro__grid,
  .about-company__grid,
  .about-contact__grid {
    grid-template-columns: 1fr;
  }

  html:not(.is-desktop) .about-company__photo {
    height: auto;
  }

  html:not(.is-desktop) .about-company__photo img {
    aspect-ratio: 590 / 330;
    height: auto;
  }

  .about-contact__card {
    max-width: 720px;
    width: 100%;
    box-sizing: border-box;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  html:not(.is-desktop) .about-section {
    padding: 56px 0;
  }

  html:not(.is-desktop) .about-section__heading {
    margin-bottom: 36px;
  }

  html:not(.is-desktop) .about-section__heading h2 {
    flex-wrap: wrap;
    font-size: 28px;
    line-height: 1.35;
  }

  html:not(.is-desktop) .about-section__heading h2::after {
    right: -14px;
    bottom: 4px;
    width: calc(100% - 42px);
  }

  html:not(.is-desktop) .about-section__heading p {
    font-size: 17px;
    line-height: 1.6;
    padding: 0 12px;
  }

}

@media (max-width: 640px) {
  html:not(.is-desktop) .about-hero {
    min-height: 270px;
    background-position: 61% center;
  }

  html:not(.is-desktop) .about-hero__inner {
    min-height: 270px;
    padding-right: 28%;
  }

  html:not(.is-desktop) .about-hero__title {
    margin-bottom: 14px;
    font-size: 32px;
  }

  html:not(.is-desktop) .about-hero__lead {
    margin-bottom: 12px;
    font-size: 18px;
  }

  html:not(.is-desktop) .about-hero__desc,
  html:not(.is-desktop) .about-section__heading p,
  html:not(.is-desktop) .about-intro__copy p,
  html:not(.is-desktop) .about-company__copy p {
    font-size: 14px;
  }

  html:not(.is-desktop) .about-section__heading h2 {
    font-size: 22px;
  }

  html:not(.is-desktop) .about-contact__card {
    padding: 24px 18px;
  }

  .about-contact__map,
  html:not(.is-desktop) .about-contact__map,
  html.is-desktop .about-contact__map {
    min-height: 0;
    aspect-ratio: 1110 / 594;
  }

  .about-contact__map > img,
  html:not(.is-desktop) .about-contact__map > img,
  html.is-desktop .about-contact__map > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }

  .about-contact__map-pin,
  html:not(.is-desktop) .about-contact__map-pin,
  html.is-desktop .about-contact__map-pin {
    align-items: flex-start;
  }

  .about-contact__map-pin-icon,
  html:not(.is-desktop) .about-contact__map-pin-icon,
  html.is-desktop .about-contact__map-pin-icon {
    width: clamp(24px, 7.5vw, 36px);
  }

  .about-contact__map-pin-label,
  html:not(.is-desktop) .about-contact__map-pin-label,
  html.is-desktop .about-contact__map-pin-label {
    box-sizing: border-box;
    max-width: min(34vw, 118px);
    min-height: 0;
    margin-left: -4px;
    padding: 4px 7px;
    border-radius: 4px;
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .about-contact__map-pin--zhengzhou,
  html:not(.is-desktop) .about-contact__map-pin--zhengzhou,
  html.is-desktop .about-contact__map-pin--zhengzhou {
    left: 56%;
    top: 35.4%;
  }

  .about-contact__map-pin--nanjing,
  html:not(.is-desktop) .about-contact__map-pin--nanjing,
  html.is-desktop .about-contact__map-pin--nanjing {
    left: 72%;
    top: 50%;
    flex-direction: row-reverse;
    transform: translate3d(-100%, 0, 0);
  }

  .about-contact__map-pin--nanjing:hover,
  .about-contact__map-pin--nanjing:focus-visible,
  html:not(.is-desktop) .about-contact__map-pin--nanjing:hover,
  html:not(.is-desktop) .about-contact__map-pin--nanjing:focus-visible,
  html.is-desktop .about-contact__map-pin--nanjing:hover,
  html.is-desktop .about-contact__map-pin--nanjing:focus-visible {
    transform: translate3d(-100%, -3px, 0);
  }

  .about-contact__map-pin--nanjing .about-contact__map-pin-label,
  html:not(.is-desktop)
    .about-contact__map-pin--nanjing
    .about-contact__map-pin-label,
  html.is-desktop .about-contact__map-pin--nanjing .about-contact__map-pin-label {
    margin-right: -4px;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  html:not(.is-desktop) .about-hero__inner {
    padding-right: 18%;
  }

  html:not(.is-desktop) .about-contact__item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  html:not(.is-desktop) .about-contact__icon {
    width: 36px;
    height: 36px;
  }

  html:not(.is-desktop) .about-contact__item--phone .about-contact__icon {
    background-size: 18px 18px !important;
  }

  html:not(.is-desktop) .about-contact__item--mail .about-contact__icon {
    background-size: 22px 16px !important;
  }

  html:not(.is-desktop) .about-contact__item--pin .about-contact__icon {
    background-size: 16px 22px !important;
  }
}

/* source: styles/pages/data-center-platform.css */
.data-center-platform-page {
  background: #ffffff;
  color: #1f2638;
}


.data-center-platform-page h1,
.data-center-platform-page h2,
.data-center-platform-page h3,
.data-center-platform-page p {
  letter-spacing: 0;
}

.data-center-platform-page img {
  max-width: 100%;
  display: block;
  height: auto;
}

html.is-desktop .data-center-platform-page .site-container.site-container--wide,
.data-center-platform-page .site-container--wide {
  width: min(var(--content-max-width), calc(100% - 48px));
  max-width: none;
  box-sizing: border-box;
}

.dp-hero {
  position: relative;
  min-height: 527px;
  background: #eaf6ff;
  overflow: hidden;
}

.dp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/product/data-center-platform/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.dp-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 527px;
  display: flex;
  align-items: center;
}

.dp-hero__content {
  width: min(721px, 52%);
}

.dp-eyebrow {
  display: none;
}

.dp-hero h1 {
  margin: 0 0 22px;
  color: #1d2234;
  font-size: clamp(22px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.53;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
}

.dp-hero__desc {
  margin: 0;
  color: #313647;
  font-size: clamp(15px, 1.8vw, 28px);
  line-height: 1.5;
}

.dp-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(24px, 4vw, 76px);
}

.dp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  /* font-weight: 500; */
  line-height: 1;
  text-decoration: none;
}

.dp-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0b66ff 0%, #00bbff 100%);
  box-shadow: 0 10px 22px rgba(11, 102, 255, 0.18);
}

.dp-btn--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.dp-btn--ghost {
  color: #0f69e6;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 105, 230, 0.22);
}

.dp-hero .dp-btn--ghost {
  color: #313647;
  background: #ffffff;
  border: 0;
}

.dp-section {
  padding: 74px 0;
  overflow: hidden;
}

.dp-section--architecture,
.dp-section--scenarios,
.dp-section--cases,
.dp-section--news {
  background:
    linear-gradient(135deg, rgba(235, 247, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 44%, rgba(236, 246, 255, 0.9) 100%);
}

.dp-section--highlights {
  background: #eaf4ff;
}

.dp-section--features,
.dp-section--governance,
.dp-section--recommend {
  background: #ffffff;
}

.dp-section--governance {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #eaf7ff 100%);
}

.dp-section--resources,
.dp-section--faq {
  background: linear-gradient(180deg, #f6f8ff 0%, #f2f4fb 100%);
}

.dp-section--resources {
  min-height: 628px;
  padding: 52px 0 12px;
  background: linear-gradient(180deg, #ffffff 0%, #eff0f7 10.5854%, #f2f3fa 100%);
  box-sizing: border-box;
}

.dp-section--resources .dp-heading {
  margin-bottom: 26px;
}

.dp-section--faq .dp-heading {
  margin-bottom: 20px;
}

.dp-section--resources .site-container {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

html.is-desktop .data-center-platform-page .dp-section--resources .site-container.site-container--wide,
.data-center-platform-page .dp-section--resources .site-container--wide {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.dp-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.dp-heading::before {
  content: none;
}

.dp-heading h2 {
  position: relative;
  z-index: 0;
  order: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}

.dp-heading h2::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 36px;
  flex-shrink: 0;
  background-image: url("/assets/images/home/icon-core-diamond.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.data-center-platform-page .home-scenarios .scenarios__icon,
.data-center-platform-page .dp-cases-design .stories__icon,
.data-center-platform-page .home-clients .clients__icon,
.data-center-platform-page .home-news .news__icon {
  position: static;
  display: inline-block;
  width: 46px;
  height: 36px;
  flex: 0 0 16px;
  object-fit: contain;
  vertical-align: middle;
}

.dp-heading h2::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 6px;
  z-index: -1;
  width: calc(100% - 50px);
  height: 26px;
  background-image: url("/assets/images/home/core-title-pill-image.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  pointer-events: none;
}

.dp-heading p {
  position: relative;
  z-index: 1;
  order: 2;
  width: 100%;
  margin: 0 auto;
  color: #666666;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.dp-core-content {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.dp-architecture {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 12px;
  /* border: 1px solid rgba(13, 92, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(40, 105, 185, 0.12); */
}

.dp-architecture img {
  width: 100%;
  border-radius: 6px;
}

.dp-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.dp-highlight-card {
  position: relative;
  height: 427px;
  min-height: 427px;
  border: 0;
  border-radius: 20px;
  background-color: #eef5ff;
  background-image: url("/assets/images/product/data-center-platform/highlight-sovereign.png");
  background-size: 101.1011% 100%;
  background-position: -1.86px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: none;
}

.dp-highlight-card:nth-child(2){
  background-image: url("/assets/images/product/data-center-platform/highlight-lakehouse.png");
  background-size: 100% 100.2607%;
  background-position: 0 -0.56px;
}

.dp-highlight-card:nth-child(3){
  background-image: url("/assets/images/product/data-center-platform/highlight-3.png");
  background-size: 100% 100.2607%;
  background-position: 0 -0.56px;
}

.dp-highlight-card:nth-child(4){
  background-image: url("/assets/images/product/data-center-platform/highlight-4.png");
  background-size: 100% 100.2607%;
  background-position: 0 -0.56px;
}

.dp-highlight-card img {
  display: none;
}

.dp-highlight-card div {
  position: absolute;
  left: 3.51%;
  right: 3.51%;
  top: 258px;
  height: 152px;
  min-height: 0;
  margin: 0;
  padding: 23px 9.06% 0;
  border-radius: 12px;
  background: #ffffff;
  box-sizing: border-box;
}

.dp-highlight-card h3,
.dp-feature-copy h3,
.dp-governance-card h3,
.dp-scenario-card h3,
.dp-case-card h3,
.dp-resource-card h3,
.dp-product-card h3,
.dp-news-card h3 {
  margin: 0;
  color: #061737;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.dp-highlight-card h3 {
  color: #061737;
  font-size: 22px;
  font-weight: 800;
  line-height: 20px;
}

.dp-highlight-card p,
.dp-governance-card p,
.dp-scenario-card p,
.dp-case-card p,
.dp-resource-card p,
.dp-product-card p,
.dp-news-card p {
  margin: 10px 0 0;
  color: #5a5d6b;
  font-size: 16px;
  line-height: 1.6;
}

.dp-highlight-card p {
  margin: 15px 0 0;
  color: #5a5d6b;
  font-size: 18px;
  line-height: 22.4px;
}

.dp-feature-showcase {
  display: grid;
  gap: 76px;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.dp-feature-panel {
  display: grid;
  grid-template-columns: minmax(360px, 493px) minmax(0, 902px);
  align-items: center;
  gap: 29px;
}

.dp-feature-panel--reverse {
  grid-template-columns: minmax(0, 902px) minmax(360px, 493px);
}

.dp-feature-panel--reverse .dp-feature-copy {
  order: 2;
}

.dp-feature-panel--reverse .dp-feature-visual {
  order: 1;
}

.dp-feature-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.dp-feature-tab {
  position: relative;
  box-sizing: border-box;
  min-height: 146px;
  padding: 24px 24px 22px 72px;
  border: 2px solid transparent;
  border-radius: 12px;
  color: rgba(0, 0, 0, 0.85);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.dp-feature-tab:focus-visible {
  outline: 2px solid rgba(11, 102, 255, 0.58);
  outline-offset: 3px;
}

.dp-feature-tab--active {
  color: #0b6cf5;
  border-color: #2f7eff;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(31, 111, 238, 0.08);
}

.dp-feature-tab h3 {
  margin: 0 0 8px;
  color: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
}

.dp-feature-tab p {
  margin: 0;
  color: #555d6c;
  font-size: 16px;
  line-height: 24px;
}

.dp-feature-tab p span {
  display: block;
  white-space: nowrap;
}

.dp-feature-tab--active p {
  color: #555d6c;
}

.dp-feature-tab__icon {
  position: absolute;
  left: 24px;
  top: 25px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.dp-feature-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.dp-feature-visual img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.12);
}

.dp-feature-visual--stack {
  aspect-ratio: 902 / 569;
  min-height: 0;
  height: 520px;
  padding: 0;
  overflow: hidden;
  background: #f0f7ff;
}

.dp-feature-visual--stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #eaf5ff 0%, #f8fbff 100%);
  opacity: 1;
  pointer-events: none;
}

.dp-feature-actions {
  position: absolute;
  right: 20px;
  top: 26px;
  z-index: 3;
  display: inline-flex;
  gap: 14px;
}

.dp-feature-actions--left {
  left: 19px;
  right: auto;
  top: 39px;
}

.dp-feature-panel--first .dp-feature-actions {
  top: 44px;
  right: 29px;
}

.dp-feature-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  color: #0f69e6;
  background: #ffffff;
  border: 1px solid #0f69e6;
  font-size: 14px;
  font-weight: 800;
  line-height: 36px;
  text-decoration: none;
}

.dp-feature-actions a:first-child {
  color: #ffffff;
  background: linear-gradient(135deg, #0b66ff 0%, #00bbff 100%);
  border-color: transparent;
}

.dp-screen-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dp-screen-stack img {
  position: absolute;
  width: auto;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transition: opacity 0.24s ease;
}

.dp-screen-stack img[hidden] {
  display: none;
}

.dp-screen-stack img.is-fading {
  opacity: 0;
}

.dp-feature-visual--single .dp-screen-stack__front {
  left: 25px;
  top: 18px;
  width: calc(100% - 40px);
  height: calc(100% - 36px);
  object-fit: contain;
}

.dp-feature-visual--two-up .dp-screen-stack__back {
  left: 4.77%;
  top: 7.73%;
  width: 56.65%;
  opacity: 0.56;
}

.dp-feature-visual--two-up .dp-screen-stack__front {
  left: 20.73%;
  top: 33.92%;
  width: 72.39%;
  opacity: 1;
}

.dp-feature-visual--triple .dp-screen-stack__top {
  left: 39.98%;
  top: 0;
  width: 52.14%;
}

.dp-feature-visual--triple .dp-screen-stack__left {
  left: 0;
  top: 12.74%;
  width: 57.19%;
}

.dp-feature-visual--triple .dp-screen-stack__front {
  left: 24.53%;
  top: 31.67%;
  width: 57.19%;
}

.dp-visual-toolbar {
  position: absolute;
  right: 24px;
  top: 16px;
  z-index: 1;
  display: inline-flex;
  gap: 8px;
}

.dp-visual-toolbar span {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0f69e6;
  background: rgba(232, 241, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.dp-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0f69e6;
  background: #e8f1ff;
  font-size: 13px;
  font-weight: 800;
}

.dp-pill--teal {
  color: #047d85;
  background: #e5fbfb;
}

.dp-pill--purple {
  color: #6650d9;
  background: #eeeafe;
}

.data-center-platform-page .dp-home-module {
  isolation: isolate;
}

.data-center-platform-page .dp-blank-media {
  display: block;
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.96) 0%, rgba(232, 242, 255, 0.88) 100%);
  border: 1px solid rgba(15, 105, 230, 0.08);
}

.data-center-platform-page .scenarios__card-img.dp-blank-media {
  min-height: 178px;
}

.data-center-platform-page .dp-blank-media--story {
  width: 100%;
  height: 100%;
}

.data-center-platform-page .dp-blank-media--news {
  width: 128px;
  height: 106px;
  border-radius: 4px;
}

.data-center-platform-page .clients__logo-card--placeholder {
  background: rgba(255, 255, 255, 0.72);
  border-style: dashed;
}

.data-center-platform-page .home-clients {
  height: 439px;
  min-height: 439px;
  padding: 32px 0 42px;
  background: #f7f9fd;
}

.data-center-platform-page .home-clients::before {
  content: "";
  position: absolute;
  top: -83.573242px;
  left: 50%;
  z-index: 0;
  width: 2099px;
  height: 914.503174px;
  margin-left: -1134px;
  background-image: url("/assets/images/product/data-center-platform/partners-bg-pixso.png");
  background-repeat: no-repeat;
  background-size: 2100px 914.503174px;
  background-position: -0.5px 0;
  opacity: 0.25;
  pointer-events: none;
  -webkit-mask-image: url("/assets/images/product/data-center-platform/partners-bg-mask-pixso.png");
  mask-image: url("/assets/images/product/data-center-platform/partners-bg-mask-pixso.png");
  -webkit-mask-size: 1944px 439px;
  mask-size: 1944px 439px;
  -webkit-mask-position: 155px 83.573242px;
  mask-position: 155px 83.573242px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.data-center-platform-page .home-clients .clients__header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  height: auto;
  margin: 0 auto 25px;
  padding: 0;
  text-align: center;
}

.data-center-platform-page .home-clients .clients__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  text-align: center;
  letter-spacing: 0;
  z-index: 0;
}

.data-center-platform-page .home-clients .clients__title::after {
  right: -18px;
  bottom: 6px;
  left: auto;
  width: calc(100% - 50px);
  height: 26px;
}

.data-center-platform-page .home-clients .clients__icon {
  position: static;
  display: inline-block;
  width: 46px;
  height: 36px;
  object-fit: contain;
  vertical-align: middle;
}

.data-center-platform-page .home-clients .clients__subtitle {
  position: relative;
  margin: 0;
  color: #666666;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.data-center-platform-page .dp-partners-static {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 113px;
  gap: 24px 28.820313px;
  width: min(var(--content-max-width), calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
}

.data-center-platform-page .dp-partner-card {
  width: 100%;
  height: 113px;
  padding: 0;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%),
    rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.data-center-platform-page .dp-partner-card img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 64px;
  object-fit: contain;
}

@media (min-width: 90rem) {
  .data-center-platform-page .dp-partners-static {
    margin-inline: auto;
  }
}

@media (max-width: 89.999rem) {
  .data-center-platform-page .home-clients {
    height: auto;
    min-height: 0;
  }

  .data-center-platform-page .dp-partners-static {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: calc(100% - 48px);
    max-width: var(--content-max-width);
  }

  .data-center-platform-page .dp-partner-card {
    width: 100%;
    height: auto;
    aspect-ratio: 262 / 113;
  }
}

/* 全链路核心功能：窄桌面按可用宽度连续收缩，避免固定 493/902 双栏互相挤压。 */
@media (min-width: 62rem) and (max-width: 90.5625rem) {
  .data-center-platform-page .dp-feature-showcase {
    gap: clamp(52px, 5vw, 68px);
  }

  .data-center-platform-page .dp-feature-panel {
    grid-template-columns: minmax(320px, 36%) minmax(0, 1fr);
    gap: clamp(18px, 2vw, 28px);
  }

  .data-center-platform-page .dp-feature-panel--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 36%);
  }

  .data-center-platform-page .dp-feature-copy {
    gap: 10px;
  }

  .data-center-platform-page .dp-feature-tab {
    min-height: 0;
    padding: 18px 16px 17px 60px;
  }

  .data-center-platform-page .dp-feature-tab h3 {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 28px;
  }

  .data-center-platform-page .dp-feature-tab p {
    font-size: 14px;
    line-height: 22px;
  }

  .data-center-platform-page .dp-feature-tab__icon {
    left: 16px;
    top: 18px;
    width: 28px;
    height: 28px;
  }

  .data-center-platform-page .dp-feature-visual--stack {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 902 / 569;
  }
}

/* 平板把三项能力横向排在截图上方，压缩纵向长度并消除 1024px 附近的溢出。 */
@media (min-width: 48.0625rem) and (max-width: 61.999rem) {
  .data-center-platform-page .dp-feature-showcase {
    gap: 52px;
  }

  .data-center-platform-page .dp-feature-panel,
  .data-center-platform-page .dp-feature-panel--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    width: 100%;
  }

  .data-center-platform-page .dp-feature-panel--reverse .dp-feature-copy,
  .data-center-platform-page .dp-feature-panel--reverse .dp-feature-visual {
    order: initial;
  }

  .data-center-platform-page .dp-feature-copy {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
  }

  .data-center-platform-page .dp-feature-tab {
    height: 100%;
    min-height: 0;
    padding: 58px 16px 18px;
  }

  .data-center-platform-page .dp-feature-tab h3 {
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 27px;
  }

  .data-center-platform-page .dp-feature-tab p {
    font-size: 14px;
    line-height: 22px;
  }

  .data-center-platform-page .dp-feature-tab p span {
    white-space: normal;
  }

  .data-center-platform-page .dp-feature-tab__icon {
    left: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
  }

  .data-center-platform-page .dp-feature-visual--stack {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 902 / 569;
  }

  .data-center-platform-page .dp-screen-stack,
  .data-center-platform-page .dp-feature-visual--single .dp-screen-stack {
    inset: 0;
  }
}

@media (max-width: 48rem) {
  .data-center-platform-page .home-clients {
    padding: 48px 0;
  }

  .data-center-platform-page .home-clients .clients__header {
    width: calc(100% - 32px);
    height: auto;
    margin: 0 auto 28px;
  }

  .data-center-platform-page .home-clients .clients__title {
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    line-height: 38px;
  }

  .data-center-platform-page .home-clients .clients__title::after {
    right: -14px;
    left: auto;
    bottom: 3px;
    width: calc(100% - 42px);
  }

  .data-center-platform-page .home-clients .clients__icon {
    position: static;
    width: 46px;
    height: 36px;
  }

  .data-center-platform-page .home-clients .clients__subtitle {
    position: static;
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
  }

  .data-center-platform-page .dp-partners-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-partner-card img {
    max-width: 76%;
    max-height: 56%;
  }
}

html.is-desktop .data-center-platform-page .home-scenarios .scenarios__slides {
  --dp-scenarios-edge-fade: clamp(480px, 28vw, 640px);
  width: min(2304px, calc(100vw + 384px));
  max-width: none;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 0;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000000 var(--dp-scenarios-edge-fade),
    #000000 calc(100% - var(--dp-scenarios-edge-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000000 var(--dp-scenarios-edge-fade),
    #000000 calc(100% - var(--dp-scenarios-edge-fade)),
    transparent 100%
  );
}

.data-center-platform-page .home-scenarios.dp-home-module {
  min-height: 671px;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
}

.data-center-platform-page .home-scenarios.dp-home-module .scenarios__header {
  margin-bottom: 37px;
}

.data-center-platform-page .home-scenarios.dp-home-module .scenarios__card {
  position: relative;
  flex: 0 0 367px;
  width: 367px;
  height: 439px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.data-center-platform-page .home-scenarios.dp-home-module .scenarios__card:hover {
  box-shadow: 0 12px 28px rgba(34, 104, 190, 0.12);
}

.data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-title,
.data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-desc {
  position: absolute;
  right: 24px;
  left: 34px;
  z-index: 2;
}

.data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-title {
  top: 292px;
  display: block;
  margin: 0;
  color: #17233d;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-desc {
  top: 330px;
  height: auto;
  margin: 0;
  color: #52627a;
  font-size: 16px;
  line-height: 22px;
  -webkit-line-clamp: 4;
}

.data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  object-fit: fill;
}

@media (max-width: 768px) {
  html:not(.is-desktop) .data-center-platform-page .home-scenarios.dp-home-module {
    min-height: 0;
    padding: 40px 0 48px;
  }

  html:not(.is-desktop) .data-center-platform-page .home-scenarios.dp-home-module .scenarios__header {
    margin-bottom: 24px;
  }

  html:not(.is-desktop) .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    height: calc((100vw - 40px) * 439 / 367);
    min-height: calc((100vw - 40px) * 439 / 367);
    padding: 0;
    border-radius: 22px;
  }

  html:not(.is-desktop) .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-title {
    top: 66.5%;
    right: 22px;
    left: 22px;
    font-size: 18px;
    line-height: 28px;
  }

  html:not(.is-desktop) .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-desc {
    top: 75.2%;
    right: 22px;
    left: 22px;
    display: -webkit-box;
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    -webkit-line-clamp: 4;
  }

  html:not(.is-desktop) .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-img {
    display: block;
    border-radius: 22px;
  }
}

.data-center-platform-page .dp-cases-design.home-stories {
  position: relative;
  min-height: 773px;
  padding: 61px 0 25px;
  background:
    linear-gradient(180deg, rgba(252, 253, 255, 0.96) 0%, rgba(243, 249, 255, 0.96) 100%),
    url("/assets/images/home/stories/stories-bg.png") no-repeat center / cover;
  box-sizing: border-box;
  overflow: hidden;
}

.data-center-platform-page .dp-cases-design.motion-reveal {
  opacity: 1;
  transform: none;
}

.data-center-platform-page .dp-cases-design .stories__carousel {
  display: none;
}

.data-center-platform-page .dp-cases-design__header {
  width: min(900px, calc(100% - 32px));
  height: auto;
  margin: 0 auto 28px;
}

.data-center-platform-page .dp-cases-design .stories__title {
  gap: 12px;
  margin: 0 0 16px;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
}

.data-center-platform-page .dp-cases-design .stories__title::after {
  right: -18px;
  bottom: 6px;
  width: calc(100% - 50px);
  height: 26px;
}

.data-center-platform-page .dp-cases-design__title-icon {
  width: 16px;
  height: 36px;
  flex: 0 0 16px;
}

.data-center-platform-page .dp-cases-design .stories__subtitle {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.data-center-platform-page .dp-cases-design__layout {
  display: grid;
  grid-template-columns: 527px minmax(0, 1fr);
  align-items: start;
  gap: 29px;
  width: var(--content-max-width);
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.data-center-platform-page .dp-case-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 527px;
  height: 569px;
  padding: 34px 40px 45px;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}

.data-center-platform-page .dp-case-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background-image: url("/assets/images/product/data-center-platform/case-panel-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.data-center-platform-page .dp-case-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid #ffffff;
  border-radius: inherit;
  pointer-events: none;
}

.data-center-platform-page .dp-case-feature__copy {
  position: static;
  inset: auto;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
}

.data-center-platform-page .dp-case-feature__copy h3,
.data-center-platform-page .dp-case-side-card__content h3 {
  margin: 0;
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.data-center-platform-page .dp-case-side-card__content h3 {
  font-size: 24px;
  line-height: 34px;
}

.data-center-platform-page .dp-case-feature__copy p,
.data-center-platform-page .dp-case-side-card__content p {
  margin: 16px 0 0;
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.data-center-platform-page .dp-case-feature__screen {
  position: static;
  inset: auto;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  height: 284px;
  margin-top: auto;
  border: 12px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.data-center-platform-page .dp-case-feature__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.data-center-platform-page .dp-case-feature__logo {
  position: static;
  inset: auto;
  z-index: 2;
  align-self: flex-start;
  flex: 0 0 auto;
  width: 241px;
  height: 50px;
  display: flex;
  align-items: center;
  margin: -92px 0 42px 25px;
  padding-left: 19px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(19, 91, 174, 0.12);
  box-sizing: border-box;
}

.data-center-platform-page .dp-case-feature__logo-mark {
  width: 200px;
  /* height: 37px; */
  object-fit: fill;
}

.data-center-platform-page .dp-case-side {
  display: grid;
  gap: 23px;
  width: 100%;
}

.data-center-platform-page .dp-case-side-card {
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: 32px;
  width: 100%;
  height: 273px;
  padding: 36px 31px 34px 38px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.96) 100%),
    rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(29, 91, 157, 0.06);
  box-sizing: border-box;
}

.data-center-platform-page .dp-case-side-card__image {
  width: 246px;
  height: 199px;
  border-radius: 8px;
  overflow: hidden;
}

.data-center-platform-page .dp-case-side-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.data-center-platform-page .dp-case-side-card__content {
  min-width: 0;
  overflow: hidden;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.data-center-platform-page .dp-case-side-card__logo {
  width: 273px;
  height: 43px;
  margin: 0 0 15px;
  object-fit: contain;
  object-position: left center;
}

.data-center-platform-page .dp-case-side-card__logo--hubei {
  width: 273px;
  max-width: 100%;
  height: 43px;
}

.data-center-platform-page .dp-case-side-card__logo--shanxi {
  width: 495px;
  max-width: 100%;
  height: 43px;
}

.data-center-platform-page .dp-case-side-card__content p {
  width: 537px;
  max-width: 100%;
  margin-top: 15px;
  font-size: 14px;
  line-height: 26px;
}

.dp-governance-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  align-items: start;
  gap: 18px;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.dp-governance-card {
  position: relative;
  box-sizing: border-box;
  height: 467px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(51, 51, 51, 0.031);
  cursor: pointer;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.dp-governance-card:focus-visible {
  outline: 2px solid rgba(11, 102, 255, 0.58);
  outline-offset: 3px;
}

.dp-governance-card:hover {
  box-shadow: 0 12px 24px rgba(51, 51, 51, 0.059);
}

.dp-governance-card h3 {
  margin: 0;
  color: #262626;
  font-size: 28px;
  font-weight: 800;
  line-height: 42px;
}

.dp-governance-card p {
  margin: 0;
  color: #5a5d6b;
  font-size: 16px;
  line-height: 26px;
}

.dp-governance-hover ul {
  position: absolute;
  left: 32px;
  top: 167px;
  display: grid;
  gap: 11px;
  width: 407px;
  height: 181px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.dp-governance-hover li {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 16px 0 46px;
  border-radius: 4px;
  color: #5a5d6b;
  background: #ffffff;
  font-size: 16px;
  line-height: 36px;
}

/* .dp-governance-hover li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #0f69e6;
  border-radius: 50%;
  transform: translateY(-50%);
} */

.dp-governance-hover li::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  width: 6px;
  height: 3px;
  border-left: 2px solid #0f69e6;
  border-bottom: 2px solid #0f69e6;
  transform: translateY(-65%) rotate(-45deg);
}

.dp-governance-actions {
  position: absolute;
  left: 92px;
  bottom: 37px;
  display: flex;
  gap: 18px;
}

.dp-governance-actions .dp-btn {
  min-width: 85px;
  width: 85px;
  height: 31px;
  padding: 0;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 800;
  line-height: 31px;
  box-shadow: none;
}

.dp-governance-actions .dp-btn--ghost {
  color: #0f69e6;
  background: #ffffff;
  border: 1px solid #0f69e6;
}

.dp-governance-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 262px;
  background-color: #eef6ff;
  background-image: url("/assets/images/product/data-center-platform/scenario-industry.png");
  background-repeat: no-repeat;
  overflow: hidden;
  transition: opacity 180ms ease, visibility 0s 180ms;
}

.dp-governance-card--assets .dp-governance-media {
  height: 261px;
  background-size: 1516.334px 316px;
  background-position: -18.02px -20px;
}

.dp-governance-card--metrics .dp-governance-media {
  background-size: 1513.066px 316px;
  background-position: -528.63px -20px;
}

.dp-governance-media--blank {
  background-image: none;
  background-color: #f4f7fb;
}

.dp-governance-card--media > h3 {
  position: absolute;
  left: 50px;
  top: 293px;
  transition: opacity 180ms ease, visibility 0s 180ms;
}

.dp-governance-card--metrics > h3 {
  left: 51px;
  top: 295px;
}

.dp-governance-card--media > p {
  position: absolute;
  left: 19px;
  top: 346px;
  width: 407px;
  transition: opacity 180ms ease, visibility 0s 180ms;
}

.dp-governance-card--metrics > p {
  left: 28px;
  top: 347px;
  width: 389px;
}

.dp-governance-arrow {
  position: absolute;
  right: 20px;
  bottom: 36px;
  width: 24px;
  height: 19px;
  color: #262626;
  text-decoration: none;
  transition: opacity 180ms ease, visibility 0s 180ms;
}

.dp-governance-arrow::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.dp-governance-arrow::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.dp-governance-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(178deg, #ffffff 0%, #c4deff 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s 220ms;
}

.dp-governance-hover h3 {
  position: absolute;
  left: 34px;
  top: 44px;
  width: 398px;
}

.dp-governance-hover p {
  position: absolute;
  left: 33px;
  top: 100px;
  width: 398px;
  line-height: 25px;
}

.dp-governance-card--media:hover > .dp-governance-media,
.dp-governance-card--media:hover > h3,
.dp-governance-card--media:hover > p,
.dp-governance-card--media:hover > .dp-governance-arrow {
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s 0s;
}

.dp-governance-card--media:hover .dp-governance-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease, visibility 0s 0s;
}

.dp-governance-card {
  height: 467px;
  cursor: default;
}

.dp-governance-card--detail {
  display: flex;
  flex-direction: column;
  padding: 34px 32px 46px;
  background: linear-gradient(180deg, #d5e8ff 0%, #f7fbff 100%);
}

.dp-governance-card--detail h3 {
  position: static;
  width: auto;
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.dp-governance-card--detail > p {
  position: static;
  width: auto;
  margin: 15px 0 0;
  color: #5e6677;
  font-size: 16px;
  line-height: 26px;
}

.dp-governance-capabilities {
  margin-top: 14px;
}

.dp-governance-capabilities > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.dp-governance-capabilities ul,
.dp-governance-card .dp-governance-hover ul {
  position: static;
  display: grid;
  gap: 11px;
  width: auto;
  height: auto;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}

.dp-governance-capabilities li,
.dp-governance-card .dp-governance-hover li {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 16px 0 46px;
  border-radius: 4px;
  color: #4f596a;
  background: #ffffff;
  font-size: 16px;
  line-height: 36px;
}

.dp-governance-capabilities li::before,
.dp-governance-card .dp-governance-hover li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("/assets/images/product/data-center-platform/capability-check.svg") center / contain no-repeat;
  transform: translateY(calc(-50% + 1px));
}

.dp-governance-capabilities li::after,
.dp-governance-card .dp-governance-hover li::after {
  content: none;
}

.dp-governance-card--detail .dp-governance-actions {
  position: static;
  display: flex;
  gap: 18px;
  margin: auto auto 0;
}

.dp-governance-card--detail .dp-governance-actions .dp-btn {
  flex: 0 0 136px;
  width: 136px;
  min-width: 136px;
  height: 36px;
  box-sizing: border-box;
  padding: 0;
  border-radius: 18px;
  font-size: 14px;
  line-height: 36px;
}

.dp-governance-layout > .dp-governance-card:first-child .dp-governance-card--detail h3 {
  /* font-size: 28px;
  line-height: 36px; */
}

.dp-governance-layout > .dp-governance-card:first-child .dp-governance-card--detail {
  padding-top: 55px;
  padding-bottom: 40px;
}

.dp-governance-card > img.dp-governance-media {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  width: 100%;
  height: 262px;
  object-fit: cover;
  background: #eef6ff;
  transition: none;
}

.dp-governance-summary {
  position: relative;
  min-height: 205px;
  padding: 22px 28px 42px;
  box-sizing: border-box;
}

.dp-governance-summary h3 {
  font-size: 24px;
  line-height: 32px;
}

.dp-governance-summary p {
  margin-top: 10px;
  line-height: 24px;
}

.dp-governance-summary .dp-governance-arrow {
  right: 28px;
  bottom: 20px;
}

.dp-governance-card--media .dp-governance-hover {
  display: flex;
  flex-direction: column;
  padding: 55px 32px 40px;
  box-sizing: border-box;
  background: linear-gradient(165deg, #ffffff 0%, #d7e9ff 100%);
}

.dp-governance-card--media .dp-governance-hover h3,
.dp-governance-card--media .dp-governance-hover p {
  position: static;
  width: auto;
}

.dp-governance-card--media .dp-governance-hover h3 {
  font-size: 24px;
  line-height: 32px;
}

.dp-governance-card--media .dp-governance-hover p {
  margin-top: 20px;
  line-height: 24px;
}

.dp-governance-hover__label {
  display: block;
  margin: 14px 0 8px;
  font-size: 16px;
}

.dp-governance-card--media:hover .dp-governance-hover,
.dp-governance-card--media:focus-within .dp-governance-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease, visibility 0s 0s;
}

.dp-scenario-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 367px;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: thin;
  width: min(2304px, calc(100vw + 384px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.dp-scenario-card {
  border: 1px solid rgba(13, 92, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #f7faff 0%, #dbe7fb 100%);
  overflow: hidden;
  min-height: 439px;
  box-shadow: 0 12px 24px rgba(40, 105, 185, 0.06);
}

.dp-scenario-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.dp-scenario-card h3,
.dp-scenario-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.dp-scenario-card h3 {
  margin-top: 26px;
  color: rgba(0, 0, 0, 0.86);
  font-size: 28px;
}

.dp-scenario-card p {
  margin-bottom: 28px;
  color: #393e4f;
  font-size: 16px;
  line-height: 1.75;
}

.dp-case-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.5fr) minmax(0, 0.5fr);
  gap: 24px;
  max-width: var(--content-max-width);
  margin: 0 auto;
  align-items: start;
}

.dp-case-stack {
  display: grid;
  gap: 24px;
  grid-auto-rows: minmax(0, 1fr);
}

.dp-case-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(13, 92, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(40, 105, 185, 0.08);
}

.dp-case-card--feature {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 464px;
  background: linear-gradient(180deg, #f8fbff 0%, #e8f3ff 100%);
}

.dp-case-card--feature div {
  padding: 2px 4px 0;
}

.dp-case-card--feature ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.dp-case-card--feature li {
  position: relative;
  padding-left: 18px;
  color: #4b5b75;
  font-size: 15px;
  line-height: 1.6;
}

.dp-case-card--feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b66ff;
}

.dp-case-card--feature a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #0f69e6;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.dp-case-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  border-radius: 6px;
}

.dp-case-card--feature img {
  height: 190px;
  margin-top: 22px;
}

.dp-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 262px));
  justify-content: center;
  gap: 24px 28px;
  max-width: var(--content-max-width);
  margin: 42px auto 0;
}

.dp-logo-grid .dp-heading {
  grid-column: 1 / -1;
}

.dp-heading--compact {
  margin: 16px auto 18px;
}

.dp-logo-grid img {
  width: 100%;
  height: 113px;
  object-fit: contain;
  padding: 26px 32px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.dp-resource-grid,
.dp-product-grid,
.dp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dp-resource-grid {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.dp-resource-card,
.dp-product-card,
.dp-news-card {
  overflow: hidden;
  border: 1px solid rgba(13, 92, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(40, 105, 185, 0.08);
}

.dp-product-card img,
.dp-news-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.dp-product-card div,
.dp-news-card div {
  padding: 18px;
}

.dp-resource-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 20px;
  min-height: 360px;
  padding: 32px 34px;
}

.dp-resource-card > div {
  padding: 0;
}

.dp-resource-card--violet {
  background: linear-gradient(135deg, #f2eaff 0%, #ffffff 74%);
}

.dp-resource-card--cyan {
  background: linear-gradient(135deg, #d9f6ff 0%, #ffffff 74%);
}

.dp-resource-card--blue {
  background: linear-gradient(135deg, #e0efff 0%, #ffffff 74%);
}

.dp-resource-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0f69e6;
  background: rgba(15, 105, 230, 0.12);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.dp-resource-card h3 {
  font-size: 28px;
}

.dp-resource-card p {
  font-size: 17px;
  line-height: 1.7;
}

.dp-resource-card--violet .dp-resource-icon {
  color: #8d5cf7;
  background: rgba(141, 92, 247, 0.14);
}

.dp-resource-card--cyan .dp-resource-icon {
  color: #00a4c8;
  background: rgba(0, 164, 200, 0.14);
}

.dp-resource-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.dp-resource-card li {
  position: relative;
  padding-left: 24px;
  color: #3d4658;
  font-size: 17px;
  line-height: 1.55;
}

.dp-resource-card li::before {
  content: "->";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f69e6;
  font-weight: 800;
}

.dp-resource-card a,
.dp-product-card a,
.dp-news-card a {
  display: inline-flex;
  margin-top: 14px;
  color: #0f69e6;
  font-size: 14px;
  /* font-weight: 800; */
  text-decoration: none;
}

.dp-resource-card a {
  width: 100%;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 105, 230, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.dp-section--resources .dp-resource-grid {
  position: relative;
  display: block;
  width: 1465px;
  height: 448px;
  max-width: none;
  margin: 0 0 0 calc(50vw - 712px);
}

.dp-section--resources .dp-resource-card {
  position: absolute;
  top: 0;
  display: block;
  width: 500px;
  height: 448px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: none;
  overflow: visible;
}

.dp-section--resources .dp-resource-card--violet {
  left: 0;
  background-image: url("/assets/images/product/data-center-platform/resource-card-whitepaper.svg");
}

.dp-section--resources .dp-resource-card--cyan {
  left: 483px;
  background-image: url("/assets/images/product/data-center-platform/resource-card-video.svg");
}

.dp-section--resources .dp-resource-card--blue {
  left: 965px;
  background-image: url("/assets/images/product/data-center-platform/resource-card-docs.svg");
}

.dp-section--resources .dp-resource-card::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 104px;
  width: 384px;
  height: 2px;
  background: #eae4f1;
}

.dp-section--resources .dp-resource-card--cyan::after {
  width: 388px;
}

.dp-section--resources .dp-resource-card--blue::after {
  left: 35px;
  width: 392px;
  background: #ffffff;
}

.dp-section--resources .dp-resource-icon {
  position: absolute;
  left: 39px;
  top: 28px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
}

.dp-section--resources .dp-resource-icon::before {
  content: "";
  display: block;
  position: static;
  width: 39.5605px;
  height: 41.2689px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.dp-section--resources .dp-resource-card--violet .dp-resource-icon {
  background: #eedffc;
}

.dp-section--resources .dp-resource-card--violet .dp-resource-icon::before {
  background-image: url("/assets/images/product/data-center-platform/resource-icon-whitepaper.svg");
}

.dp-section--resources .dp-resource-card--cyan .dp-resource-icon {
  background: #b5e1ea;
}

.dp-section--resources .dp-resource-card--cyan .dp-resource-icon::before {
  width: 36.668px;
  height: 30.8729px;
  background-image: url("/assets/images/product/data-center-platform/resource-icon-video.svg");
}

.dp-section--resources .dp-resource-card--blue .dp-resource-icon {
  left: 34.7734px;
  /* top: 22px; */
  width: 67.5594px;
  background: #c3d9fb;
}

.dp-section--resources .dp-resource-card--blue .dp-resource-icon::before {
  width: 34.7734px;
  height: 35px;
  background-image: url("/assets/images/product/data-center-platform/resource-icon-docs.svg");
}

.dp-section--resources .dp-resource-card h3 {
  position: absolute;
  left: 141px;
  top: 41px;
  margin: 0;
  color: #573ca1;
  font-size: 32px;
  font-weight: 800;
  line-height: 42px;
}

.dp-section--resources .dp-resource-card--cyan h3 {
  color: #1469a5;
}

.dp-section--resources .dp-resource-card--blue h3 {
  left: 132px;
  color: #0b42b8;
}

.dp-section--resources .dp-resource-card p {
  position: absolute;
  left: 44px;
  top: 122px;
  width: 390px;
  margin: 0;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.dp-section--resources .dp-resource-card--blue p {
  left: 40px;
  width: 387px;
}

.dp-section--resources .dp-resource-card ul {
  position: absolute;
  left: 44px;
  top: 221px;
  display: grid;
  gap: 10px;
  width: 390px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dp-section--resources .dp-resource-card--blue ul {
  left: 40px;
}

.dp-section--resources .dp-resource-card li {
  position: relative;
  height: 30px;
  padding-left: 27px;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.dp-section--resources .dp-resource-card li::before {
  content: "\2192";
  left: 0;
  top: 0;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.dp-section--resources .dp-resource-card a {
  position: absolute;
  left: 44px;
  top: 346px;
  width: 390px;
  height: 52px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  color: #573ca1;
  font-size: 22px;
  /* font-weight: 800; */
  line-height: 52px;
  text-align: center;
}

.dp-section--resources .dp-resource-card--violet a {
  border-color: #573ca1;
}

.dp-section--resources .dp-resource-card--cyan a {
  color: #1469a5;
  border-color: #1469a5;
}

.dp-section--resources .dp-resource-card--blue a {
  left: 40px;
  width: 387px;
  color: #0b42b8;
  border-color: #2e68c5;
}

.dp-faq-list {
  display: grid;
  gap: 10px;
  width: min(var(--content-max-width), calc(100% - 48px));
  margin: 0 auto;
}

.dp-faq-item {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.045);
  overflow: hidden;
}

.dp-faq-item.is-hidden {
  display: none;
}

.dp-faq-item summary {
  position: relative;
  min-height: 73px;
  display: block;
  padding: 20.8px 86px 0 74px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  cursor: pointer;
  box-sizing: border-box;
}

.dp-faq-item summary::-webkit-details-marker {
  display: none;
}

.dp-faq-item summary::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 22px;
  width: 30px;
  height: 30px;
  border-radius: 18px;
  background-color: #d9e6fb;
  background-image: url("/assets/images/product/data-center-platform/faq-icon-q.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16.7168px 17.491px;
}

.dp-faq-item summary::after {
  content: "";
  position: absolute;
  right: 31px;
  top: 34px;
  width: 18px;
  height: 12px;
  background-image: url("/assets/images/product/data-center-platform/faq-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 12px;
}

.dp-faq-item[open] {
  min-height: 166px;
}

.dp-faq-item[open] summary {
  min-height: 65px;
}

.dp-faq-item[open] summary::before {
  top: 20px;
}

.dp-faq-item[open] summary::after {
  right: 40px;
  top: 26px;
  width: 20.0586px;
  height: 11.3389px;
  background-image: url("/assets/images/product/data-center-platform/faq-arrow-up.svg");
  background-size: 20.0586px 11.3389px;
}

.dp-faq-item p {
  position: relative;
  height: 80px;
  margin: 0 30px 20px 69px;
  padding: 8px 16px 8px 52px;
  border-radius: 8px;
  background: #f1f6fd;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.85);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.dp-faq-item p::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
}

.dp-faq-item p::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 23px;
  width: 14.5469px;
  height: 14.833px;
  background-image: url("/assets/images/product/data-center-platform/faq-icon-a.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14.5469px 14.833px;
  transform: translate(-50%, -50%);
}

.dp-faq-answer {
  position: relative;
  margin: 0 30px 20px 69px;
  padding: 18px 24px 20px 68px;
  border-radius: 8px;
  background: #f1f6fd;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.dp-faq-answer::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff url("/assets/images/product/data-center-platform/faq-icon-a.svg") no-repeat center / 16px 16px;
}

.dp-faq-answer p,
.dp-faq-answer h4,
.dp-faq-answer ul {
  margin: 0;
}

.dp-faq-item .dp-faq-answer p {
  position: static;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font: inherit;
  line-height: inherit;
  overflow: visible;
  margin-bottom: 10px;
}

.dp-faq-item .dp-faq-answer p::before,
.dp-faq-item .dp-faq-answer p::after {
  content: none;
}

.dp-faq-answer p + p,
.dp-faq-answer p + h4,
.dp-faq-answer ul + h4,
.dp-faq-answer ul + p {
  margin-top: 14px;
}

.dp-faq-answer h4 {
  color: #17233d;
  font-size: 17px;
  line-height: 1.7;
}

.dp-faq-answer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.dp-faq-answer h4 + ul {
  margin-top: 8px;
}

.dp-faq-answer li {
  position: relative;
  padding-left: 18px;
}

.dp-faq-answer li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f69e6;
  font-weight: 800;
}

.dp-section--recommend .dp-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  max-width: var(--content-max-width);
  margin: 0 auto;
  gap: 18px;
}

.dp-product-card {
  display: flex;
  flex-direction: column;
  width: 464px;
  height: 488px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 89, 157, 0.06);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(35, 76, 125, 0.1);
}

.dp-product-card img,
.dp-product-card__media {
  display: block;
  width: 442px;
  height: 257px;
  min-height: 257px;
  margin: 10px auto 0;
  border-radius: 7px 7px 0 0;
  background: #f3f8ff;
  object-fit: cover;
  object-position: center top;
}

.dp-product-card__media--blank {
  background: transparent;
}

.dp-product-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
  padding: 20px 35px 20px 47px;
  box-sizing: border-box;
}

.dp-product-card h3 {
  color: #333333;
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
  white-space: nowrap;
}

.dp-product-card p {
  width: auto;
  margin-top: 12px;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.dp-product-card a {
  position: relative;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  height: 32px;
  min-width: 118px;
  margin-top: auto;
  padding: 0 38px 0 20px;
  border: 1px solid #0f69e6;
  border-radius: 8px;
  color: #0f69e6;
  background: #ffffff;
  font-size: 14px;
  line-height: 32px;
  box-sizing: border-box;
}

.dp-product-card a::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 15.4375px;
  height: 12.1432px;
  background-color: #0f69e6;
  -webkit-mask: url("/assets/images/product/data-center-platform/product-link-arrow.svg") center / 100% 100% no-repeat;
  mask: url("/assets/images/product/data-center-platform/product-link-arrow.svg") center / 100% 100% no-repeat;
  transform: translateY(-50%);
}


.dp-news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--content-max-width);
  margin: 0 auto;
  gap: 18px 24px;
}

.dp-news-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 138px;
  padding: 16px 20px;
  border: 3px solid #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, #ffffff 100%);
}

.dp-news-card img {
  width: 128px;
  height: 106px;
  min-height: 0;
  border-radius: 4px;
}

.dp-news-card div {
  position: relative;
  min-height: 106px;
  padding: 0 104px 0 0;
}

.dp-news-card time {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  margin: 0;
  color: #6f7788;
  font-size: 14px;
}

.dp-news-card h3 {
  color: rgba(0, 0, 0, 0.86);
  font-size: 16px;
}

.dp-news-card p {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.dp-news-card a {
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 105px;
  padding: 0 14px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b66ff 0%, #00bbff 100%);
  font-size: 13px;
}

@media (max-width: 75rem) {
  .dp-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 92rem) {
  .data-center-platform-page .dp-cases-design__layout {
    grid-template-columns: minmax(0, 0.37fr) minmax(0, 0.63fr);
    gap: 24px;
    width: calc(100% - 48px);
  }

  .data-center-platform-page .dp-case-feature,
  .data-center-platform-page .dp-case-side,
  .data-center-platform-page .dp-case-side-card {
    width: 100%;
  }

  .data-center-platform-page .dp-case-side-card__content p {
    width: auto;
  }
}

@media (max-width: 75rem) {
  .data-center-platform-page .dp-cases-design__layout {
    grid-template-columns: 1fr;
    width: min(865px, calc(100% - 48px));
  }

  .data-center-platform-page .dp-case-feature {
    justify-self: center;
    width: min(527px, 100%);
  }

  .dp-case-layout,
  .dp-governance-layout {
    grid-template-columns: 1fr;
  }

  .dp-governance-layout {
    max-width: 463px;
  }
}

@media (max-width: 64rem) {
  html:not(.is-desktop) .data-center-platform-page .dp-cases-design.home-stories {
    min-height: 0;
    padding: 48px 0;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-cases-design__header {
    height: auto;
    margin-bottom: 28px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-cases-design .stories__title {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 28px;
    line-height: 38px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-cases-design .stories__title::after {
    right: -14px;
    bottom: 4px;
    width: calc(100% - 42px);
  }

  html:not(.is-desktop) .data-center-platform-page .dp-cases-design .stories__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-case-side-card {
    height: auto;
    min-height: 273px;
  }

  html:not(.is-desktop) .dp-hero,
  html:not(.is-desktop) .dp-hero__inner {
    min-height: 0;
  }

  html:not(.is-desktop) .dp-hero {
    background-position: 58% center;
  }

  html:not(.is-desktop) .dp-hero__content {
    width: min(620px, 100%);
    padding: 56px 0 76px;
  }

  html:not(.is-desktop) .dp-hero h1 {
    font-size: 34px;
  }

  html:not(.is-desktop) .dp-feature-panel,
  html:not(.is-desktop) .dp-feature-panel--reverse {
    grid-template-columns: 1fr;
  }

  html:not(.is-desktop) .dp-feature-panel--reverse .dp-feature-copy,
  html:not(.is-desktop) .dp-feature-panel--reverse .dp-feature-visual {
    order: initial;
  }

  html:not(.is-desktop) .dp-resource-grid,
  html:not(.is-desktop) .dp-product-grid,
  html:not(.is-desktop) .dp-news-grid {
    grid-template-columns: 1fr;
  }

  html:not(.is-desktop) .dp-news-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  html:not(.is-desktop) .dp-news-card img {
    width: 100%;
    height: 190px;
  }

  html:not(.is-desktop) .dp-news-card div {
    min-height: 0;
    padding: 18px;
  }

  html:not(.is-desktop) .dp-news-card time {
    position: static;
    margin: 0 0 8px;
  }

  html:not(.is-desktop) .dp-product-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 442px;
    height: auto;
    min-height: 0;
    margin: 0 auto;
  }

  html:not(.is-desktop) .dp-product-card img,
  html:not(.is-desktop) .dp-product-card__media {
    height: 190px;
    min-height: 190px;
  }

  html:not(.is-desktop) .dp-product-card div {
    padding: 24px;
  }

  html:not(.is-desktop) .dp-product-card h3,
  html:not(.is-desktop) .dp-governance-card h3,
  html:not(.is-desktop) .dp-resource-card h3 {
    font-size: 24px;
  }

  html:not(.is-desktop) .dp-resource-card {
    min-height: 0;
  }
}

@media (max-width: 48rem) {
  html:not(.is-desktop) .data-center-platform-page .dp-cases-design__layout {
    width: calc(100% - 32px);
  }

  html:not(.is-desktop) .data-center-platform-page .dp-case-side-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-case-side-card__image {
    width: 100%;
    height: 190px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-case-side-card__content {
    padding-top: 0;
  }

  html:not(.is-desktop) .dp-section {
    padding: 48px 0;
  }

  html:not(.is-desktop) .dp-heading {
    margin-bottom: 26px;
  }

  html:not(.is-desktop) .dp-heading h2 {
    font-size: 24px;
    flex-wrap: wrap;
  }

  html:not(.is-desktop) .dp-heading h2::before,
  html:not(.is-desktop) .data-center-platform-page .home-scenarios .scenarios__icon,
  html:not(.is-desktop) .data-center-platform-page .dp-cases-design .stories__icon,
  html:not(.is-desktop) .data-center-platform-page .home-clients .clients__icon,
  html:not(.is-desktop) .data-center-platform-page .home-news .news__icon {
    width: 46px;
    height: 36px;
    flex-basis: auto;
  }

  html:not(.is-desktop) .dp-heading p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 8px;
  }

  html:not(.is-desktop) .dp-heading h2::after {
    width: calc(100% - 42px);
    right: -14px;
  }

  html:not(.is-desktop) .dp-highlight-grid,
  html:not(.is-desktop) .dp-case-layout,
  html:not(.is-desktop) .dp-logo-grid {
    grid-template-columns: 1fr;
  }

  html:not(.is-desktop) .dp-case-card {
    grid-template-columns: 1fr;
  }

  html:not(.is-desktop) .dp-highlight-card {
    min-height: 0;
  }

  html:not(.is-desktop) .dp-highlight-card img {
    height: 210px;
  }

  html:not(.is-desktop) .dp-highlight-card div {
    min-height: 0;
  }

  html:not(.is-desktop) .dp-governance-card {
    padding: 0;
  }

  html:not(.is-desktop) .dp-governance-hover {
    display: none;
  }

  html:not(.is-desktop) .dp-governance-card--media:hover > .dp-governance-media,
  html:not(.is-desktop) .dp-governance-card--media:hover > h3,
  html:not(.is-desktop) .dp-governance-card--media:hover > p,
  html:not(.is-desktop) .dp-governance-card--media:hover > .dp-governance-arrow {
    opacity: 1;
    visibility: visible;
  }

  html:not(.is-desktop) .dp-governance-card {
    height: auto;
  }

  html:not(.is-desktop) .dp-governance-card--detail {
    padding: 26px 22px;
  }

  html:not(.is-desktop) .dp-governance-card--detail .dp-governance-actions {
    margin-top: 24px;
  }

  html:not(.is-desktop) .dp-governance-card > img.dp-governance-media {
    height: auto;
    aspect-ratio: 913 / 512;
  }

  html:not(.is-desktop) .dp-governance-card--media .dp-governance-summary {
    display: none;
  }

  html:not(.is-desktop) .dp-governance-card--media .dp-governance-hover {
    position: static;
    display: flex;
    min-height: 0;
    padding: 26px 22px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  html:not(.is-desktop) .dp-scenario-strip {
    grid-auto-columns: 300px;
    width: min(100vw, calc(100vw - 24px));
    margin-left: 0;
    transform: none;
  }

  html:not(.is-desktop) .dp-scenario-card {
    min-height: 390px;
  }

  html:not(.is-desktop) .dp-scenario-card img {
    height: 190px;
  }

  html:not(.is-desktop) .dp-scenario-card h3 {
    font-size: 24px;
  }

  html:not(.is-desktop) .dp-resource-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  html:not(.is-desktop) .dp-resource-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  html:not(.is-desktop) .dp-resource-card p,
  html:not(.is-desktop) .dp-resource-card li,
  html:not(.is-desktop) .dp-product-card p {
    font-size: 14px;
  }

  html:not(.is-desktop) .dp-feature-panel {
    padding: 0;
  }

  html:not(.is-desktop) .dp-feature-tab {
    min-height: 0;
    padding: 20px 18px 18px 60px;
  }

  html:not(.is-desktop) .dp-feature-tab h3 {
    font-size: 21px;
    line-height: 28px;
  }

  html:not(.is-desktop) .dp-feature-tab__icon {
    left: 18px;
    top: 20px;
    width: 28px;
    height: 28px;
  }

  html:not(.is-desktop) .dp-feature-visual--stack,
  html:not(.is-desktop) .dp-feature-visual--stack-b,
  html:not(.is-desktop) .dp-feature-visual--stack-c {
    height: auto;
    min-height: 340px;
  }

  html:not(.is-desktop) .dp-screen-stack {
    inset: 58px 18px 22px;
  }

  html:not(.is-desktop) .dp-feature-visual--single .dp-screen-stack {
    inset: 0;
  }

  html:not(.is-desktop) .dp-hero__actions {
    align-items: stretch;
  }
}

@media (max-width: 30rem) {
  html:not(.is-desktop) .data-center-platform-page .dp-cases-design .stories__title {
    font-size: 24px;
    line-height: 34px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-cases-design .stories__title::after {
    width: calc(100% - 42px);
  }

  html:not(.is-desktop) .data-center-platform-page .dp-case-feature__copy h3,
  html:not(.is-desktop) .data-center-platform-page .dp-case-side-card__content h3 {
    font-size: 22px;
    line-height: 31px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-case-feature__copy p,
  html:not(.is-desktop) .data-center-platform-page .dp-case-side-card__content p {
    font-size: 14px;
    line-height: 23px;
  }

  html:not(.is-desktop) .dp-architecture {
    padding: 8px;
  }
}

@media (max-width: 64rem) {
  .data-center-platform-page .dp-cases-design.home-stories {
    min-height: 0;
    padding: 48px 0;
  }

  .data-center-platform-page .dp-cases-design__header {
    height: auto;
    margin-bottom: 28px;
  }

  .data-center-platform-page .dp-cases-design .stories__title {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 28px;
    line-height: 38px;
    max-width: calc(100vw - 48px);
  }

  .data-center-platform-page .dp-cases-design .stories__title::after {
    right: -14px;
    bottom: 4px;
    width: calc(100% - 42px);
  }

  .data-center-platform-page .dp-cases-design .stories__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .data-center-platform-page .dp-case-side-card {
    height: auto;
    min-height: 273px;
  }
}

@media (max-width: 48rem) {
  .data-center-platform-page .dp-cases-design__layout {
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-case-side-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .data-center-platform-page .dp-case-side-card__image {
    width: 100%;
    height: 190px;
  }

  .data-center-platform-page .dp-case-side-card__content {
    padding-top: 0;
  }
}

@media (max-width: 30rem) {
  .data-center-platform-page .dp-cases-design .stories__title {
    gap: 12px;
    font-size: 20px;
    line-height: 30px;
  }

  .data-center-platform-page .dp-cases-design .stories__title::after {
    width: calc(100% - 42px);
  }

  .data-center-platform-page .dp-case-feature__copy h3,
  .data-center-platform-page .dp-case-side-card__content h3 {
    font-size: 22px;
    line-height: 31px;
  }

  .data-center-platform-page .dp-case-feature__copy p,
  .data-center-platform-page .dp-case-side-card__content p {
    font-size: 14px;
    line-height: 23px;
  }
}

@media (max-width: 64rem) {
  .dp-section--resources {
    min-height: 0;
    padding: 48px 0;
  }

  html.is-desktop .data-center-platform-page .dp-section--resources .site-container.site-container--wide,
  .data-center-platform-page .dp-section--resources .site-container--wide {
    width: 100%;
  }

  .dp-section--resources .dp-resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 32px);
    height: auto;
    margin: 0 auto;
  }

  .dp-section--resources .dp-resource-card {
    position: relative;
    left: auto;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 20px;
    width: 100%;
    height: auto;
    min-height: 360px;
    padding: 32px 24px 28px;
    border: 1px solid rgba(13, 92, 255, 0.12);
    border-radius: 8px;
    background-image: none;
    box-shadow: 0 12px 30px rgba(40, 105, 185, 0.08);
    box-sizing: border-box;
  }

  .dp-section--resources .dp-resource-card--violet {
    background: linear-gradient(135deg, #f2eaff 0%, #ffffff 74%);
  }

  .dp-section--resources .dp-resource-card--cyan {
    background: linear-gradient(135deg, #d9f6ff 0%, #ffffff 74%);
  }

  .dp-section--resources .dp-resource-card--blue {
    background: linear-gradient(135deg, #e0efff 0%, #ffffff 74%);
  }

  .dp-section--resources .dp-resource-card::after {
    content: none;
  }

  .dp-section--resources .dp-resource-icon {
    position: static;
  }

  .dp-section--resources .dp-resource-card--blue .dp-resource-icon {
    left: auto;
    width: 66px;
  }

  .dp-section--resources .dp-resource-card h3,
  .dp-section--resources .dp-resource-card p,
  .dp-section--resources .dp-resource-card ul,
  .dp-section--resources .dp-resource-card a {
    position: static;
    width: auto;
  }

  .dp-section--resources .dp-resource-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.35;
  }

  .dp-section--resources .dp-resource-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
  }

  .dp-section--resources .dp-resource-card ul {
    margin-top: 16px;
  }

  .dp-section--resources .dp-resource-card li {
    height: auto;
    font-size: 16px;
    line-height: 1.6;
  }

  .dp-section--resources .dp-resource-card a {
    margin-top: 16px;
    font-size: 16px;
  }

  .dp-faq-list {
    gap: 10px;
    width: calc(100% - 32px);
  }

  .dp-faq-item,
  .dp-faq-item[open] {
    min-height: 0;
  }

  .dp-faq-item summary,
  .dp-faq-item[open] summary {
    min-height: 58px;
    padding: 15px 50px 14px 58px;
    font-size: 16px;
    line-height: 1.45;
  }

  .dp-faq-item summary::before,
  .dp-faq-item[open] summary::before {
    left: 16px;
    top: 14px;
    width: 30px;
    height: 30px;
  }

  .dp-faq-item summary::after {
    right: 18px;
    top: 24px;
    width: 16px;
    height: 10px;
    background-size: 16px 10px;
  }

  .dp-faq-item[open] summary::after {
    right: 18px;
    top: 24px;
    width: 16px;
    height: 10px;
    background-size: 16px 10px;
  }

  .dp-faq-item p {
    height: auto;
    min-height: 72px;
    margin: 0 16px 16px 58px;
    padding: 10px 14px 12px 44px;
    font-size: 14px;
    line-height: 1.7;
  }

  .dp-faq-item p::before {
    left: 7px;
    top: 10px;
  }

  .dp-faq-item p::after {
    left: 22px;
    top: 25px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-faq-answer {
    margin: 0 16px 16px 58px;
    padding: 14px 14px 16px 44px;
    font-size: 14px;
    line-height: 1.7;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-faq-answer::before {
    left: 8px;
    top: 14px;
    width: 28px;
    height: 28px;
    background-size: 14px 14px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-faq-answer h4 {
    font-size: 15px;
  }
}

@media (max-width: 48rem) {
  html.is-desktop .data-center-platform-page .site-container.site-container--wide,
  .data-center-platform-page .site-container--wide {
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-section {
    padding: 48px 0;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-hero,
  html:not(.is-desktop) .data-center-platform-page .dp-hero__inner {
    min-height: 0;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-hero::before {
    background-position: 62% center;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-hero__content {
    width: 100%;
    padding: 32px 0 64px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-hero h1 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.4;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-hero__desc {
    max-width: none;
    font-size: 15px;
    line-height: 1.5;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
  }

  html:not(.is-desktop) .data-center-platform-page .dp-btn {
    width: min(200px, 62vw);
    min-width: 0;
    height: 42px;
    padding: 0 22px;
    font-size: 15px;
  }

  .data-center-platform-page .dp-heading {
    margin-bottom: 28px;
  }

  .data-center-platform-page .dp-heading h2 {
    gap: 9px;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 36px;
  }

  .data-center-platform-page .dp-heading h2::before,
  .data-center-platform-page .home-scenarios .scenarios__icon,
  .data-center-platform-page .dp-cases-design .stories__icon,
  .data-center-platform-page .home-clients .clients__icon,
  .data-center-platform-page .home-news .news__icon {
    width: 46px;
    height: 30px;
    flex-basis: auto;
  }

  .data-center-platform-page .dp-heading h2::after {
    right: -12px;
    bottom: 4px;
    width: calc(100% - 40px);
    height: 22px;
  }

  .data-center-platform-page .dp-heading p {
    padding: 0 4px;
    font-size: 15px;
    line-height: 1.65;
  }

  .data-center-platform-page .dp-architecture {
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .data-center-platform-page .dp-architecture img {
    width: 100%;
    max-width: none;
  }

  .data-center-platform-page .dp-highlight-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .data-center-platform-page .dp-highlight-card {
    width: min(100%, 360px);
    height: 427px;
    min-height: 427px;
  }

  .data-center-platform-page .dp-feature-showcase {
    gap: 48px;
  }

  .data-center-platform-page .dp-feature-panel,
  .data-center-platform-page .dp-feature-panel--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    width: 100%;
  }

  .data-center-platform-page .dp-feature-panel--reverse .dp-feature-copy,
  .data-center-platform-page .dp-feature-panel--reverse .dp-feature-visual {
    order: initial;
  }

  .data-center-platform-page .dp-feature-copy {
    gap: 10px;
  }

  .data-center-platform-page .dp-feature-tab {
    min-height: 0;
    padding: 18px 16px 17px 58px;
  }

  .data-center-platform-page .dp-feature-tab h3 {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 28px;
  }

  .data-center-platform-page .dp-feature-tab p {
    font-size: 14px;
    line-height: 22px;
  }

  .data-center-platform-page .dp-feature-tab p span {
    white-space: normal;
  }

  .data-center-platform-page .dp-feature-tab__icon {
    left: 16px;
    top: 18px;
    width: 28px;
    height: 28px;
  }

  .data-center-platform-page .dp-feature-visual--stack,
  .data-center-platform-page .dp-feature-visual--stack-b,
  .data-center-platform-page .dp-feature-visual--stack-c {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 902 / 569;
  }

  .data-center-platform-page .dp-screen-stack,
  .data-center-platform-page .dp-feature-visual--single .dp-screen-stack {
    inset: 0;
  }

  .data-center-platform-page .dp-feature-actions,
  .data-center-platform-page .dp-feature-actions--left,
  .data-center-platform-page .dp-feature-panel--first .dp-feature-actions {
    top: 12px;
    right: 12px;
    left: auto;
    gap: 8px;
  }

  .data-center-platform-page .dp-feature-actions a {
    width: auto;
    min-width: 76px;
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 30px;
  }

  .data-center-platform-page .dp-governance-layout {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 463px;
  }

  .data-center-platform-page .dp-governance-card {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .data-center-platform-page .dp-governance-card--detail {
    padding: 26px 22px;
  }

  .data-center-platform-page .dp-governance-card > img.dp-governance-media {
    height: auto;
    aspect-ratio: 913 / 512;
  }

  .data-center-platform-page .dp-governance-card--media .dp-governance-summary {
    display: none;
  }

  .data-center-platform-page .dp-governance-card--media .dp-governance-hover {
    position: static;
    display: flex;
    min-height: 0;
    padding: 26px 22px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .data-center-platform-page .home-scenarios.dp-home-module {
    min-height: 0;
    padding: 44px 0 52px;
  }

  .data-center-platform-page .home-scenarios.dp-home-module .scenarios__header {
    margin-bottom: 24px;
  }

  .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card {
    flex: 0 0 min(350px, calc(100vw - 40px));
    width: min(350px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    height: auto;
    min-height: 0;
    aspect-ratio: 367 / 439;
    border-radius: 22px;
  }

  .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-title {
    top: 66.5%;
    right: 22px;
    left: 22px;
    font-size: 18px;
    line-height: 28px;
  }

  .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-desc {
    top: 75.2%;
    right: 22px;
    left: 22px;
    display: -webkit-box;
    font-size: 13px;
    line-height: 20px;
    -webkit-line-clamp: 4;
  }

  .data-center-platform-page .home-scenarios.dp-home-module .scenarios__card-img {
    border-radius: 22px;
  }

  .data-center-platform-page .dp-cases-design__layout {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-case-feature {
    width: 100%;
    max-width: 527px;
  }

  .data-center-platform-page .dp-case-side,
  .data-center-platform-page .dp-case-side-card {
    width: 100%;
  }

  .data-center-platform-page .dp-case-side-card {
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
    padding: 18px;
  }

  .data-center-platform-page .dp-case-side-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .data-center-platform-page .dp-partners-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 24px 20px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-icon,
  .data-center-platform-page .dp-section--resources .dp-resource-card--blue .dp-resource-icon {
    width: 52px;
    height: 52px;
    font-size: 0;
    line-height: 0;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-icon::before {
    transform: scale(0.78);
    transform-origin: center;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-grid,
  .data-center-platform-page .dp-news-grid {
    grid-template-columns: 1fr;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-grid {
    gap: 18px;
  }

  .data-center-platform-page .dp-product-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 442px;
    height: auto;
    min-height: 0;
    margin: 0 auto;
  }

  .data-center-platform-page .dp-product-card img,
  .data-center-platform-page .dp-product-card__media {
    width: calc(100% - 20px);
    height: auto;
    min-height: 0;
    aspect-ratio: 442 / 257;
  }

  .data-center-platform-page .dp-product-card div {
    padding: 22px 24px 24px;
  }

  .data-center-platform-page .dp-product-card h3 {
    font-size: 22px;
    line-height: 32px;
    white-space: normal;
  }

  .data-center-platform-page .dp-news-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .data-center-platform-page .dp-news-card img,
  .data-center-platform-page .dp-news-card .dp-blank-media--news {
    width: 112px;
    height: 92px;
  }

  .data-center-platform-page .dp-news-card div {
    min-height: 92px;
    padding: 0;
  }

  .data-center-platform-page .dp-news-card time {
    position: static;
    margin-bottom: 6px;
  }
}

@media (max-width: 30rem) {
  .data-center-platform-page .dp-heading h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card {
    grid-template-columns: 1fr;
  }

  .data-center-platform-page .dp-news-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .data-center-platform-page .dp-news-card img,
  .data-center-platform-page .dp-news-card .dp-blank-media--news {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .data-center-platform-page .dp-news-card div {
    padding: 18px;
  }
}

@media (max-width: 31.25rem) {
  .data-center-platform-page .home-clients {
    padding: 42px 0 46px;
  }

  .data-center-platform-page .home-clients .clients__header {
    margin-bottom: 24px;
  }

  .data-center-platform-page .home-clients .clients__subtitle {
    width: 100%;
    max-width: 382px;
    padding: 0 8px;
    white-space: normal;
    overflow-wrap: anywhere;
    box-sizing: border-box;
  }

  .data-center-platform-page .dp-partners-static {
    grid-auto-rows: auto;
    gap: 14px;
  }

  html.is-mobile .data-center-platform-page .dp-partner-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 262 / 113;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-icon,
  .data-center-platform-page .dp-section--resources .dp-resource-card--blue .dp-resource-icon {
    width: 46px;
    height: 46px;
    font-size: 0;
    line-height: 0;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.35;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card p,
  .data-center-platform-page .dp-section--resources .dp-resource-card li {
    font-size: 14px;
    line-height: 1.65;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card ul {
    gap: 6px;
    margin-top: 12px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card a {
    height: 44px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 44px;
  }

  .data-center-platform-page .dp-faq-list {
    width: calc(100% - 24px);
  }

  .data-center-platform-page .dp-faq-item summary,
  .data-center-platform-page .dp-faq-item[open] summary {
    padding-right: 44px;
    padding-left: 52px;
  }

  .data-center-platform-page .dp-faq-item summary::before,
  .data-center-platform-page .dp-faq-item[open] summary::before {
    left: 12px;
  }

  html.is-mobile .data-center-platform-page .dp-faq-item .dp-faq-answer {
    margin: 0 12px 12px;
    padding: 14px 14px 16px 44px;
  }

  html.is-mobile .data-center-platform-page .dp-faq-item .dp-faq-answer::before {
    left: 8px;
  }
}
/* 数据中台学习资料与 FAQ：参考 qKnow 泵站方案的流式卡片和折叠布局。 */
.data-center-platform-page .dp-section--resources {
  min-height: 0;
  padding: 74px 0;
  background: linear-gradient(138deg, #ffffff 0%, #eff0f7 10.59%, #f2f3fa 100%);
}

html.is-desktop .data-center-platform-page .dp-section--resources .site-container.site-container--wide,
.data-center-platform-page .dp-section--resources .site-container--wide {
  width: min(var(--content-max-width), calc(100% - 48px));
  margin-inline: auto;
  padding-inline: 0;
}

.data-center-platform-page .dp-section--resources .dp-heading {
  margin-bottom: 30px;
}

.data-center-platform-page .dp-section--resources .dp-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: 100%;
  height: auto;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.data-center-platform-page .dp-section--resources .dp-resource-card {
  --resource-color: #573ca1;
  --resource-light-color: #e4dff7;
  position: relative;
  inset: auto;
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  min-height: 420px;
  padding: 22px 38px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--resource-light-color) 0%, #ffffff 40%);
  box-shadow: 0 4px 20px rgba(30, 50, 90, 0.06);
  box-sizing: border-box;
  overflow: hidden;
}

.data-center-platform-page .dp-section--resources .dp-resource-card--cyan {
  --resource-color: #1469a5;
  --resource-light-color: #caeff7;
}

.data-center-platform-page .dp-section--resources .dp-resource-card--blue {
  --resource-color: #1653d5;
  --resource-light-color: #cee1ff;
}

.data-center-platform-page .dp-section--resources .dp-resource-card::after {
  content: none;
}

.data-center-platform-page .dp-section--resources .dp-resource-card > div:not(.dp-resource-icon) {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.data-center-platform-page .dp-section--resources .dp-resource-icon,
.data-center-platform-page .dp-section--resources .dp-resource-card--blue .dp-resource-icon {
  position: absolute;
  left: 38px;
  top: 22px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--resource-light-color) 78%, #ffffff);
  font-size: 0;
  line-height: 0;
}

.data-center-platform-page .dp-section--resources .dp-resource-icon::before {
  position: static;
  transform: none;
  transform-origin: center;
}

.data-center-platform-page .dp-section--resources .dp-resource-card h3 {
  position: static;
  z-index: 1;
  min-height: 66px;
  margin: 0 0 16px;
  padding-left: 86px;
  color: var(--resource-color);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 66px;
}

.data-center-platform-page .dp-section--resources .dp-resource-card p {
  position: static;
  z-index: 1;
  width: auto;
  min-height: 124px;
  margin: 0;
  padding: 16px 6px;
  border-top: 2px solid var(--resource-light-color);
  color: #333333;
  font-size: clamp(15px, 1.2vw, 18px);
  /* font-weight: 500; */
  line-height: 30px;
}

.data-center-platform-page .dp-section--resources .dp-resource-card ul {
  position: static;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: auto;
  margin: 0 0 22px;
  padding: 0;
}

.data-center-platform-page .dp-section--resources .dp-resource-card li {
  height: auto;
  padding-left: 26px;
  color: #333333;
  font-size: clamp(15px, 1.2vw, 18px);
  /* font-weight: 500; */
  line-height: 30px;
}

.data-center-platform-page .dp-section--resources .dp-resource-card li::before {
  content: "\2192";
  left: 6px;
  color: #333333;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.data-center-platform-page .dp-section--resources .dp-resource-card a,
.data-center-platform-page .dp-section--resources .dp-resource-card--blue a {
  position: static;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 52px;
  margin: auto 0 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--resource-color);
  border-radius: 8px;
  color: var(--resource-color);
  background: #ffffff;
  font-size: clamp(16px, 1.35vw, 20px);
  /* font-weight: 800; */
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.data-center-platform-page .dp-section--resources .dp-resource-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--resource-color) 16%, transparent);
}

.data-center-platform-page .dp-section--faq {
  padding: 74px 0;
  background: linear-gradient(135deg, #f0f6fd 0%, #f6faff 49.82%, #f0eafd 100%);
}

.data-center-platform-page .dp-section--faq .dp-heading {
  margin-bottom: 30px;
}

.data-center-platform-page .dp-section--faq .dp-faq-list {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.data-center-platform-page .dp-section--faq .dp-faq-item,
.data-center-platform-page .dp-section--faq .dp-faq-item[open] {
  min-height: 0;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.data-center-platform-page .dp-section--faq .dp-faq-item summary,
.data-center-platform-page .dp-section--faq .dp-faq-item[open] summary {
  position: relative;
  display: flex;
  min-height: 68px;
  padding: 20px 64px 20px 69px;
  align-items: center;
  color: rgba(0, 0, 0, 0.85);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
}

.data-center-platform-page .dp-section--faq .dp-faq-item summary::before,
.data-center-platform-page .dp-section--faq .dp-faq-item[open] summary::before {
  left: 26px;
  top: 19px;
  width: 30px;
  height: 30px;
  background-color: #d9e6fb;
  background-size: 16px 17px;
}

.data-center-platform-page .dp-section--faq .dp-faq-item summary::after,
.data-center-platform-page .dp-section--faq .dp-faq-item[open] summary::after {
  right: 26px;
  top: 20px;
  width: 28px;
  height: 28px;
  background-image: url("/assets/images/product/data-center-platform/faq-arrow-down.svg");
  background-size: 12px 12px;
  transform: rotate(-90deg);
  transition: transform 0.3s ease-in-out;
}

.data-center-platform-page .dp-section--faq .dp-faq-item[open] summary::after {
  transform: rotate(0deg);
}

.data-center-platform-page .dp-section--faq .dp-faq-answer,
html.is-mobile .data-center-platform-page .dp-section--faq .dp-faq-item .dp-faq-answer {
  position: relative;
  margin: 0 26px 20px 69px;
  padding: 8px 14px 8px 60px;
  border-radius: 8px;
  background: #f1f6fd;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.85);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.7;
}

.data-center-platform-page .dp-section--faq .dp-faq-answer::before,
html.is-mobile .data-center-platform-page .dp-section--faq .dp-faq-item .dp-faq-answer::before {
  left: 16px;
  top: 8px;
  width: 30px;
  height: 30px;
  background-size: 15px 15px;
}

.data-center-platform-page .dp-section--faq .dp-faq-answer h4 {
  color: #17233d;
  font-size: 1em;
  line-height: 1.7;
}

.data-center-platform-page .dp-section--faq .hqd-faq-more {
  display: flex;
  width: min(289px, calc(100% - 32px));
  height: 40px;
  margin: 28px auto 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50px;
  color: #1d50a3;
  background: #e2ecf9;
  font-size: 18px;
  /* font-weight: 800; */
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.data-center-platform-page .dp-section--faq .hqd-faq-more:hover {
  transform: translateY(-2px);
  background: #d8e7f8;
}

@media (max-width: 1199px) {
  .data-center-platform-page .dp-section--resources .dp-resource-grid {
    gap: 10px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card {
    min-height: 390px;
    padding: 18px 20px 20px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-icon,
  .data-center-platform-page .dp-section--resources .dp-resource-card--blue .dp-resource-icon {
    left: 20px;
    top: 18px;
    width: 50px;
    height: 50px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-icon::before {
    transform: scale(0.78);
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card h3 {
    min-height: 50px;
    margin-bottom: 14px;
    padding-left: 60px;
    font-size: 21px;
    line-height: 50px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card p {
    min-height: 110px;
    padding: 14px 0 10px;
    font-size: 15px;
    line-height: 25px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card li {
    font-size: 15px;
    line-height: 26px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card a,
  .data-center-platform-page .dp-section--resources .dp-resource-card--blue a {
    height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 999px) {
  html.is-desktop .data-center-platform-page .dp-section--resources .site-container.site-container--wide,
  .data-center-platform-page .dp-section--resources .site-container--wide {
    width: calc(100% - 80px);
  }

  .data-center-platform-page .dp-section--resources .dp-resource-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card {
    min-height: 0;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card p {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .data-center-platform-page .dp-section--resources,
  .data-center-platform-page .dp-section--faq {
    padding: 48px 0;
  }

  html.is-desktop .data-center-platform-page .dp-section--resources .site-container.site-container--wide,
  .data-center-platform-page .dp-section--resources .site-container--wide {
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-section--resources .dp-heading,
  .data-center-platform-page .dp-section--faq .dp-heading {
    margin-bottom: 28px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card {
    padding: 18px 16px 20px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-icon,
  .data-center-platform-page .dp-section--resources .dp-resource-card--blue .dp-resource-icon {
    left: 16px;
    top: 18px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card h3 {
    font-size: 18px;
  }

  .data-center-platform-page .dp-section--resources .dp-resource-card p,
  .data-center-platform-page .dp-section--resources .dp-resource-card li {
    font-size: 14px;
    line-height: 24px;
  }

  .data-center-platform-page .dp-section--faq .dp-faq-list {
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-section--faq .dp-faq-item summary,
  .data-center-platform-page .dp-section--faq .dp-faq-item[open] summary {
    display: block;
    min-height: 48px;
    padding: 10px 46px 10px 15px;
    font-size: 16px;
    line-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .data-center-platform-page .dp-section--faq .dp-faq-item summary::before,
  .data-center-platform-page .dp-section--faq .dp-faq-item[open] summary::before {
    display: none;
  }

  .data-center-platform-page .dp-section--faq .dp-faq-item summary::after,
  .data-center-platform-page .dp-section--faq .dp-faq-item[open] summary::after {
    right: 10px;
    top: 10px;
  }

  .data-center-platform-page .dp-section--faq .dp-faq-answer,
  html.is-mobile .data-center-platform-page .dp-section--faq .dp-faq-item .dp-faq-answer {
    margin: 0 15px 15px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.7;
  }

  .data-center-platform-page .dp-section--faq .dp-faq-answer::before,
  html.is-mobile .data-center-platform-page .dp-section--faq .dp-faq-item .dp-faq-answer::before {
    display: none;
  }

  .data-center-platform-page .dp-section--faq .hqd-faq-more {
    height: 38px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  html.is-desktop .data-center-platform-page .dp-section--resources .site-container.site-container--wide,
  .data-center-platform-page .dp-section--resources .site-container--wide,
  .data-center-platform-page .dp-section--faq .dp-faq-list {
    width: calc(100% - 24px);
  }
}

/* 相关产品推荐：使用流式网格，避免固定 464px 卡片在窄桌面和平板端溢出。 */
.data-center-platform-page .dp-section--recommend .dp-heading {
  margin-bottom: 30px;
}

.data-center-platform-page .dp-section--recommend .dp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  justify-content: initial;
  gap: 22px;
  width: min(var(--content-max-width), 100%);
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.data-center-platform-page .dp-section--recommend .dp-product-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 89, 157, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(35, 76, 125, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.data-center-platform-page .dp-section--recommend .dp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(35, 76, 125, 0.14);
}

.data-center-platform-page .dp-section--recommend .dp-product-card img,
.data-center-platform-page .dp-section--recommend .dp-product-card__media {
  display: block;
  width: calc(100% - 20px);
  height: auto;
  min-height: 0;
  margin: 10px auto 0;
  aspect-ratio: 442 / 257;
  border-radius: 7px 7px 0 0;
  background: #f3f8ff;
  object-fit: cover;
  object-position: center top;
}

.data-center-platform-page .dp-section--recommend .dp-product-card__body,
.data-center-platform-page .dp-section--recommend .dp-product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 20px clamp(22px, 2.3vw, 35px) 22px;
  align-items: flex-start;
  box-sizing: border-box;
}

.data-center-platform-page .dp-section--recommend .dp-product-card h3 {
  margin: 0;
  color: #333333;
  font-size: clamp(22px, 1.65vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: anywhere;
}

.data-center-platform-page .dp-section--recommend .dp-product-card p {
  width: auto;
  margin: 10px 0 22px;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.data-center-platform-page .dp-section--recommend .dp-product-card a {
  flex: 0 0 auto;
  align-self: flex-end;
  min-width: 118px;
  height: 34px;
  margin-top: auto;
  line-height: 32px;
}

@media (max-width: 1199px) {
  .data-center-platform-page .dp-section--recommend .dp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-card h3 {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .data-center-platform-page .dp-section--recommend {
    padding: 48px 0;
  }

  .data-center-platform-page .dp-section--recommend .dp-heading {
    margin-bottom: 28px;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-card {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-card__body,
  .data-center-platform-page .dp-section--recommend .dp-product-card div {
    padding: 18px 20px 20px;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-card h3 {
    font-size: 21px;
    line-height: 30px;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-card p {
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .data-center-platform-page .dp-section--recommend .dp-product-card a {
    min-width: 110px;
    height: 32px;
    font-size: 13px;
    line-height: 30px;
  }
}

@media (max-width: 1023px) {
  .data-center-platform-page .dp-section--faq .dp-faq-answer::before,
  html.is-mobile .data-center-platform-page .dp-section--faq .dp-faq-item .dp-faq-answer::before {
    display: none;
  }

  .data-center-platform-page .dp-section--faq .dp-faq-item .dp-faq-answer p {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .data-center-platform-page .dp-section--faq .dp-faq-answer,
  html.is-mobile .data-center-platform-page .dp-section--faq .dp-faq-item .dp-faq-answer {
    padding-left: 20px;
  }
}

/* 行业领导者的选择：保留主案例 + 双侧案例层级，改为连续响应式布局。 */
.data-center-platform-page .dp-cases-design.home-stories {
  min-height: 0;
  padding: 60px 0 64px;
}

.data-center-platform-page .dp-cases-design__header {
  height: auto;
  margin-bottom: 30px;
}

.data-center-platform-page .dp-cases-design__layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  gap: 24px;
  width: min(var(--content-max-width), calc(100% - 48px));
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.data-center-platform-page .dp-case-feature {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 569px;
  min-width: 0;
  padding: 32px 38px 45px;
}

.data-center-platform-page .dp-case-feature__copy {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  width: 100%;
}

.data-center-platform-page .dp-case-feature__screen {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  margin-top: auto;
  aspect-ratio: 448 / 284;
}

.data-center-platform-page .dp-case-feature__logo {
  position: static;
  inset: auto;
  align-self: flex-start;
  flex: 0 0 auto;
  width: min(241px, calc(100% - 124px));
  margin: -94px 0 44px 24px;
}

.data-center-platform-page .dp-case-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 23px;
  width: 100%;
  height: 569px;
  min-width: 0;
}

.data-center-platform-page .dp-case-side-card {
  grid-template-columns: minmax(170px, 246px) minmax(0, 1fr);
  gap: clamp(20px, 2.2vw, 32px);
  width: 100%;
  height: auto;
  min-height: 0;
  padding: clamp(24px, 2.5vw, 36px) clamp(22px, 2.2vw, 31px);
}

.data-center-platform-page .dp-case-side-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 246 / 199;
}

.data-center-platform-page .dp-case-side-card__content {
  overflow: visible;
}

.data-center-platform-page .dp-case-side-card__content p {
  display: -webkit-box;
  margin-top: 12px;
  overflow: hidden;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

@media (max-width: 1279px) {
  .data-center-platform-page .dp-case-side-card__image {
    align-self: center;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .data-center-platform-page .dp-cases-design__layout {
    grid-template-columns: minmax(370px, 0.44fr) minmax(0, 0.56fr);
    gap: 20px;
  }

  .data-center-platform-page .dp-case-feature__copy h3,
  .data-center-platform-page .dp-case-side-card__content h3 {
    font-size: 20px;
    line-height: 29px;
  }

  .data-center-platform-page .dp-case-feature__copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 26px;
  }

  .data-center-platform-page .dp-case-side-card {
    grid-template-columns: minmax(140px, 34%) minmax(0, 1fr);
    gap: 18px;
    padding: 22px 20px;
  }

  .data-center-platform-page .dp-case-side-card__logo,
  .data-center-platform-page .dp-case-side-card__logo--hubei,
  .data-center-platform-page .dp-case-side-card__logo--shanxi {
    height: 34px;
    margin-bottom: 10px;
  }

  .data-center-platform-page .dp-case-side-card__content p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 22px;
    -webkit-line-clamp: 6;
  }
}

@media (max-width: 991px) {
  .data-center-platform-page .dp-cases-design.home-stories {
    padding: 52px 0 56px;
  }

  .data-center-platform-page .dp-cases-design__header {
    margin-bottom: 28px;
  }

  .data-center-platform-page .dp-cases-design__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    width: min(720px, calc(100% - 48px));
  }

  .data-center-platform-page .dp-case-feature {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 28px;
  }

  .data-center-platform-page .dp-case-feature__screen {
    margin-top: 24px;
    aspect-ratio: 873 / 501;
  }

  .data-center-platform-page .dp-case-feature__logo {
    width: min(241px, calc(100% - 104px));
    margin: -74px 0 24px 24px;
  }

  .data-center-platform-page .dp-case-side {
    gap: 20px;
    height: auto;
  }

  .data-center-platform-page .dp-case-side-card {
    grid-template-columns: minmax(190px, 34%) minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
  }

  .data-center-platform-page .dp-case-side-card__content p {
    -webkit-line-clamp: initial;
  }
}

@media (max-width: 767px) {
  .data-center-platform-page .dp-cases-design.home-stories {
    padding: 48px 0;
  }

  .data-center-platform-page .dp-cases-design .stories__title {
    flex-wrap: nowrap;
    gap: 10px;
    font-size: clamp(22px, 6.3vw, 28px);
    line-height: 38px;
  }

  .data-center-platform-page .dp-cases-design .stories__subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .data-center-platform-page .dp-cases-design__layout {
    width: calc(100% - 32px);
  }

  .data-center-platform-page .dp-case-feature {
    padding: 22px;
  }

  .data-center-platform-page .dp-case-feature__copy h3,
  .data-center-platform-page .dp-case-side-card__content h3 {
    font-size: 20px;
    line-height: 29px;
  }

  .data-center-platform-page .dp-case-feature__copy p,
  .data-center-platform-page .dp-case-side-card__content p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 23px;
  }

  .data-center-platform-page .dp-case-feature__screen {
    margin-top: 20px;
    border-width: 8px;
    border-radius: 14px;
  }

  .data-center-platform-page .dp-case-feature__logo {
    width: min(210px, calc(100% - 76px));
    height: 44px;
    margin: -62px 0 18px 16px;
  }

  .data-center-platform-page .dp-case-feature__logo-mark {
    width: min(180px, 100%);
    height: auto;
  }

  .data-center-platform-page .dp-case-side-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .data-center-platform-page .dp-case-side-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .data-center-platform-page .dp-case-side-card__content {
    padding: 0 4px 4px;
  }
}

@media (max-width: 390px) {
  .data-center-platform-page .dp-cases-design__layout {
    width: calc(100% - 24px);
  }

  .data-center-platform-page .dp-case-feature {
    padding: 18px;
  }

  .data-center-platform-page .dp-case-feature__logo {
    width: min(190px, calc(100% - 64px));
    margin: -60px 0 16px 14px;
  }
}

@media (max-width: 699px) {
  .data-center-platform-page .dp-governance-card--media:hover > img.dp-governance-media,
  .data-center-platform-page .dp-governance-card--media:focus-within > img.dp-governance-media {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 501px) and (max-width: 699px) {
  .data-center-platform-page .dp-governance-card--detail .dp-governance-actions {
    margin: 24px auto 0;
  }
}

/* source: styles/pages/price.css */
.pricing-shell {
  background: #ffffff;
}

.price-redesign {
  --price-desktop-scale: 1;
  --price-blue: #0f69e6;
  --price-deep-blue: #174dca;
  --price-ink: #061737;
  --price-copy: rgba(0, 0, 0, 0.65);
  --price-line: rgba(176, 201, 253, 0.45);
  overflow: hidden;
  background: #ffffff;
  color: var(--price-ink);
  font-family: var(--font-sans);
}

.price-redesign *,
.price-redesign *::before,
.price-redesign *::after {
  box-sizing: border-box;
}

.price-redesign__container {
  width: min(var(--content-max-width), calc(100% - 48px));
  margin-inline: auto;
}

.price-redesign__hero {
  position: relative;
  min-height: 1205px;
  padding: 74px 0 0;
  background: #ffffff;
}

.price-redesign__hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("/assets/images/price-redesign/hero-bg.png") center -85px / 1920px 1440px no-repeat;
  opacity: 0.65;
  pointer-events: none;
}

.price-redesign__hero-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.price-redesign__hero-heading h1 {
  margin: 0;
  color: #1d2234;
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
}

.price-redesign__hero-heading p {
  margin: 15px 0 0;
  color: #313647;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.price-redesign__plans {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.price-redesign__plans-stage {
  display: contents;
}

.price-plan,
.price-mini-plan {
  position: relative;
  min-width: 0;
  border: 3px solid #ffffff;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), #ffffff 35%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.price-plan {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  padding: 22px 24px 26px;
}

.price-plan--pro {
  border: 0;
  background:
    url("/assets/images/price-redesign/card-pro-bg.png") center / 100% 100% no-repeat,
    #ffffff;
  box-shadow: none;
}

.price-plan--enterprise {
  border: 0;
  background:
    url("/assets/images/price-redesign/card-enterprise-bg.png") center / 100% 100% no-repeat,
    #ffffff;
  box-shadow: none;
}

.price-plan__badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 20px;
  display: inline-flex;
  min-width: 116px;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 16px;
  background: #e7f0fd;
  color: #0e65de;
  font-size: 14px;
  font-weight: 700;
  line-height: 31px;
}



.price-plan__recommend {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  min-width: 92px;
  height: 34px;
  padding: 0 18px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(110deg, #1667ff 0%, #00b8ef 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  transform: translateX(-50%);
}

.price-plan__header {
  position: relative;
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 32px;
}

.price-plan__header img {
  display: block;
  width: 122px;
  height: 122px;
  flex: 0 0 122px;
  object-fit: contain;
}

.price-plan__header h2,
.price-mini-plan h2 {
  margin: 0;
  color: var(--price-ink);
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.price-plan__header p {
  margin: 7px 0 0;
  color: #3b3b3b;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.price-plan__summary {
  min-height: 58px;
  margin: 25px 6px 16px;
  color: var(--price-copy);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
}

.price-plan__stats {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #e2e7ef;
  color: rgba(0, 0, 0, 0.65);
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  white-space: nowrap;
}

.price-plan__stats button {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.65);
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.price-plan__stats button + button {
  margin-left: 37px;
}

.price-plan__stats button + button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -19px;
  width: 1px;
  height: 16px;
  background: #d5d9df;
  transform: translateY(-50%);
}

.price-plan__stats button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--price-blue);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.price-plan__stats button:hover,
.price-plan__stats button:focus-visible,
.price-plan__stats button[aria-selected="true"] {
  color: var(--price-blue);
}

.price-plan__stats button:focus-visible {
  outline: 2px solid rgba(15, 105, 230, 0.3);
  outline-offset: -2px;
}

.price-plan__stats button[aria-selected="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.price-plan__stats--enterprise {
  justify-content: center;
}

.price-plan__stats--enterprise button + button {
  margin-left: 37px;
}

.price-plan__stats--enterprise button + button::before {
  left: -19px;
  height: 16px;
}

.price-plan__stats--enterprise button:hover,
.price-plan__stats--enterprise button:focus-visible,
.price-plan__stats--enterprise button[aria-selected="true"] {
  color: #3334c7;
}

.price-plan__stats--enterprise button[aria-selected="true"]::after {
  background: #3334c7;
}

.price-plan__tab-panel[hidden] {
  display: none;
}

.price-plan__included {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  margin: 12px 0 10px;
  padding: 0 12px;
  border-radius: 8px;
  background: #e7f0fd;
  color: #004ab3;
  font-size: 15px;
  font-weight: 500;
  line-height: 32px;
}

.price-plan__included::before {
  content: "";
  width: 17px;
  height: 18px;
  flex: 0 0 auto;
  background: url("/assets/images/price-redesign/included-pro.svg") center / 100% 100% no-repeat;
}

.price-plan__included--enterprise {
  background: #dee5fd;
  color: #3334c7;
}

.price-plan__included--enterprise::before {
  background-image: url("/assets/images/price-redesign/included-enterprise.svg");
}

.price-plan__feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.price-plan__features {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.price-plan__feature-columns .price-plan__features {
  margin-top: 0;
}

.price-plan__features li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.price-plan__features li::before {
  content: "";
  position: absolute;
  top: 0.43em;
  left: 3px;
  width: 6px;
  height: 10px;
  border-right: 1.5px solid var(--price-blue);
  border-bottom: 1.5px solid var(--price-blue);
  transform: rotate(45deg);
}

.price-plan__notice {
  position: relative;
  margin: 12px 0 0;
  padding: 8px 12px 8px 30px;
  border-radius: 6px;
  background: #e7f0fd;
  color: #4d5969;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.price-plan__notice::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 14px;
  height: 14px;
  background: url("/assets/images/price-redesign/notice-info.svg") center / 100% 100% no-repeat;
}

.price-plan__notice strong {
  display: block;
  color: #0f6be8;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.price-plan__actions {
  display: grid;
  gap: 11px;
  margin-top: auto;
  padding-top: 18px;
}

.price-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(90deg, #1973f3 0%, #3533c6 100%);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-button:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(15, 105, 230, 0.2);
}

.price-button--outline {
  border-color: var(--price-blue);
  background: #ffffff;
  color: var(--price-blue);
}

.price-button--outline:hover {
  background: var(--price-blue);
  color: #ffffff;
}

.price-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--price-blue);
  font-size: 14px;
  /* font-weight: 600; */
  line-height: 22px;
  text-decoration: none;
}

.price-text-link::after {
  content: "\2192";
  margin-left: 7px;
  font-size: 18px;
}

.price-plan__note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #e8edf3;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.price-redesign__side-plans {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.price-mini-plan {
  display: flex;
  min-height: 410px;
  align-items: center;
  flex-direction: column;
  padding: 20px 24px;
  text-align: center;
}

.price-mini-plan img {
  display: block;
  width: 142px;
  height: 142px;
  object-fit: contain;
}

.price-mini-plan h2 {
  margin-top: 3px;
  font-size: 23px;
}

.price-mini-plan strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 16px;
  border-radius: 15px;
  background: #dceaff;
  color: #333333;
  font-size: 14px;
  line-height: 28px;
}

.price-mini-plan p {
  margin: 14px 0 0;
  color: var(--price-copy);
  font-size: 14px;
  line-height: 1.75;
}

.price-mini-plan .price-button {
  width: 100%;
  margin-top: auto;
}

.price-section-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.price-section-heading h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.price-section-heading h2::before {
  content: "";
  width: 18px;
  height: 37px;
  flex: 0 0 auto;
  background: url("/assets/images/price-redesign/section-mark.svg") center / contain no-repeat;
}

.price-section-heading p {
  margin: 11px 0 0;
  color: #393e4f;
  font-size: 18px;
  line-height: 1.6;
}

.price-redesign__compare {
  position: relative;
  min-height: 633px;
  padding: 58px 0 54px;
  background: #f2f7fd url("/assets/images/price-redesign/compare-bg.png") center / cover no-repeat;
}

.price-redesign__compare .price-redesign__container {
  width: min(var(--content-max-width), calc(100% - 48px));
}

.price-redesign__compare .price-section-heading p {
  font-size: 20px;
}

.price-compare-panel {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 402px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 604px);
  gap: 36px;
  align-items: center;
  margin-top: 27px;
  padding: 28px 34px;
  border: 2px solid rgba(204, 221, 253, 0.78);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
}

.price-compare-panel__advice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 17px;
}

.price-compare-panel__advice article {
  display: flex;
  min-width: 0;
  min-height: 145px;
  align-items: center;
  padding: 17px 14px 17px 15px;
  border: 1px solid rgba(176, 201, 253, 0.3);
  border-radius: 12px;
  background: #fbfcfd;
  box-shadow: 0 4px 25px rgba(227, 236, 253, 1);
}

.price-compare-panel__advice img {
  width: 121px;
  height: 111px;
  flex: 0 0 121px;
  object-fit: contain;
}

.price-compare-panel__advice h3 {
  margin: 0 0 -2px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 26px;
  font-weight: 800;
  line-height: 48px;
}

.price-compare-panel__advice p {
  margin: 0;
  color: #313647;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

.price-compare-panel__qr-card {
  position: relative;
  display: grid;
  min-height: 326px;
  grid-template-columns: minmax(0, 361px) minmax(170px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 28px 20px 5px;
  background: url("/assets/images/price-redesign/compare-qr-card-bg.png") center / 100% 100% no-repeat;
}

.price-compare-panel__qr {
  position: relative;
  width: 361px;
  aspect-ratio: 447 / 404;
  justify-self: center;
}

.price-compare-panel__qr-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-compare-panel__qr-code {
  position: absolute;
  top: 14.11%;
  left: 25.76%;
  width: 47.37%;
  height: 51.53%;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 0 0 10px #ffffff;
}

/* 价格页区块标题统一使用首页标题组件的视觉规则。 */
.price-redesign .price-section-heading h2,
.price-redesign .hqd-section-heading h2 {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  gap: 12px;
  margin: 0 0 16px;
  color: #000000;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  letter-spacing: 0;
  text-align: center;
}

.price-redesign .price-section-heading h2::before,
.price-redesign .hqd-section-heading h2::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 36px;
  flex: 0 0 46px;
  background: url("/assets/images/home/icon-core-diamond.png") no-repeat center / contain;
}

.price-redesign .price-section-heading h2::after,
.price-redesign .hqd-section-heading h2::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 6px;
  z-index: -1;
  width: calc(100% - 50px);
  height: 26px;
  transform: none;
  background: url("/assets/images/home/core-title-pill-image.png") no-repeat center / 100% 100%;
  pointer-events: none;
}

.price-redesign .price-section-heading p,
.price-redesign .hqd-section-heading p,
.price-redesign .price-redesign__compare .price-section-heading p,
.price-redesign .price-redesign__service .price-section-heading p,
.price-redesign .price-redesign__partners .price-section-heading p {
  max-width: 860px;
  margin: 0 auto;
  color: #666666;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .price-redesign .price-section-heading h2,
  .price-redesign .hqd-section-heading h2 {
    max-width: calc(100% - 24px);
    flex-wrap: wrap;
    font-size: 28px;
    line-height: 1.35;
  }

  .price-redesign .price-section-heading h2::after,
  .price-redesign .hqd-section-heading h2::after {
    right: -14px;
    bottom: 4px;
    width: calc(100% - 42px);
  }

  .price-redesign .price-section-heading p,
  .price-redesign .hqd-section-heading p {
    padding: 0 12px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .price-redesign .price-section-heading h2,
  .price-redesign .hqd-section-heading h2 {
    gap: 6px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .price-redesign .price-section-heading h2::before,
  .price-redesign .hqd-section-heading h2::before {
    width: 34px;
    height: 28px;
    flex-basis: 34px;
  }

  .price-redesign .price-section-heading h2::after,
  .price-redesign .hqd-section-heading h2::after {
    right: -12px;
    width: calc(100% - 38px);
    height: 20px;
  }

  .price-redesign .price-section-heading p,
  .price-redesign .hqd-section-heading p {
    font-size: 14px;
  }
}

.price-compare-panel__contact {
  position: relative;
  z-index: 2;
}

.price-compare-panel__contact h3 {
  margin: 0;
  color: #0f69e6;
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-compare-panel__contact > p {
  margin: -4px 0 0;
  color: #616264;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-compare-panel__contact ul {
  display: grid;
  gap: 0;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.price-compare-panel__contact li {
  position: relative;
  padding-left: 27px;
  color: #616264;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
}

.price-compare-panel__contact li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 17px;
  height: 17px;
  background: url("/assets/images/price-redesign/compare-check.svg") center / 100% 100% no-repeat;
}

@media (min-width: 1200px) {
  .price-compare-panel {
    display: block;
    width: 100%;
    height: 405px;
    min-height: 405px;
    padding: 0;
    overflow: visible;
  }

  .price-compare-panel__advice {
    position: absolute;
    top: 51px;
    left: 36px;
    width: 728px;
    grid-template-columns: 350px 361px;
    grid-auto-rows: 145px;
    gap: 13px 17px;
  }

  .price-compare-panel__advice article {
    position: relative;
    display: block;
    min-height: 145px;
    padding: 0;
  }

  .price-compare-panel__advice img {
    position: absolute;
    top: 19px;
    left: 15px;
    width: 121px;
    height: 111px;
  }

  .price-compare-panel__advice h3 {
    position: absolute;
    top: 19px;
    left: 142px;
    width: 153px;
    margin: 0;
  }

  .price-compare-panel__advice p {
    position: absolute;
    top: 65px;
    left: 142px;
    width: 208px;
    margin: 0;
  }

  .price-compare-panel__qr-card {
    position: absolute;
    top: 29px;
    left: 858px;
    display: block;
    width: 604px;
    height: 389px;
    min-height: 0;
    padding: 0;
    background-position: 6px 3px;
    background-size: 558px 340px;
  }

  .price-compare-panel__qr-card::before,
  .price-compare-panel__qr-card::after {
    content: "";
    position: absolute;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
  }

  .price-compare-panel__qr-card::before {
    top: 71px;
    left: -66px;
    width: 55px;
    height: 161px;
    background-image: url("/assets/images/price-redesign/compare-connector-left.png");
  }

  .price-compare-panel__qr-card::after {
    top: 71px;
    left: 328px;
    width: 10px;
    height: 133px;
    background-image: url("/assets/images/price-redesign/compare-connector-right.png");
  }

  .price-compare-panel__qr {
    position: absolute;
    top: 18px;
    left: 5px;
    width: 361px;
    height: 326px;
  }

  .price-compare-panel__qr-stage {
    width: 361px;
    height: 326px;
  }

  .price-compare-panel__contact {
    position: absolute;
    top: 41px;
    left: 361px;
    width: 243px;
  }
}

.price-redesign__service {
  min-height: 954px;
  padding: 47px 0 58px;
  background: #ffffff;
}

.price-service-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 20px;
  margin: 67px 0 0;
  padding: 0;
  list-style: none;
}

.price-service-flow li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 290px;
  align-items: center;
  flex-direction: column;
  padding: 58px 18px 20px;
  border: 1px solid rgba(176, 201, 253, 0.38);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(227, 236, 253, 0.9);
  text-align: center;
}

.price-service-flow li > span {
  position: absolute;
  z-index: 2;
  top: -29px;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 5px solid #e4f1ff;
  border-radius: 50%;
  background: linear-gradient(180deg, #2688ff, #0759df);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 5px 13px rgba(15, 105, 230, 0.22);
  transform: translateX(-50%);
}

.price-service-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -27px;
  width: 32px;
  height: 29px;
  background: url("/assets/images/price-redesign/service-arrow.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.price-service-flow img {
  width: 136px;
  height: 128px;
  object-fit: contain;
}

.price-service-flow h3 {
  margin: 4px 0 0;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.price-service-flow p {
  margin: 8px 0 0;
  color: #3d4657;
  font-size: 14px;
  line-height: 1.65;
}

.price-service-advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  padding: 9px 18px;
  border: 1px solid rgba(176, 201, 253, 0.38);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(227, 236, 253, 0.9);
}

.price-service-advantages article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 130px;
  align-items: center;
  padding: 8px 18px;
}

.price-service-advantages article + article::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  border-left: 1px solid #dce9fa;
}

.price-service-advantages img {
  width: 94px;
  height: 94px;
  flex: 0 0 94px;
  object-fit: contain;
}

.price-service-advantages h3 {
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.price-service-advantages p {
  margin: 5px 0 0;
  color: #495369;
  font-size: 13px;
  line-height: 1.6;
}

.price-service-banner {
  display: flex;
  min-height: 145px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 54px;
  border: 1px solid rgba(176, 201, 253, 0.42);
  border-radius: 10px;
  background: linear-gradient(90deg, #e8f3ff, #f6faff);
  box-shadow: 0 4px 20px rgba(227, 236, 253, 0.9);
}

.price-service-banner img {
  width: 132px;
  height: 102px;
  flex: 0 0 auto;
  object-fit: contain;
}

.price-service-banner strong {
  margin-left: 22px;
  color: #061a3f;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.price-service-banner .price-button {
  min-width: 190px;
  margin-left: auto;
}

.price-redesign__partners {
  position: relative;
  min-height: 730px;
  padding: 60px 0 70px;
  background: #ffffff url("/assets/images/price-redesign/partners-bg.png") bottom center / 1920px auto no-repeat;
}

.price-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  margin-top: 53px;
}

.price-partner-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 444px;
  flex-direction: column;
  padding: 32px 30px 22px;
  border: 1px solid rgba(176, 201, 253, 0.3);
  border-radius: 12px;
  background: rgba(251, 252, 253, 0.97);
  box-shadow: 0 4px 25px #e3ecfd;
}

.price-partner-card > img {
  display: block;
  width: auto;
  max-width: 250px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.price-partner-card h3 {
  margin: 8px 0 7px;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.price-partner-card > p {
  margin: 0;
  color: #313647;
  font-size: 14px;
  line-height: 1.7;
}

.price-partner-card blockquote {
  position: relative;
  flex: 1;
  min-height: 176px;
  margin: 19px 0 0;
  padding: 21px 18px 45px 54px;
  border-radius: 8px;
  background: #f2f6fd;
  color: #313647;
  font-size: 14px;
  line-height: 1.75;
}

.price-partner-card blockquote::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 28px;
  height: 24px;
  background: url("/assets/images/price/partners/quote.png") center / contain no-repeat;
}

.price-partner-card > span {
  position: absolute;
  right: 48px;
  bottom: 39px;
  display: inline-flex;
  align-items: center;
  color: var(--price-blue);
  font-size: 14px;
  font-weight: 700;
}

.price-partner-card > span::before {
  content: "";
  width: 34px;
  margin-right: 7px;
  border-top: 1px solid #4387e9;
}

.price-redesign__faq {
  min-height: 815px;
  padding: 59px 0 65px;
  background: linear-gradient(135deg, #f0f6fd, #f6faff 50%, #f0eafd);
}

.price-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.price-faq-list details {
  min-height: 58px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.price-faq-list summary {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 58px 12px 58px;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  list-style: none;
}

.price-faq-list summary::-webkit-details-marker {
  display: none;
}

.price-faq-list summary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d9e6fb url("/assets/images/price-redesign/faq-q.svg") center / 15px 16px no-repeat;
  transform: translateY(-50%);
}

.price-faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 19px;
  height: 13px;
  background: url("/assets/images/price-redesign/faq-chevron-down.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.price-faq-list details[open] summary::after {
  background-image: url("/assets/images/price-redesign/faq-chevron-up.svg");
}

.price-faq-list details > div {
  position: relative;
  margin: 0 20px 17px 56px;
  padding: 11px 16px 11px 54px;
  border-radius: 8px;
  background: #f1f6fd;
}

.price-faq-list details > div::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff url("/assets/images/price-redesign/faq-a.svg") center / 15px 15px no-repeat;
}

.price-faq-list details p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

@media (min-width: 1480px) {
  .price-redesign__hero {
    min-height: calc(1205px * var(--price-desktop-scale));
    padding-top: calc(74px * var(--price-desktop-scale));
  }

  .price-redesign__hero::before {
    background-position: center calc(-85px * var(--price-desktop-scale));
    background-size: 100% auto;
  }

  .price-redesign__hero-heading h1 {
    font-size: calc(52px * var(--price-desktop-scale));
  }

  .price-redesign__hero-heading p {
    margin-top: calc(15px * var(--price-desktop-scale));
    font-size: calc(32px * var(--price-desktop-scale));
    line-height: calc(48px * var(--price-desktop-scale));
  }

  .price-redesign__plans {
    display: block;
    width: calc(1430px * var(--price-desktop-scale));
    height: calc(892px * var(--price-desktop-scale));
    margin-top: calc(36px * var(--price-desktop-scale));
    margin-right: auto;
    margin-left: auto;
  }

  .price-redesign__plans-stage {
    position: relative;
    display: block;
    width: 1430px;
    height: 892px;
    transform: scale(var(--price-desktop-scale));
    transform-origin: top left;
  }

  .price-plan {
    position: absolute;
    top: 0;
    height: 892px;
    min-height: 892px;
  }

  .price-plan--open {
    left: 0;
    z-index: 1;
    width: 290px;
    padding: 22px 20px 26px;
    overflow: visible;
  }

  .price-plan--pro {
    left: 303px;
    z-index: 2;
    width: 415px;
    padding: 22px 28px 26px;
    border-radius: 8px;
    overflow: visible;
    background: none;
    isolation: isolate;
    box-shadow: 0 4px 20px rgba(76, 156, 255, 0.12);
  }

  .price-plan--enterprise {
    left: 729px;
    z-index: 3;
    width: 415px;
    padding: 22px 28px 26px;
    border: 3px solid #ffffff;
    border-radius: 8px;
    overflow: visible;
    background: none;
    isolation: isolate;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .price-plan--pro::before,
  .price-plan--enterprise::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -3px;
    left: -3px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
  }

  .price-plan--pro::before {
    width: 415px;
    height: 892px;
    background-image: url("/assets/images/price-redesign/card-pro-bg.png");
  }

  .price-plan--enterprise::before {
    width: 415px;
    height: 892px;
    background-image: url("/assets/images/price-redesign/card-enterprise-bg.png");
  }

  .price-redesign__side-plans {
    position: absolute;
    top: 0;
    left: 1154px;
    z-index: 4;
    display: grid;
    width: 276px;
    height: 892px;
    grid-template-columns: 1fr;
    grid-template-rows: 437px 444px;
    gap: 10px;
  }

  .price-mini-plan {
    min-height: 0;
    padding: 18px 25px 20px;
  }

  .price-mini-plan:first-child img {
    width: 107px;
    height: 110px;
    margin-top: 26px;
    object-fit: cover;
    object-position: center;
  }

  .price-mini-plan:last-child img {
    width: 146px;
    height: 137px;
    margin-top: 18px;
  }

  .price-mini-plan h2 {
    font-size: 24px;
    line-height: 20px;
  }

  .price-mini-plan:first-child h2 {
    margin-top: 18px;
  }

  .price-mini-plan:last-child h2 {
    margin-top: 9px;
  }

  .price-mini-plan strong {
    width: 136px;
    min-height: 27px;
    padding-inline: 0;
    border-radius: 50px;
    background: #d4e4fe;
    color: #0e65de;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
  }

  .price-mini-plan:first-child strong {
    margin-top: 19px;
  }

  .price-mini-plan:last-child strong {
    margin-top: 14px;
  }

  .price-mini-plan p {
    width: 236px;
    color: rgba(0, 0, 0, 0.65);
    font-size: 15px;
    line-height: 26px;
  }

  .price-mini-plan:first-child p {
    width: 236px;
    margin-top: 20px;
    font-size: 15px;
    text-align: center;
  }

  .price-mini-plan:last-child p {
    margin-top: 20px;
  }

  .price-mini-plan .price-button {
    position: absolute;
    left: 26px;
    width: 224px;
    min-height: 42px;
    margin: 0;
    padding-inline: 10px;
    border-color: var(--price-blue);
    background: #ffffff;
    color: var(--price-blue);
    font-size: 18px;
    letter-spacing: 1px;
  }

  .price-mini-plan:first-child .price-button {
    bottom: 43px;
  }

  .price-mini-plan:last-child .price-button {
    bottom: 43px;
  }

  .price-mini-plan .price-button:hover {
    background: var(--price-blue);
    color: #ffffff;
  }

  .price-plan__header {
    justify-content: flex-start;
    gap: 0;
    padding-top: 38px;
  }

  .price-plan__header h2 {
    font-size: 26px;
    line-height: 26px;
  }

  .price-plan__header p {
    margin-top: 7px;
    line-height: 20px;
    white-space: nowrap;
  }

  .price-plan--open .price-plan__header > div,
  .price-plan--pro .price-plan__header > div {
    position: relative;
    top: -7px;
    width: 156px;
    flex: 0 0 156px;
  }

  .price-plan--enterprise .price-plan__header {
    gap: 6px;
    padding-top: 33px;
  }

  .price-plan--enterprise .price-plan__header > div {
    position: relative;
    top: -4px;
    width: 260px;
    flex: 0 0 260px;
  }

  .price-plan--open .price-plan__header img {
    width: 105px;
    height: 122px;
    flex-basis: 105px;
  }

  .price-plan--pro .price-plan__header img {
    width: 130px;
    height: 119px;
    flex-basis: 130px;
  }

  .price-plan--enterprise .price-plan__header img {
    width: 138px;
    height: 122px;
    flex-basis: 138px;
    margin-left: -8px;
  }

  .price-plan__summary {
    font-size: 16px;
    line-height: 26px;
  }

  .price-plan--open .price-plan__summary {
    margin: 16px -4px 22px;
  }

  .price-plan--pro .price-plan__summary {
    margin: 21px 52px 19px;
  }

  .price-plan--enterprise .price-plan__summary {
    margin: 18px 0 24px;
    white-space: nowrap;
  }

  .price-plan__badge,
  .price-plan__recommend {
    border-radius: 0;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
  }

  .price-plan--open .price-plan__badge {
    top: -6px;
    left: 68px;
    width: 156px;
    height: 41px;
    justify-content: flex-start;
    padding: 0 0 0 53px;
    background-image: url("/assets/images/price-redesign/badge-open.png");
    line-height: 41px;
  }

  .price-plan--open .price-plan__badge::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 31px;
    width: 16px;
    height: 16px;
    background: url("/assets/images/price-redesign/badge-open-icon.svg") center / contain no-repeat;
  }

  .price-plan--pro .price-plan__badge {
    display: none;
  }

  .price-plan__recommend {
    top: -7px;
    left: 136px;
    width: 154px;
    height: 38px;
    justify-content: flex-start;
    padding: 0 0 0 59px;
    background-image: url("/assets/images/price-redesign/badge-pro.png");
    line-height: 38px;
    text-align: left;
    transform: none;
  }

  .price-plan__recommend::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 36px;
    width: 16px;
    height: 17px;
    background: url("/assets/images/price-redesign/badge-pro-icon.svg") center / contain no-repeat;
  }

  .price-plan--enterprise .price-plan__badge {
    top: -7px;
    left: 138px;
    width: 145px;
    height: 40px;
    justify-content: flex-start;
    padding: 0 0 0 51px;
    background-image: url("/assets/images/price-redesign/badge-enterprise-design.png");
    line-height: 40px;
  }

  .price-plan--enterprise .price-plan__badge::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: url("/assets/images/price-redesign/badge-enterprise-icon.svg") center / contain no-repeat;
  }

  .price-plan__stats {
    position: absolute;
    top: 271px;
    left: 20px;
    width: 251px;
    font-size: 16px;
    border-top: 1px solid #e2e7ef;
  }

  .price-plan--pro .price-plan__stats {
    left: 28px;
    width: 357px;
  }

  .price-plan--enterprise .price-plan__stats {
    left: 28px;
    width: 365px;
    font-size: 16px;
  }

  .price-plan__tabset,
  .price-plan__tab-panels {
    display: contents;
  }

  .price-plan__tab-panel {
    display: contents;
  }

  .price-plan__included {
    font-size: 16px;
  }

  .price-plan--pro .price-plan__included {
    position: absolute;
    top: 326px;
    left: 26px;
    width: 362px;
    min-height: 32px;
    margin: 0;
  }

  .price-plan--enterprise .price-plan__included {
    position: absolute;
    top: 328px;
    left: 23px;
    width: 370px;
    min-height: 32px;
    margin: 0;
  }

  .price-plan--open .price-plan__features {
    position: absolute;
    top: 339px;
    left: 20px;
    width: 251px;
    grid-auto-rows: 40px;
    gap: 0;
    margin-top: 0;
  }

  .price-plan--open .price-plan__features li {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 14px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 40px;
  }

  .price-plan--open .price-plan__features li::before {
    position: static;
    width: 12px;
    height: 8px;
    flex: 0 0 12px;
    border: 0;
    background: url("/assets/images/price-redesign/feature-check-open.svg") center / 12px 8px no-repeat;
    transform: none;
  }

  .price-plan--pro .price-plan__feature-columns {
    position: absolute;
    top: 366px;
    left: 28px;
    width: 357px;
    grid-template-columns: 192px 150px;
    gap: 0 14px;
  }

  .price-plan--pro .price-plan__features {
    grid-auto-rows: 32px;
    gap: 0;
  }

  .price-plan--enterprise .price-plan__features {
    grid-auto-rows: 40px;
    gap: 0;
  }

  .price-plan--pro .price-plan__features li {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 9px;
    padding-left: 8px;
    font-size: 16px;
    line-height: 32px;
    white-space: nowrap;
  }

  .price-plan--pro .price-plan__features li::before {
    position: static;
    width: 12px;
    height: 9px;
    flex: 0 0 12px;
    border: 0;
    background: url("/assets/images/price-redesign/feature-check-pro.svg") center / 12px 9px no-repeat;
    transform: none;
  }

  .price-plan--enterprise .price-plan__features li {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 11px;
    padding-left: 8px;
    font-size: 16px;
    line-height: 40px;
    white-space: nowrap;
  }

  .price-plan--enterprise .price-plan__features li::before {
    position: static;
    width: 13px;
    height: 11px;
    flex: 0 0 13px;
    border: 0;
    background: url("/assets/images/price-redesign/feature-check-enterprise.svg") center / 13px 11px no-repeat;
    transform: none;
  }

  .price-plan--enterprise .price-plan__features:nth-child(2) li {
    gap: 10px;
    padding-left: 9px;
  }

  .price-plan--enterprise .price-plan__feature-columns {
    position: absolute;
    top: 371px;
    left: 26px;
    width: 370px;
    grid-template-columns: 168px 188px;
    gap: 0 14px;
  }

  .price-plan--pro .price-plan__notice {
    position: absolute;
    top: 604px;
    left: 20px;
    width: 372px;
    min-height: 78px;
    margin: 0;
    padding: 8px 12px 8px 30px;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
  }

  .price-plan .price-button {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .price-plan .price-text-link {
    font-size: 16px;
  }

  .price-plan--pro .price-button {
    background: linear-gradient(90deg, #085bd2 0%, #1466f4 57%, #1973f3 100%);
  }

  .price-plan--open .price-plan__actions,
  .price-plan--pro .price-plan__actions,
  .price-plan--enterprise .price-plan__actions {
    position: absolute;
    gap: 17px;
    padding-top: 0;
  }

  .price-plan--open .price-plan__actions {
    top: 705px;
    left: 20px;
    width: 255px;
  }

  .price-plan--pro .price-plan__actions {
    top: 704px;
    left: 22px;
    width: 370px;
  }

  .price-plan--enterprise .price-plan__actions {
    top: 708px;
    left: 24px;
    width: 370px;
  }

  .price-plan--open .price-plan__note,
  .price-plan--enterprise .price-plan__note {
    position: absolute;
    top: 802px;
    margin: 0;
  }

  .price-plan--open .price-plan__note {
    left: 20px;
    width: 251px;
    padding-left: 34px;
  }

  .price-plan--pro .price-plan__note {
    position: absolute;
    top: 800px;
    left: 32px;
    width: 360px;
    margin: 0;
    padding-left: 34px;
  }

  .price-plan--open .price-plan__note::before,
  .price-plan--pro .price-plan__note::before,
  .price-plan--enterprise .price-plan__note::before {
    content: "";
    position: absolute;
    top: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .price-plan--open .price-plan__note::before {
    left: 10px;
    width: 16px;
    height: 20px;
    background-image: url("/assets/images/price-redesign/note-open.svg");
  }

  .price-plan--pro .price-plan__note::before {
    left: 4px;
    width: 16px;
    height: 20px;
    background-image: url("/assets/images/price-redesign/note-open.svg");
  }

  .price-plan--enterprise .price-plan__note {
    left: 28px;
    width: 356px;
    padding-left: 36px;
  }

  .price-plan--enterprise .price-plan__note::before {
    left: 4px;
    width: 16px;
    height: 20px;
    background-image: url("/assets/images/price-redesign/note-enterprise.svg");
  }

  .price-plan--open .price-plan__note,
  .price-plan--pro .price-plan__note,
  .price-plan--enterprise .price-plan__note {
    color: rgba(0, 0, 0, 0.65);
    font-size: 16px;
    line-height: 26px;
  }

  .price-redesign__service .price-redesign__container {
    width: var(--content-max-width);
  }

  .price-redesign__service .price-section-heading p {
    font-size: 20px;
  }

  .price-service-flow {
    position: relative;
    width: 1416.52px;
    grid-template-columns: repeat(6, 208.312px);
    column-gap: 33.33px;
    margin-top: 80px;
  }

  .price-service-flow::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -22px;
    right: 104px;
    left: 104px;
    border-top: 2px dashed #4b93ff;
  }

  .price-service-flow li {
    z-index: 1;
    display: block;
    width: 208.312px;
    height: 353.195px;
    min-height: 353.195px;
    padding: 0;
    border-radius: 12px;
    background: #fbfcfd;
    box-shadow: 0 4px 25px rgba(227, 236, 253, 1);
  }

  .price-service-flow li > span {
    top: -51px;
    font-family: var(--font-sans);
    font-weight: 400;
  }

  .price-service-flow li:not(:last-child)::after {
    top: 136.973px;
    right: -28.362px;
    width: 24.45px;
    height: 22.503px;
    background-image: url("/assets/images/price-redesign/service-arrow.png");
    transform: none;
  }

  .price-service-flow img {
    position: absolute;
    top: 36.178px;
    left: 31.274px;
    width: 140.831px;
    height: 140.886px;
  }

  .price-service-flow h3 {
    position: absolute;
    top: 199.568px;
    left: 0;
    width: 100%;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0;
  }

  .price-service-flow p {
    position: absolute;
    top: 256.314px;
    left: 9px;
    width: 188px;
    margin: 0;
    color: #313647;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
  }

  .price-service-advantages {
    width: 1422px;
    height: 159.476px;
    grid-template-columns: repeat(4, 304.155px);
    column-gap: 39.541px;
    margin-top: 23.481px;
    padding: 19.568px 14.386px 17.61px 72.371px;
    border-radius: 12px;
    background: #fbfcfd;
    box-shadow: 0 4px 25px rgba(227, 236, 253, 1);
  }

  .price-service-advantages article {
    display: block;
    width: 304.155px;
    min-height: 122.297px;
    padding: 0;
  }

  .price-service-advantages article + article::before {
    display: none;
  }

  .price-service-advantages article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22.503px;
    left: 303.177px;
    width: 1px;
    height: 80.227px;
    background: #dce9fa;
  }

  .price-service-advantages img {
    position: absolute;
    top: 0;
    left: 0;
    width: 110.513px;
    height: 120.341px;
    object-fit: fill;
  }

  .price-service-advantages h3 {
    position: absolute;
    top: 4.892px;
    left: 116.381px;
    width: 188px;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .price-service-advantages p {
    position: absolute;
    top: 50.876px;
    left: 116.381px;
    width: 188px;
    margin: 0;
    color: #313647;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
  }

  .price-service-banner {
    position: relative;
    display: block;
    width: 1422px;
    height: 159.476px;
    min-height: 159.476px;
    margin-top: 28.849px;
    padding: 0;
    border: 2px solid #dbe8fb;
    border-radius: 16px;
    background: #edf4fe;
    box-shadow: 0 4px 16px rgba(207, 221, 249, 0.6);
  }

  .price-service-banner img {
    position: absolute;
    top: 35.681px;
    left: 79.173px;
    width: 112.469px;
    height: 86.097px;
  }

  .price-service-banner strong {
    position: absolute;
    top: 55.724px;
    left: 229.784px;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .price-service-banner .price-button {
    position: absolute;
    top: 51px;
    left: 995px;
    width: 227px;
    min-width: 0;
    height: 55px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #085bd3 0%, #1466f4 43%, #1a74f4 100%);
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: 1px;
  }

  .price-redesign__partners {
    padding-top: 32px;
  }

  .price-redesign__partners .price-section-heading p {
    font-size: 20px;
  }

  .price-partner-grid {
    width: var(--content-max-width);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin: 63.6px 0 0 1px;
  }

  .price-partner-card {
    display: block;
    width: 100%;
    height: 444px;
    min-height: 444px;
    padding: 0;
    background: #fbfcfd;
  }

  .price-partner-card > img {
    position: absolute;
    object-fit: fill;
  }

  .price-partner-card:nth-child(1) > img {
    top: 42.607px;
    left: 31.714px;
    width: 260.723px;
    max-width: none;
    height: 48.563px;
  }

  .price-partner-card:nth-child(2) > img {
    top: 37px;
    left: 29px;
    width: 231px;
    max-width: none;
    height: 58px;
  }

  .price-partner-card:nth-child(3) > img {
    top: 38px;
    left: 31px;
    width: 171px;
    max-width: none;
    height: 57px;
  }

  .price-partner-card h3 {
    position: absolute;
    top: 94.143px;
    right: 20px;
    left: 35.68px;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .price-partner-card > p {
    position: absolute;
    top: 143.696px;
    left: 37.662px;
    width: 381.667px;
    margin: 0;
    color: #313647;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
  }

  .price-partner-card blockquote {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 14.946px;
    top: 243.795px;
    left: 29.732px;
    width: 397.528px;
    height: 176.411px;
    min-height: 0;
    margin: 0;
    padding: 20.804px 20px 44px 10.578px;
    flex: none;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
  }

  .price-partner-card blockquote::before {
    position: static;
    flex: 0 0 28px;
    margin-top: 3px;
  }

  .price-partner-card__quote-text {
    min-width: 0;
    flex: 1;
  }

  .price-partner-card > span {
    top: 377px;
    right: 74px;
    bottom: auto;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
  }
}

@media (min-width: 1552px) {
  .price-redesign__plans {
    width: calc(1504px * var(--price-desktop-scale));
  }

  .price-redesign__plans-stage {
    width: 1504px;
  }

  .price-plan--open {
    width: 320px;
  }

  .price-plan--pro {
    left: 333px;
  }

  .price-plan--enterprise {
    left: 759px;
  }

  .price-redesign__side-plans {
    left: 1184px;
    width: 320px;
  }

  .price-plan--open .price-plan__badge {
    left: 83px;
  }

  .price-plan--open .price-plan__stats,
  .price-plan--open .price-plan__features {
    width: 281px;
  }

  .price-mini-plan p,
  .price-mini-plan:first-child p {
    width: 268px;
  }

  .price-mini-plan .price-button {
    width: 268px;
  }
}

@media (max-width: 1479px) {
  .price-redesign__hero {
    min-height: 0;
    padding-bottom: 80px;
  }

  .price-redesign__plans {
    align-items: stretch;
  }

  .price-plan {
    min-height: 760px;
    overflow: visible;
  }

  .price-plan--pro {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(76, 156, 255, 0.12);
  }

  .price-plan--enterprise {
    width: 100%;
    justify-self: stretch;
    border: 3px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .price-redesign__side-plans {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 760px;
  }

  .price-mini-plan {
    min-height: 0;
  }

  .price-plan__badge,
  .price-plan__recommend {
    min-width: 0;
    min-height: 0;
    justify-content: flex-start;
    border-radius: 0;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
  }

  .price-plan--open .price-plan__badge {
    top: -6px;
    left: 50%;
    width: 156px;
    height: 41px;
    padding: 0 0 0 53px;
    background-image: url("/assets/images/price-redesign/badge-open.png");
    line-height: 41px;
    transform: translateX(-50%);
  }

  .price-plan--open .price-plan__badge::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 31px;
    width: 16px;
    height: 16px;
    background: url("/assets/images/price-redesign/badge-open-icon.svg") center / contain no-repeat;
  }

  .price-plan--pro .price-plan__badge {
    display: none;
  }

  .price-plan__recommend {
    top: -7px;
    left: 50%;
    width: 154px;
    height: 38px;
    padding: 0 0 0 59px;
    background-image: url("/assets/images/price-redesign/badge-pro.png");
    line-height: 38px;
    transform: translateX(-50%);
  }

  .price-plan__recommend::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 36px;
    width: 16px;
    height: 17px;
    background: url("/assets/images/price-redesign/badge-pro-icon.svg") center / contain no-repeat;
  }

  .price-plan--enterprise .price-plan__badge {
    top: -7px;
    left: 50%;
    width: 145px;
    height: 40px;
    padding: 0 0 0 51px;
    background-image: url("/assets/images/price-redesign/badge-enterprise-design.png");
    line-height: 40px;
    transform: translateX(-50%);
  }

  .price-plan--enterprise .price-plan__badge::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: url("/assets/images/price-redesign/badge-enterprise-icon.svg") center / contain no-repeat;
  }

  .price-plan--open .price-plan__features,
  .price-plan--enterprise .price-plan__features {
    grid-auto-rows: 40px;
    gap: 0;
  }

  .price-plan--pro .price-plan__features {
    grid-auto-rows: 32px;
    gap: 0;
  }

  .price-plan--open .price-plan__features li,
  .price-plan--pro .price-plan__features li,
  .price-plan--enterprise .price-plan__features li {
    display: flex;
    height: 100%;
    align-items: center;
    white-space: nowrap;
  }

  .price-plan--open .price-plan__features li {
    gap: 14px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 40px;
  }

  .price-plan--open .price-plan__features li::before {
    position: static;
    width: 12px;
    height: 8px;
    flex: 0 0 12px;
    border: 0;
    background: url("/assets/images/price-redesign/feature-check-open.svg") center / 12px 8px no-repeat;
    transform: none;
  }

  .price-plan--pro .price-plan__features li {
    gap: 9px;
    padding-left: 8px;
    font-size: 16px;
    line-height: 32px;
  }

  .price-plan--pro .price-plan__features li::before {
    position: static;
    width: 12px;
    height: 9px;
    flex: 0 0 12px;
    border: 0;
    background: url("/assets/images/price-redesign/feature-check-pro.svg") center / 12px 9px no-repeat;
    transform: none;
  }

  .price-plan--enterprise .price-plan__feature-columns {
    grid-template-columns: minmax(168px, 1fr) minmax(188px, 1.12fr);
    gap: 0;
  }

  .price-plan--enterprise .price-plan__features li {
    gap: 11px;
    padding-left: 8px;
    font-size: 16px;
    line-height: 40px;
  }

  .price-plan--enterprise .price-plan__features li::before {
    position: static;
    width: 13px;
    height: 11px;
    flex: 0 0 13px;
    border: 0;
    background: url("/assets/images/price-redesign/feature-check-enterprise.svg") center / 13px 11px no-repeat;
    transform: none;
  }

  .price-plan--enterprise {
    grid-column: auto;
  }

  .price-service-flow li:nth-child(3n)::after {
    display: none;
  }
}

@media (max-width: 1199px) {
  .price-redesign__hero-heading h1 {
    font-size: 44px;
  }

  .price-redesign__hero-heading p {
    font-size: 24px;
    line-height: 1.55;
  }

  .price-compare-panel {
    grid-template-columns: 1fr;
  }

  .price-compare-panel__qr-card {
    width: min(604px, 100%);
    justify-self: center;
  }

  .price-compare-panel__contact {
    display: block;
  }

  .price-compare-panel__contact ul {
    display: grid;
    margin: 15px 0 0;
  }

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

  .price-service-advantages article:nth-child(3)::before {
    display: none;
  }

  .price-partner-grid {
    grid-template-columns: 1fr;
  }

  .price-partner-card {
    min-height: 0;
  }
}

@media (max-width: 899px) {
  .price-redesign__container {
    width: min(100% - 32px, 720px);
  }

  .price-redesign__hero-heading h1 {
    font-size: 38px;
  }

  .price-redesign__hero-heading p {
    font-size: 20px;
  }

  .price-redesign__plans {
    grid-template-columns: 1fr;
  }

  .price-plan--enterprise {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .price-redesign__side-plans {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .price-section-heading h2 {
    font-size: 30px;
  }

  .price-section-heading p {
    font-size: 16px;
  }

  .price-redesign__compare .price-section-heading p {
    font-size: 16px;
  }

  .price-compare-panel {
    grid-template-columns: 1fr;
  }

  .price-compare-panel__qr {
    width: 300px;
  }

  .price-compare-panel__contact {
    grid-column: auto;
    text-align: center;
  }

  .price-compare-panel__contact ul {
    margin-top: 5px;
  }

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

  .price-service-flow li:nth-child(3n)::after {
    display: block;
  }

  .price-service-flow li:nth-child(2n)::after {
    display: none;
  }

  .price-service-banner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 28px;
    text-align: center;
  }

  .price-service-banner strong {
    flex: 1;
    min-width: 280px;
    font-size: 22px;
  }

  .price-service-banner .price-button {
    margin: 16px auto 0;
  }

}

@media (max-width: 767px) {
  .price-redesign__hero {
    padding-top: 50px;
  }

  .price-redesign__hero::before {
    background-position: top center;
    background-size: auto 860px;
  }

  .price-redesign__hero-heading h1 {
    font-size: 30px;
    line-height: 1.35;
  }

  .price-redesign__hero-heading p {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.65;
  }

  .price-plan {
    min-height: 0;
    padding: 20px;
  }

  .price-redesign__plans {
    gap: 20px;
    margin-top: 28px;
  }

  .price-plan__header {
    min-height: 0;
    flex-direction: column;
    gap: 4px;
    padding-top: 34px;
    text-align: center;
  }

  .price-plan__header img {
    width: 112px;
    height: 112px;
    flex-basis: 112px;
  }

  .price-plan__header h2 {
    font-size: 24px;
  }

  .price-plan__summary {
    min-height: 0;
    margin: 18px 0 16px;
  }

  .price-plan__stats {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 14px;
    padding-block: 8px;
    white-space: normal;
  }

  .price-plan__stats button {
    align-self: auto;
    min-height: 36px;
    font-size: 14px;
  }

  .price-plan__stats button + button {
    margin-left: 0;
  }

  .price-plan__stats button + button::before {
    display: none;
  }

  .price-plan__stats--enterprise button {
    width: calc(50% - 7px);
  }

  .price-plan__feature-columns,
  .price-redesign__side-plans,
  .price-compare-panel__advice,
  .price-service-flow,
  .price-service-advantages {
    grid-template-columns: 1fr;
  }

  .price-plan--pro .price-plan__feature-columns,
  .price-plan--enterprise .price-plan__feature-columns {
    grid-template-columns: 1fr;
  }

  .price-plan__included {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .price-plan--open .price-plan__features,
  .price-plan--enterprise .price-plan__features {
    grid-auto-rows: minmax(40px, auto);
  }

  .price-plan--pro .price-plan__features {
    grid-auto-rows: minmax(36px, auto);
  }

  .price-plan--open .price-plan__features li,
  .price-plan--pro .price-plan__features li,
  .price-plan--enterprise .price-plan__features li {
    height: auto;
    align-items: flex-start;
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 1.5;
    white-space: normal;
  }

  .price-plan--open .price-plan__features li,
  .price-plan--enterprise .price-plan__features li {
    min-height: 40px;
  }

  .price-plan--pro .price-plan__features li {
    min-height: 36px;
  }

  .price-plan--open .price-plan__features li::before,
  .price-plan--pro .price-plan__features li::before,
  .price-plan--enterprise .price-plan__features li::before {
    margin-top: 7px;
  }

  .price-redesign__side-plans {
    gap: 16px;
  }

  .price-mini-plan {
    min-height: 0;
  }

  .price-mini-plan p br {
    display: none;
  }

  .price-section-heading h2 {
    gap: 8px;
    font-size: 24px;
  }

  .price-section-heading h2::before {
    width: 12px;
    height: 26px;
  }

  .price-section-heading p {
    font-size: 14px;
  }

  .price-redesign__compare .price-section-heading p {
    font-size: 14px;
  }

  .price-redesign__compare,
  .price-redesign__service,
  .price-redesign__partners,
  .price-redesign__faq {
    min-height: 0;
    padding-block: 52px;
  }

  .price-compare-panel {
    gap: 22px;
    margin-top: 28px;
    padding: 20px;
    border-radius: 12px;
  }

  .price-compare-panel__qr-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 18px;
  }

  .price-compare-panel__advice article {
    min-height: 126px;
    padding: 10px;
  }

  .price-compare-panel__advice img {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .price-compare-panel__qr {
    width: min(270px, 100%);
  }

  .price-compare-panel__contact ul {
    display: grid;
    text-align: left;
  }

  .price-service-flow {
    gap: 48px;
    margin-top: 60px;
  }

  .price-service-flow li::after,
  .price-service-flow li:nth-child(3n)::after {
    display: none;
  }

  .price-service-advantages {
    padding-inline: 18px;
  }

  .price-service-advantages article {
    padding: 12px 0;
  }

  .price-service-advantages article + article::before {
    top: 0;
    right: 0;
    bottom: auto;
    border-top: 1px solid #dce9fa;
    border-left: 0;
  }

  .price-service-banner {
    padding: 18px;
  }

  .price-service-banner img {
    width: 96px;
    height: 78px;
  }

  .price-service-banner strong {
    min-width: 0;
    margin-left: 8px;
    font-size: 18px;
  }

  .price-service-banner .price-button {
    width: 100%;
  }

  .price-partner-card {
    padding: 24px 20px 22px;
  }

  .price-partner-card h3 {
    font-size: 18px;
  }

  .price-partner-card blockquote {
    padding-right: 14px;
  }

  .price-partner-card > span {
    right: 34px;
    bottom: 34px;
  }

  .price-faq-list {
    margin-top: 28px;
  }

  .price-faq-list summary {
    padding: 12px 46px 12px 50px;
    font-size: 14px;
  }

  .price-faq-list summary::before {
    left: 14px;
  }

  .price-faq-list summary::after {
    right: 16px;
  }

  .price-faq-list details > div {
    margin: 0 10px 12px;
    padding: 11px 12px 11px 48px;
  }

}

/* 平板与手机端响应式兜底：按视口处理，不依赖设备类型类名。 */
@media (max-width: 1024px) {
  body[data-page-key="price"] .sidebar,
  body.pricing-shell .sidebar {
    display: none !important;
  }

  .price-redesign {
    overflow-x: hidden;
  }

  .price-redesign__container,
  .price-redesign__compare .price-redesign__container,
  .price-redesign > .hqd-section--faq .site-container--wide {
    width: min(calc(100% - 32px), 900px);
    max-width: 100%;
  }

  .price-redesign__plans,
  .price-redesign__plans-stage,
  .price-plan,
  .price-mini-plan,
  .price-compare-panel,
  .price-compare-panel__advice,
  .price-compare-panel__qr-card,
  .price-service-flow,
  .price-service-advantages,
  .price-partner-grid,
  .price-partner-card,
  .price-redesign .hqd-faq-list,
  .price-redesign .hqd-faq-item {
    min-width: 0;
    max-width: 100%;
  }

  .price-compare-panel {
    min-height: 0;
    overflow: hidden;
  }

  .price-compare-panel__qr-card {
    overflow: hidden;
  }

  .price-compare-panel__qr {
    max-width: 100%;
  }

  .price-compare-panel__qr-code {
    top: 14.11%;
    left: 25.76%;
    width: 47.37%;
    height: 51.53%;
    box-shadow: 0 0 0 8px #ffffff;
  }

  .price-service-banner strong,
  .price-partner-card h3,
  .price-partner-card p,
  .price-redesign .hqd-faq-item summary,
  .price-redesign .hqd-faq-answer p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 767px) {
  .price-redesign__container,
  .price-redesign__compare .price-redesign__container,
  .price-redesign > .hqd-section--faq .site-container--wide {
    width: min(calc(100% - 24px), 560px);
  }

  .price-redesign__hero {
    padding: 42px 0 52px;
  }

  .price-redesign__hero-heading h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .price-redesign__hero-heading p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.65;
  }

  .price-redesign__plans {
    gap: 16px;
    margin-top: 24px;
  }

  .price-plan {
    padding: 18px 16px 20px;
  }

  .price-plan__header {
    padding-top: 30px;
  }

  .price-plan__header img {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .price-plan__summary {
    font-size: 14px;
    line-height: 1.7;
  }

  .price-plan__summary br,
  .price-mini-plan p br,
  .price-service-flow p br,
  .price-service-advantages p br {
    display: none;
  }

  .price-plan__stats,
  .price-plan__stats--enterprise {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 6px 0;
  }

  .price-plan__stats button,
  .price-plan__stats--enterprise button {
    width: auto;
    min-width: 0;
    min-height: 38px;
    padding: 0 4px;
    font-size: 13px;
    white-space: normal;
  }

  .price-plan__stats button + button {
    margin-left: 0;
  }

  .price-plan__feature-columns,
  .price-plan--pro .price-plan__feature-columns,
  .price-plan--enterprise .price-plan__feature-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-plan__included,
  .price-plan__notice,
  .price-plan__features li,
  .price-plan__note,
  .price-button,
  .price-text-link {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .price-mini-plan {
    padding: 18px 16px 20px;
  }

  .price-mini-plan img {
    width: 112px;
    height: 112px;
  }

  .price-redesign__compare,
  .price-redesign__service,
  .price-redesign__partners,
  .price-redesign > .hqd-section--faq {
    min-height: 0;
    padding: 44px 0;
  }

  .price-compare-panel {
    gap: 16px;
    margin-top: 24px;
    padding: 14px;
    border-radius: 14px;
  }

  .price-compare-panel__advice {
    gap: 12px;
  }

  .price-compare-panel__advice article {
    min-height: 112px;
    gap: 12px;
    padding: 12px;
  }

  .price-compare-panel__advice img {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .price-compare-panel__advice h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
  }

  .price-compare-panel__advice p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.6;
  }

  .price-compare-panel__qr-card {
    width: 100%;
    min-height: 0;
    gap: 4px;
    padding: 18px 14px 22px;
  }

  .price-compare-panel__qr {
    width: min(260px, calc(100vw - 72px));
  }

  .price-compare-panel__qr-code {
    box-shadow: 0 0 0 6px #ffffff;
  }

  .price-compare-panel__contact {
    width: 100%;
    height: auto;
    padding: 0 0 4px;
    text-align: center;
  }

  .price-compare-panel__contact h3 {
    font-size: 28px;
    line-height: 1.4;
    white-space: normal;
  }

  .price-compare-panel__contact > p {
    margin-top: 2px;
    font-size: 17px;
    line-height: 1.6;
    white-space: normal;
  }

  .price-compare-panel__contact ul {
    width: fit-content;
    max-width: 100%;
    margin: 10px auto 0;
    justify-items: start;
  }

  .price-compare-panel__contact li {
    width: max-content;
    max-width: 100%;
    font-size: 15px;
    line-height: 32px;
    text-align: left;
  }

  .price-service-flow {
    gap: 42px;
    margin-top: 54px;
  }

  .price-service-flow li {
    min-height: 230px;
    padding: 46px 18px 22px;
  }

  .price-service-flow img {
    width: 112px;
    height: 104px;
  }

  .price-service-advantages {
    margin-top: 18px;
    padding: 8px 16px;
  }

  .price-service-advantages article {
    min-height: 104px;
    gap: 10px;
  }

  .price-service-advantages img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .price-service-banner {
    flex-direction: column;
    gap: 8px;
    padding: 18px 16px;
  }

  .price-service-banner img {
    width: 92px;
    height: 74px;
  }

  .price-service-banner strong {
    min-width: 0;
    margin: 0;
    font-size: 18px;
    text-align: center;
  }

  .price-service-banner .price-button {
    width: 100%;
    margin: 6px 0 0;
  }

  .price-partner-grid {
    gap: 16px;
    margin-top: 28px;
  }

  .price-partner-card {
    min-height: 0;
    padding: 20px 16px;
  }

  .price-partner-card > img {
    max-width: min(210px, 100%);
    height: 52px;
  }

  .price-partner-card h3 {
    margin-top: 10px;
    font-size: 18px;
  }

  .price-partner-card blockquote {
    flex: none;
    min-height: 0;
    margin-top: 16px;
    padding: 18px 14px 18px 50px;
  }

  .price-partner-card > span {
    position: static;
    align-self: flex-end;
    margin-top: 14px;
  }

  .price-redesign > .hqd-section--faq .hqd-section-heading {
    margin-bottom: 24px;
  }

  .price-redesign .hqd-faq-list {
    gap: 8px;
  }

  .price-redesign .hqd-faq-item,
  .price-redesign .hqd-faq-item[open] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .price-redesign__container,
  .price-redesign__compare .price-redesign__container,
  .price-redesign > .hqd-section--faq .site-container--wide {
    width: calc(100% - 20px);
  }

  .price-redesign__hero {
    padding: 36px 0 44px;
  }

  .price-redesign__hero-heading h1 {
    font-size: 26px;
  }

  .price-redesign__hero-heading p {
    font-size: 15px;
  }

  .price-redesign .price-section-heading h2,
  .price-redesign .hqd-section-heading h2 {
    max-width: calc(100% - 8px);
    font-size: 22px;
  }

  .price-plan,
  .price-mini-plan {
    padding-right: 14px;
    padding-left: 14px;
  }

  .price-plan__header img {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .price-plan__header h2,
  .price-mini-plan h2 {
    font-size: 22px;
  }

  .price-compare-panel {
    padding: 10px;
  }

  .price-compare-panel__advice article {
    min-height: 104px;
    padding: 10px;
  }

  .price-compare-panel__advice img {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .price-compare-panel__qr-card {
    padding-right: 10px;
    padding-left: 10px;
  }

  .price-service-advantages article {
    padding-right: 0;
    padding-left: 0;
  }

  .price-redesign .hqd-faq-item summary {
    padding-right: 40px;
    padding-left: 46px;
    font-size: 15px;
  }

  .price-redesign .hqd-faq-answer {
    margin-right: 10px;
    margin-left: 10px;
    padding-right: 10px;
  }

  .price-redesign .hqd-faq-answer p {
    font-size: 14px;
  }
}

/* 英文与日文使用内容驱动布局，避免长文本套用中文设计稿的绝对定位。 */
html:is([lang^="en"], [lang^="ja"]) .price-redesign {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans SC", Arial, sans-serif;
}

html:is([lang^="en"], [lang^="ja"]) .price-redesign :is(h1, h2, h3, p, li, a, button, strong, span) {
  letter-spacing: 0;
}

html:is([lang^="en"], [lang^="ja"]) .price-redesign :is(
  .price-service-advantages h3,
  .price-service-banner strong
) {
  white-space: normal;
  overflow-wrap: anywhere;
}

html[lang^="en"] .price-redesign__hero-heading h1 {
  font-size: 52px;
}

html[lang^="ja"] .price-redesign__hero-heading h1 {
  font-size: 52px;
}

@media (min-width: 1200px) {
  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 402px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 604px);
    gap: 28px;
    padding: 28px 30px;
    overflow: hidden;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__advice {
    position: static;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 13px 17px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__advice article {
    position: relative;
    display: flex;
    min-height: 160px;
    gap: 10px;
    padding: 16px 14px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__advice img {
    position: static;
    width: 104px;
    height: 96px;
    flex: 0 0 104px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__advice :is(h3, p) {
    position: static;
    width: auto;
    margin: 0;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__advice h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__advice p {
    margin-top: 7px;
    line-height: 1.55;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__qr-card {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 326px;
    grid-template-columns: minmax(0, 340px) minmax(170px, 1fr);
    padding: 18px 20px 20px 4px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__qr-card::before,
  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__qr-card::after {
    display: none;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__qr {
    position: relative;
    top: auto;
    left: auto;
    width: min(340px, 100%);
    height: auto;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__qr-stage {
    width: 100%;
    height: 100%;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-compare-panel__contact {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }
}

@media (min-width: 1480px) {
  html:is([lang^="en"], [lang^="ja"]) .price-redesign__hero {
    min-height: 1205px;
    padding: 74px 0 0;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-redesign__hero-heading h1 {
    font-size: 52px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-redesign__hero-heading p {
    font-size: 32px;
    line-height: 48px;
  }
}

@media (min-width: 1480px) {
  html:is([lang^="en"], [lang^="ja"]) .price-redesign__service .price-redesign__container,
  html:is([lang^="en"], [lang^="ja"]) .price-service-flow,
  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages,
  html:is([lang^="en"], [lang^="ja"]) .price-service-banner {
    width: min(var(--content-max-width), calc(100% - 48px));
    height: auto;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 20px;
    margin: 67px auto 0;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow::before {
    display: none;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow li {
    display: flex;
    width: auto;
    height: auto;
    min-height: 300px;
    padding: 54px 18px 22px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow li > span {
    top: -29px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow li:nth-child(3n)::after {
    display: none;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow img,
  html:is([lang^="en"], [lang^="ja"]) .price-service-flow :is(h3, p) {
    position: static;
    width: auto;
    height: auto;
    margin-right: 0;
    margin-left: 0;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow img {
    width: 126px;
    height: 118px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow h3 {
    margin-top: 4px;
    font-size: 22px;
    line-height: 1.4;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-flow p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 22px auto 0;
    padding: 10px 18px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages article {
    display: flex;
    width: auto;
    min-height: 130px;
    gap: 12px;
    padding: 8px 18px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages article::after {
    display: none;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages img,
  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages :is(h3, p) {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages img {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-advantages p {
    margin-top: 5px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-banner {
    position: relative;
    display: flex;
    min-height: 145px;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 22px auto 0;
    padding: 14px 40px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-banner img,
  html:is([lang^="en"], [lang^="ja"]) .price-service-banner strong,
  html:is([lang^="en"], [lang^="ja"]) .price-service-banner .price-button {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-banner img {
    width: 112px;
    height: 86px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-banner strong {
    flex: 1 1 520px;
    font-size: 28px;
    line-height: 1.4;
    white-space: normal;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-service-banner .price-button {
    min-width: 220px;
    min-height: 48px;
    padding: 10px 18px;
    font-size: 18px;
    line-height: 1.4;
  }

}

@media (max-width: 767px) {
  html:is([lang^="en"], [lang^="ja"]) .price-redesign__hero-heading h1 {
    font-size: 27px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-redesign__hero-heading p {
    font-size: 15px;
  }

  html:is([lang^="en"], [lang^="ja"]) .price-redesign .price-section-heading h2,
  html:is([lang^="en"], [lang^="ja"]) .price-redesign .hqd-section-heading h2 {
    font-size: 21px;
  }
}

/* source: styles/trial-popup.css */
/* Trial / consultant popup */

.trial-popup {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 20, 45, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.trial-popup[hidden] {
  display: none;
}

.trial-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.trial-popup__dialog {
  position: relative;
  box-sizing: border-box;
  width: min(825px, calc(100vw - 32px));
  aspect-ratio: 728 / 574;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: #f7fbff url("/assets/images/popup/consultant/dialog-bg.png") no-repeat center / 100% 100%;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.2);
  color: #1a1c26;
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

.trial-popup__close {
  position: absolute;
  top: 17px;
  right: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4d5663;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.trial-popup__close:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #1f2937;
  transform: rotate(90deg);
}

.trial-popup__close:focus-visible {
  outline: none;
}

.trial-popup__title {
  position: absolute;
  top: 7.18%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: max-content;
  max-width: 72%;
  margin: 0;
  color: #1a1c26;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.trial-popup__title::before,
.trial-popup__title::after {
  content: "";
  width: 42px;
  height: 10px;
  flex: 0 0 42px;
  background: url("/assets/images/popup/consultant/title-ornament.png") no-repeat center / contain;
}

.trial-popup__title::before {
  transform: scaleX(-1);
}

.trial-popup__subtitle {
  position: absolute;
  top: 14.7%;
  left: 0;
  z-index: 2;
  width: 100%;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: clamp(15px, 2.1vw, 19px);
  /* font-weight: 500; */
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
}

.trial-popup__qr-card {
  position: absolute;
  top: 25.42%;
  left: 50%;
  z-index: 2;
  width: 31%;
  height: 40%;
  transform: translateX(-50%);
}

.trial-popup__qr {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 93%;
  height: 84%;
  object-fit: contain;
  transform: translateX(-50%);
}

.trial-popup__wechat-pill {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 35px;
  min-height: 13.4%;
  border-radius: 999px;
  background: linear-gradient(180deg, #0396fe 0%, #0968fe 100%);
  color: #ffffff;
  font-size: clamp(15px, 2.35vw, 20px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(9, 104, 254, 0.22);
  transform: translateX(-50%);
}

.trial-popup__wechat-icon {
  width: 30px;
  height: 24px;
  flex: 0 0 30px;
}

.trial-popup__contact-label {
  position: absolute;
  top: 72.7%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 30px;
  border-radius: 999px;
  background: #e7eefa;
  color: #1a1c26;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.trial-popup__contact-label::before,
.trial-popup__contact-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 104px;
  height: 1px;
  background: linear-gradient(90deg, rgba(202, 213, 229, 0), rgba(174, 191, 214, 0.72));
}

.trial-popup__contact-label::before {
  right: calc(100% + 25px);
  transform: translateY(-50%);
}

.trial-popup__contact-label::after {
  left: calc(100% + 25px);
  transform: translateY(-50%) scaleX(-1);
}

.trial-popup__contact-grid {
  position: absolute;
  top: 80.1%;
  left: 8.8%;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.22fr 1.38fr 1.18fr;
  align-items: start;
  width: 84.5%;
  min-height: 52px;
}

.trial-popup__contact-item {
  position: relative;
  min-width: 0;
  padding: 0 8px;
  text-align: center;
}

.trial-popup__contact-item + .trial-popup__contact-item::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 2px;
  left: 0;
  width: 1px;
  background: rgba(204, 215, 231, 0.74);
}

.trial-popup__contact-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: clamp(13px, 1.9vw, 16px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 1px;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
}

.trial-popup__contact-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  object-fit: contain;
}

.trial-popup__contact-value {
  display: block;
  margin: 6px 0 0;
  color: #0a68e0;
  font-size: clamp(13px, 1.9vw, 16px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
}

.trial-popup__contact-value:hover {
  opacity: 0.86;
}

.trial-popup__contact-value em {
  margin-left: 3px;
  color: #39373d;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.trial-popup__contact-value--text {
  color: #39373d;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.trial-popup__contact-value--service {
  color: #4c4c4d;
  font-weight: 500;
}

.trial-popup__contact-value--service strong {
  color: #0c65e1;
  font-weight: 500;
}

.trial-popup__meta {
  position: absolute;
  right: 0;
  bottom: 4.25%;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: rgba(10, 11, 14, 0.7);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
}

.trial-popup__meta-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 26px;
  white-space: nowrap;
}

.trial-popup__meta-item + .trial-popup__meta-item {
  border-left: 1px solid rgba(12, 24, 42, 0.14);
}

.trial-popup__meta-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

@media (min-width: 641px) {
  .trial-popup__contact-label::before,
  .trial-popup__contact-label::after {
    content: none;
  }

  html[lang^="en"] .trial-popup__contact-value em,
  html[lang^="ja"] .trial-popup__contact-value em {
    display: block;
    margin-left: 0;
    font-size: 11px;
  }

  html[lang^="en"] .trial-popup__contact-value--text,
  html[lang^="ja"] .trial-popup__contact-value--text {
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  html[lang^="en"] .trial-popup__contact-value--service,
  html[lang^="ja"] .trial-popup__contact-value--service {
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }
}

html[lang^="en"] .trial-popup__title,
html[lang^="ja"] .trial-popup__title {
  font-size: clamp(19px, 2.75vw, 27px);
}

html[lang^="en"] .trial-popup__subtitle,
html[lang^="ja"] .trial-popup__subtitle {
  font-size: clamp(13px, 1.9vw, 16px);
}

html[lang^="en"] .trial-popup__contact-head,
html[lang^="ja"] .trial-popup__contact-head {
  letter-spacing: 0;
}

@media (max-height: 720px) and (min-width: 641px) {
  .trial-popup__dialog {
     width: min(825px, calc(100vw - 32px));
  }
}

@media (max-height: 640px) and (min-width: 641px) {
  .trial-popup__dialog {
    width: min(660px, calc(100vw - 48px));
  }
}

@media (max-width: 640px) {
  .trial-popup {
    padding: 16px;
  }

  .trial-popup__dialog {
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    aspect-ratio: auto;
    overflow: auto;
    padding: 50px 18px 22px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(242, 248, 255, 0.92) 100%),
      url("/assets/images/popup/consultant/dialog-bg.png") no-repeat center top / cover;
  }

  .trial-popup__close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 30px;
  }

  .trial-popup__title,
  .trial-popup__subtitle,
  .trial-popup__qr-card,
  .trial-popup__contact-label,
  .trial-popup__contact-grid,
  .trial-popup__meta {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .trial-popup__title {
    display: flex;
    gap: 18px;
    max-width: 100%;
    font-size: 23px;
    white-space: normal;
  }

  .trial-popup__title::before,
  .trial-popup__title::after {
    width: 34px;
    height: 9px;
    flex-basis: 34px;
  }

  .trial-popup__subtitle {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
  }

  .trial-popup__qr-card {
    width: min(266px, 100%);
    margin: 20px auto 18px;
    padding: 14px 14px 10px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(30, 110, 225, 0.18);
  }

  .trial-popup__qr {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    transform: none;
  }

  .trial-popup__wechat-pill {
    position: static;
    gap: 10px;
    width: 100%;
    height: 36px;
    margin-top: 8px;
    font-size: 17px;
    transform: none;
  }

  .trial-popup__wechat-icon {
    width: 30px;
    height: 24px;
    flex-basis: 30px;
  }

  .trial-popup__contact-label {
    display: flex;
    width: 130px;
    height: 34px;
    margin: 0 auto 12px;
    font-size: 18px;
  }

  .trial-popup__contact-label::before,
  .trial-popup__contact-label::after {
    width: 60px;
  }

  .trial-popup__contact-label::before {
    right: calc(100% + 14px);
  }

  .trial-popup__contact-label::after {
    left: calc(100% + 14px);
  }

  .trial-popup__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
    padding: 16px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 24px rgba(42, 102, 180, 0.1);
  }

  .trial-popup__contact-item {
    padding: 0 10px;
  }

  .trial-popup__contact-item:nth-child(odd)::before {
    display: none;
  }

  .trial-popup__contact-item:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 1px;
    background: rgba(204, 215, 231, 0.74);
  }

  .trial-popup__contact-head {
    gap: 7px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .trial-popup__contact-icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .trial-popup__contact-value,
  .trial-popup__contact-value--text {
    margin-top: 7px;
    font-size: 13px;
    white-space: normal;
  }

  .trial-popup__contact-value em {
    display: block;
    margin-left: 0;
    font-size: 12px;
  }

  .trial-popup__meta {
    flex-wrap: wrap;
    margin-top: 16px;
    row-gap: 8px;
    font-size: 13px;
    line-height: 18px;
  }

  .trial-popup__meta-item {
    gap: 7px;
    padding: 0 12px;
  }

  .trial-popup__meta-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (max-width: 420px) {
  .trial-popup {
    padding: 12px;
  }

  .trial-popup__dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 48px 14px 20px;
  }

  .trial-popup__title {
    gap: 10px;
    font-size: 20px;
  }

  .trial-popup__title::before,
  .trial-popup__title::after {
    width: 24px;
    flex-basis: 24px;
  }

  .trial-popup__contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trial-popup__contact-item,
  .trial-popup__contact-item:nth-child(even) {
    padding: 0;
  }

  .trial-popup__contact-item::before,
  .trial-popup__contact-item:nth-child(even)::before {
    display: none;
  }
}
